1. Packages
  2. AWS Classic
  3. API Docs
  4. appfabric
  5. AppAuthorization

Try AWS Native preview for resources not in the classic version.

AWS Classic v6.42.0 published on Wednesday, Jun 26, 2024 by Pulumi

aws.appfabric.AppAuthorization

Explore with Pulumi AI

aws logo

Try AWS Native preview for resources not in the classic version.

AWS Classic v6.42.0 published on Wednesday, Jun 26, 2024 by Pulumi

    Resource for managing an AWS AppFabric App Authorization.

    Example Usage

    Basic Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const example = new aws.appfabric.AppAuthorization("example", {
        app: "TERRAFORMCLOUD",
        appBundleArn: arn,
        authType: "apiKey",
        credential: {
            apiKeyCredentials: [{
                apiKey: "exampleapikeytoken",
            }],
        },
        tenants: [{
            tenantDisplayName: "example",
            tenantIdentifier: "example",
        }],
    });
    
    import pulumi
    import pulumi_aws as aws
    
    example = aws.appfabric.AppAuthorization("example",
        app="TERRAFORMCLOUD",
        app_bundle_arn=arn,
        auth_type="apiKey",
        credential={
            "apiKeyCredentials": [{
                "apiKey": "exampleapikeytoken",
            }],
        },
        tenants=[{
            "tenantDisplayName": "example",
            "tenantIdentifier": "example",
        }])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/appfabric"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := appfabric.NewAppAuthorization(ctx, "example", &appfabric.AppAuthorizationArgs{
    			App:          pulumi.String("TERRAFORMCLOUD"),
    			AppBundleArn: pulumi.Any(arn),
    			AuthType:     pulumi.String("apiKey"),
    			Credential: &appfabric.AppAuthorizationCredentialArgs{
    				ApiKeyCredentials: appfabric.AppAuthorizationCredentialApiKeyCredentialArray{
    					&appfabric.AppAuthorizationCredentialApiKeyCredentialArgs{
    						ApiKey: pulumi.String("exampleapikeytoken"),
    					},
    				},
    			},
    			Tenants: appfabric.AppAuthorizationTenantArray{
    				&appfabric.AppAuthorizationTenantArgs{
    					TenantDisplayName: pulumi.String("example"),
    					TenantIdentifier:  pulumi.String("example"),
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Aws = Pulumi.Aws;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Aws.AppFabric.AppAuthorization("example", new()
        {
            App = "TERRAFORMCLOUD",
            AppBundleArn = arn,
            AuthType = "apiKey",
            Credential = new Aws.AppFabric.Inputs.AppAuthorizationCredentialArgs
            {
                ApiKeyCredentials = new[]
                {
                    new Aws.AppFabric.Inputs.AppAuthorizationCredentialApiKeyCredentialArgs
                    {
                        ApiKey = "exampleapikeytoken",
                    },
                },
            },
            Tenants = new[]
            {
                new Aws.AppFabric.Inputs.AppAuthorizationTenantArgs
                {
                    TenantDisplayName = "example",
                    TenantIdentifier = "example",
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.appfabric.AppAuthorization;
    import com.pulumi.aws.appfabric.AppAuthorizationArgs;
    import com.pulumi.aws.appfabric.inputs.AppAuthorizationCredentialArgs;
    import com.pulumi.aws.appfabric.inputs.AppAuthorizationTenantArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var example = new AppAuthorization("example", AppAuthorizationArgs.builder()
                .app("TERRAFORMCLOUD")
                .appBundleArn(arn)
                .authType("apiKey")
                .credential(AppAuthorizationCredentialArgs.builder()
                    .apiKeyCredentials(AppAuthorizationCredentialApiKeyCredentialArgs.builder()
                        .apiKey("exampleapikeytoken")
                        .build())
                    .build())
                .tenants(AppAuthorizationTenantArgs.builder()
                    .tenantDisplayName("example")
                    .tenantIdentifier("example")
                    .build())
                .build());
    
        }
    }
    
    resources:
      example:
        type: aws:appfabric:AppAuthorization
        properties:
          app: TERRAFORMCLOUD
          appBundleArn: ${arn}
          authType: apiKey
          credential:
            apiKeyCredentials:
              - apiKey: exampleapikeytoken
          tenants:
            - tenantDisplayName: example
              tenantIdentifier: example
    

    Create AppAuthorization Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new AppAuthorization(name: string, args: AppAuthorizationArgs, opts?: CustomResourceOptions);
    @overload
    def AppAuthorization(resource_name: str,
                         args: AppAuthorizationArgs,
                         opts: Optional[ResourceOptions] = None)
    
    @overload
    def AppAuthorization(resource_name: str,
                         opts: Optional[ResourceOptions] = None,
                         app: Optional[str] = None,
                         app_bundle_arn: Optional[str] = None,
                         auth_type: Optional[str] = None,
                         credential: Optional[AppAuthorizationCredentialArgs] = None,
                         tags: Optional[Mapping[str, str]] = None,
                         tenants: Optional[Sequence[AppAuthorizationTenantArgs]] = None,
                         timeouts: Optional[AppAuthorizationTimeoutsArgs] = None)
    func NewAppAuthorization(ctx *Context, name string, args AppAuthorizationArgs, opts ...ResourceOption) (*AppAuthorization, error)
    public AppAuthorization(string name, AppAuthorizationArgs args, CustomResourceOptions? opts = null)
    public AppAuthorization(String name, AppAuthorizationArgs args)
    public AppAuthorization(String name, AppAuthorizationArgs args, CustomResourceOptions options)
    
    type: aws:appfabric:AppAuthorization
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args AppAuthorizationArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args AppAuthorizationArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args AppAuthorizationArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AppAuthorizationArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args AppAuthorizationArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var appAuthorizationResource = new Aws.AppFabric.AppAuthorization("appAuthorizationResource", new()
    {
        App = "string",
        AppBundleArn = "string",
        AuthType = "string",
        Credential = new Aws.AppFabric.Inputs.AppAuthorizationCredentialArgs
        {
            ApiKeyCredentials = new[]
            {
                new Aws.AppFabric.Inputs.AppAuthorizationCredentialApiKeyCredentialArgs
                {
                    ApiKey = "string",
                },
            },
            Oauth2Credential = new Aws.AppFabric.Inputs.AppAuthorizationCredentialOauth2CredentialArgs
            {
                ClientId = "string",
                ClientSecret = "string",
            },
        },
        Tags = 
        {
            { "string", "string" },
        },
        Tenants = new[]
        {
            new Aws.AppFabric.Inputs.AppAuthorizationTenantArgs
            {
                TenantDisplayName = "string",
                TenantIdentifier = "string",
            },
        },
        Timeouts = new Aws.AppFabric.Inputs.AppAuthorizationTimeoutsArgs
        {
            Create = "string",
            Delete = "string",
            Update = "string",
        },
    });
    
    example, err := appfabric.NewAppAuthorization(ctx, "appAuthorizationResource", &appfabric.AppAuthorizationArgs{
    	App:          pulumi.String("string"),
    	AppBundleArn: pulumi.String("string"),
    	AuthType:     pulumi.String("string"),
    	Credential: &appfabric.AppAuthorizationCredentialArgs{
    		ApiKeyCredentials: appfabric.AppAuthorizationCredentialApiKeyCredentialArray{
    			&appfabric.AppAuthorizationCredentialApiKeyCredentialArgs{
    				ApiKey: pulumi.String("string"),
    			},
    		},
    		Oauth2Credential: &appfabric.AppAuthorizationCredentialOauth2CredentialArgs{
    			ClientId:     pulumi.String("string"),
    			ClientSecret: pulumi.String("string"),
    		},
    	},
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	Tenants: appfabric.AppAuthorizationTenantArray{
    		&appfabric.AppAuthorizationTenantArgs{
    			TenantDisplayName: pulumi.String("string"),
    			TenantIdentifier:  pulumi.String("string"),
    		},
    	},
    	Timeouts: &appfabric.AppAuthorizationTimeoutsArgs{
    		Create: pulumi.String("string"),
    		Delete: pulumi.String("string"),
    		Update: pulumi.String("string"),
    	},
    })
    
    var appAuthorizationResource = new AppAuthorization("appAuthorizationResource", AppAuthorizationArgs.builder()
        .app("string")
        .appBundleArn("string")
        .authType("string")
        .credential(AppAuthorizationCredentialArgs.builder()
            .apiKeyCredentials(AppAuthorizationCredentialApiKeyCredentialArgs.builder()
                .apiKey("string")
                .build())
            .oauth2Credential(AppAuthorizationCredentialOauth2CredentialArgs.builder()
                .clientId("string")
                .clientSecret("string")
                .build())
            .build())
        .tags(Map.of("string", "string"))
        .tenants(AppAuthorizationTenantArgs.builder()
            .tenantDisplayName("string")
            .tenantIdentifier("string")
            .build())
        .timeouts(AppAuthorizationTimeoutsArgs.builder()
            .create("string")
            .delete("string")
            .update("string")
            .build())
        .build());
    
    app_authorization_resource = aws.appfabric.AppAuthorization("appAuthorizationResource",
        app="string",
        app_bundle_arn="string",
        auth_type="string",
        credential={
            "apiKeyCredentials": [{
                "apiKey": "string",
            }],
            "oauth2Credential": {
                "clientId": "string",
                "clientSecret": "string",
            },
        },
        tags={
            "string": "string",
        },
        tenants=[{
            "tenantDisplayName": "string",
            "tenantIdentifier": "string",
        }],
        timeouts={
            "create": "string",
            "delete": "string",
            "update": "string",
        })
    
    const appAuthorizationResource = new aws.appfabric.AppAuthorization("appAuthorizationResource", {
        app: "string",
        appBundleArn: "string",
        authType: "string",
        credential: {
            apiKeyCredentials: [{
                apiKey: "string",
            }],
            oauth2Credential: {
                clientId: "string",
                clientSecret: "string",
            },
        },
        tags: {
            string: "string",
        },
        tenants: [{
            tenantDisplayName: "string",
            tenantIdentifier: "string",
        }],
        timeouts: {
            create: "string",
            "delete": "string",
            update: "string",
        },
    });
    
    type: aws:appfabric:AppAuthorization
    properties:
        app: string
        appBundleArn: string
        authType: string
        credential:
            apiKeyCredentials:
                - apiKey: string
            oauth2Credential:
                clientId: string
                clientSecret: string
        tags:
            string: string
        tenants:
            - tenantDisplayName: string
              tenantIdentifier: string
        timeouts:
            create: string
            delete: string
            update: string
    

    AppAuthorization Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The AppAuthorization resource accepts the following input properties:

    App string
    The name of the application for valid values see https://docs.aws.amazon.com/appfabric/latest/api/API_CreateAppAuthorization.html.
    AppBundleArn string
    The Amazon Resource Name (ARN) of the app bundle to use for the request.
    AuthType string
    The authorization type for the app authorization valid values are oauth2 and apiKey.
    Credential AppAuthorizationCredential
    Contains credentials for the application, such as an API key or OAuth2 client ID and secret. Specify credentials that match the authorization type for your request. For example, if the authorization type for your request is OAuth2 (oauth2), then you should provide only the OAuth2 credentials.
    Tags Dictionary<string, string>
    Tenants List<AppAuthorizationTenant>
    Contains information about an application tenant, such as the application display name and identifier.
    Timeouts AppAuthorizationTimeouts
    App string
    The name of the application for valid values see https://docs.aws.amazon.com/appfabric/latest/api/API_CreateAppAuthorization.html.
    AppBundleArn string
    The Amazon Resource Name (ARN) of the app bundle to use for the request.
    AuthType string
    The authorization type for the app authorization valid values are oauth2 and apiKey.
    Credential AppAuthorizationCredentialArgs
    Contains credentials for the application, such as an API key or OAuth2 client ID and secret. Specify credentials that match the authorization type for your request. For example, if the authorization type for your request is OAuth2 (oauth2), then you should provide only the OAuth2 credentials.
    Tags map[string]string
    Tenants []AppAuthorizationTenantArgs
    Contains information about an application tenant, such as the application display name and identifier.
    Timeouts AppAuthorizationTimeoutsArgs
    app String
    The name of the application for valid values see https://docs.aws.amazon.com/appfabric/latest/api/API_CreateAppAuthorization.html.
    appBundleArn String
    The Amazon Resource Name (ARN) of the app bundle to use for the request.
    authType String
    The authorization type for the app authorization valid values are oauth2 and apiKey.
    credential AppAuthorizationCredential
    Contains credentials for the application, such as an API key or OAuth2 client ID and secret. Specify credentials that match the authorization type for your request. For example, if the authorization type for your request is OAuth2 (oauth2), then you should provide only the OAuth2 credentials.
    tags Map<String,String>
    tenants List<AppAuthorizationTenant>
    Contains information about an application tenant, such as the application display name and identifier.
    timeouts AppAuthorizationTimeouts
    app string
    The name of the application for valid values see https://docs.aws.amazon.com/appfabric/latest/api/API_CreateAppAuthorization.html.
    appBundleArn string
    The Amazon Resource Name (ARN) of the app bundle to use for the request.
    authType string
    The authorization type for the app authorization valid values are oauth2 and apiKey.
    credential AppAuthorizationCredential
    Contains credentials for the application, such as an API key or OAuth2 client ID and secret. Specify credentials that match the authorization type for your request. For example, if the authorization type for your request is OAuth2 (oauth2), then you should provide only the OAuth2 credentials.
    tags {[key: string]: string}
    tenants AppAuthorizationTenant[]
    Contains information about an application tenant, such as the application display name and identifier.
    timeouts AppAuthorizationTimeouts
    app str
    The name of the application for valid values see https://docs.aws.amazon.com/appfabric/latest/api/API_CreateAppAuthorization.html.
    app_bundle_arn str
    The Amazon Resource Name (ARN) of the app bundle to use for the request.
    auth_type str
    The authorization type for the app authorization valid values are oauth2 and apiKey.
    credential AppAuthorizationCredentialArgs
    Contains credentials for the application, such as an API key or OAuth2 client ID and secret. Specify credentials that match the authorization type for your request. For example, if the authorization type for your request is OAuth2 (oauth2), then you should provide only the OAuth2 credentials.
    tags Mapping[str, str]
    tenants Sequence[AppAuthorizationTenantArgs]
    Contains information about an application tenant, such as the application display name and identifier.
    timeouts AppAuthorizationTimeoutsArgs
    app String
    The name of the application for valid values see https://docs.aws.amazon.com/appfabric/latest/api/API_CreateAppAuthorization.html.
    appBundleArn String
    The Amazon Resource Name (ARN) of the app bundle to use for the request.
    authType String
    The authorization type for the app authorization valid values are oauth2 and apiKey.
    credential Property Map
    Contains credentials for the application, such as an API key or OAuth2 client ID and secret. Specify credentials that match the authorization type for your request. For example, if the authorization type for your request is OAuth2 (oauth2), then you should provide only the OAuth2 credentials.
    tags Map<String>
    tenants List<Property Map>
    Contains information about an application tenant, such as the application display name and identifier.
    timeouts Property Map

    Outputs

    All input properties are implicitly available as output properties. Additionally, the AppAuthorization resource produces the following output properties:

    Arn string
    ARN of the App Authorization. Do not begin the description with "An", "The", "Defines", "Indicates", or "Specifies," as these are verbose. In other words, "Indicates the amount of storage," can be rewritten as "Amount of storage," without losing any information.
    AuthUrl string
    The application URL for the OAuth flow.
    CreatedAt string
    Id string
    The provider-assigned unique ID for this managed resource.
    Persona string
    The user persona of the app authorization.
    TagsAll Dictionary<string, string>

    Deprecated: Please use tags instead.

    UpdatedAt string
    Arn string
    ARN of the App Authorization. Do not begin the description with "An", "The", "Defines", "Indicates", or "Specifies," as these are verbose. In other words, "Indicates the amount of storage," can be rewritten as "Amount of storage," without losing any information.
    AuthUrl string
    The application URL for the OAuth flow.
    CreatedAt string
    Id string
    The provider-assigned unique ID for this managed resource.
    Persona string
    The user persona of the app authorization.
    TagsAll map[string]string

    Deprecated: Please use tags instead.

    UpdatedAt string
    arn String
    ARN of the App Authorization. Do not begin the description with "An", "The", "Defines", "Indicates", or "Specifies," as these are verbose. In other words, "Indicates the amount of storage," can be rewritten as "Amount of storage," without losing any information.
    authUrl String
    The application URL for the OAuth flow.
    createdAt String
    id String
    The provider-assigned unique ID for this managed resource.
    persona String
    The user persona of the app authorization.
    tagsAll Map<String,String>

    Deprecated: Please use tags instead.

    updatedAt String
    arn string
    ARN of the App Authorization. Do not begin the description with "An", "The", "Defines", "Indicates", or "Specifies," as these are verbose. In other words, "Indicates the amount of storage," can be rewritten as "Amount of storage," without losing any information.
    authUrl string
    The application URL for the OAuth flow.
    createdAt string
    id string
    The provider-assigned unique ID for this managed resource.
    persona string
    The user persona of the app authorization.
    tagsAll {[key: string]: string}

    Deprecated: Please use tags instead.

    updatedAt string
    arn str
    ARN of the App Authorization. Do not begin the description with "An", "The", "Defines", "Indicates", or "Specifies," as these are verbose. In other words, "Indicates the amount of storage," can be rewritten as "Amount of storage," without losing any information.
    auth_url str
    The application URL for the OAuth flow.
    created_at str
    id str
    The provider-assigned unique ID for this managed resource.
    persona str
    The user persona of the app authorization.
    tags_all Mapping[str, str]

    Deprecated: Please use tags instead.

    updated_at str
    arn String
    ARN of the App Authorization. Do not begin the description with "An", "The", "Defines", "Indicates", or "Specifies," as these are verbose. In other words, "Indicates the amount of storage," can be rewritten as "Amount of storage," without losing any information.
    authUrl String
    The application URL for the OAuth flow.
    createdAt String
    id String
    The provider-assigned unique ID for this managed resource.
    persona String
    The user persona of the app authorization.
    tagsAll Map<String>

    Deprecated: Please use tags instead.

    updatedAt String

    Look up Existing AppAuthorization Resource

    Get an existing AppAuthorization resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: AppAuthorizationState, opts?: CustomResourceOptions): AppAuthorization
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            app: Optional[str] = None,
            app_bundle_arn: Optional[str] = None,
            arn: Optional[str] = None,
            auth_type: Optional[str] = None,
            auth_url: Optional[str] = None,
            created_at: Optional[str] = None,
            credential: Optional[AppAuthorizationCredentialArgs] = None,
            persona: Optional[str] = None,
            tags: Optional[Mapping[str, str]] = None,
            tags_all: Optional[Mapping[str, str]] = None,
            tenants: Optional[Sequence[AppAuthorizationTenantArgs]] = None,
            timeouts: Optional[AppAuthorizationTimeoutsArgs] = None,
            updated_at: Optional[str] = None) -> AppAuthorization
    func GetAppAuthorization(ctx *Context, name string, id IDInput, state *AppAuthorizationState, opts ...ResourceOption) (*AppAuthorization, error)
    public static AppAuthorization Get(string name, Input<string> id, AppAuthorizationState? state, CustomResourceOptions? opts = null)
    public static AppAuthorization get(String name, Output<String> id, AppAuthorizationState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    App string
    The name of the application for valid values see https://docs.aws.amazon.com/appfabric/latest/api/API_CreateAppAuthorization.html.
    AppBundleArn string
    The Amazon Resource Name (ARN) of the app bundle to use for the request.
    Arn string
    ARN of the App Authorization. Do not begin the description with "An", "The", "Defines", "Indicates", or "Specifies," as these are verbose. In other words, "Indicates the amount of storage," can be rewritten as "Amount of storage," without losing any information.
    AuthType string
    The authorization type for the app authorization valid values are oauth2 and apiKey.
    AuthUrl string
    The application URL for the OAuth flow.
    CreatedAt string
    Credential AppAuthorizationCredential
    Contains credentials for the application, such as an API key or OAuth2 client ID and secret. Specify credentials that match the authorization type for your request. For example, if the authorization type for your request is OAuth2 (oauth2), then you should provide only the OAuth2 credentials.
    Persona string
    The user persona of the app authorization.
    Tags Dictionary<string, string>
    TagsAll Dictionary<string, string>

    Deprecated: Please use tags instead.

    Tenants List<AppAuthorizationTenant>
    Contains information about an application tenant, such as the application display name and identifier.
    Timeouts AppAuthorizationTimeouts
    UpdatedAt string
    App string
    The name of the application for valid values see https://docs.aws.amazon.com/appfabric/latest/api/API_CreateAppAuthorization.html.
    AppBundleArn string
    The Amazon Resource Name (ARN) of the app bundle to use for the request.
    Arn string
    ARN of the App Authorization. Do not begin the description with "An", "The", "Defines", "Indicates", or "Specifies," as these are verbose. In other words, "Indicates the amount of storage," can be rewritten as "Amount of storage," without losing any information.
    AuthType string
    The authorization type for the app authorization valid values are oauth2 and apiKey.
    AuthUrl string
    The application URL for the OAuth flow.
    CreatedAt string
    Credential AppAuthorizationCredentialArgs
    Contains credentials for the application, such as an API key or OAuth2 client ID and secret. Specify credentials that match the authorization type for your request. For example, if the authorization type for your request is OAuth2 (oauth2), then you should provide only the OAuth2 credentials.
    Persona string
    The user persona of the app authorization.
    Tags map[string]string
    TagsAll map[string]string

    Deprecated: Please use tags instead.

    Tenants []AppAuthorizationTenantArgs
    Contains information about an application tenant, such as the application display name and identifier.
    Timeouts AppAuthorizationTimeoutsArgs
    UpdatedAt string
    app String
    The name of the application for valid values see https://docs.aws.amazon.com/appfabric/latest/api/API_CreateAppAuthorization.html.
    appBundleArn String
    The Amazon Resource Name (ARN) of the app bundle to use for the request.
    arn String
    ARN of the App Authorization. Do not begin the description with "An", "The", "Defines", "Indicates", or "Specifies," as these are verbose. In other words, "Indicates the amount of storage," can be rewritten as "Amount of storage," without losing any information.
    authType String
    The authorization type for the app authorization valid values are oauth2 and apiKey.
    authUrl String
    The application URL for the OAuth flow.
    createdAt String
    credential AppAuthorizationCredential
    Contains credentials for the application, such as an API key or OAuth2 client ID and secret. Specify credentials that match the authorization type for your request. For example, if the authorization type for your request is OAuth2 (oauth2), then you should provide only the OAuth2 credentials.
    persona String
    The user persona of the app authorization.
    tags Map<String,String>
    tagsAll Map<String,String>

    Deprecated: Please use tags instead.

    tenants List<AppAuthorizationTenant>
    Contains information about an application tenant, such as the application display name and identifier.
    timeouts AppAuthorizationTimeouts
    updatedAt String
    app string
    The name of the application for valid values see https://docs.aws.amazon.com/appfabric/latest/api/API_CreateAppAuthorization.html.
    appBundleArn string
    The Amazon Resource Name (ARN) of the app bundle to use for the request.
    arn string
    ARN of the App Authorization. Do not begin the description with "An", "The", "Defines", "Indicates", or "Specifies," as these are verbose. In other words, "Indicates the amount of storage," can be rewritten as "Amount of storage," without losing any information.
    authType string
    The authorization type for the app authorization valid values are oauth2 and apiKey.
    authUrl string
    The application URL for the OAuth flow.
    createdAt string
    credential AppAuthorizationCredential
    Contains credentials for the application, such as an API key or OAuth2 client ID and secret. Specify credentials that match the authorization type for your request. For example, if the authorization type for your request is OAuth2 (oauth2), then you should provide only the OAuth2 credentials.
    persona string
    The user persona of the app authorization.
    tags {[key: string]: string}
    tagsAll {[key: string]: string}

    Deprecated: Please use tags instead.

    tenants AppAuthorizationTenant[]
    Contains information about an application tenant, such as the application display name and identifier.
    timeouts AppAuthorizationTimeouts
    updatedAt string
    app str
    The name of the application for valid values see https://docs.aws.amazon.com/appfabric/latest/api/API_CreateAppAuthorization.html.
    app_bundle_arn str
    The Amazon Resource Name (ARN) of the app bundle to use for the request.
    arn str
    ARN of the App Authorization. Do not begin the description with "An", "The", "Defines", "Indicates", or "Specifies," as these are verbose. In other words, "Indicates the amount of storage," can be rewritten as "Amount of storage," without losing any information.
    auth_type str
    The authorization type for the app authorization valid values are oauth2 and apiKey.
    auth_url str
    The application URL for the OAuth flow.
    created_at str
    credential AppAuthorizationCredentialArgs
    Contains credentials for the application, such as an API key or OAuth2 client ID and secret. Specify credentials that match the authorization type for your request. For example, if the authorization type for your request is OAuth2 (oauth2), then you should provide only the OAuth2 credentials.
    persona str
    The user persona of the app authorization.
    tags Mapping[str, str]
    tags_all Mapping[str, str]

    Deprecated: Please use tags instead.

    tenants Sequence[AppAuthorizationTenantArgs]
    Contains information about an application tenant, such as the application display name and identifier.
    timeouts AppAuthorizationTimeoutsArgs
    updated_at str
    app String
    The name of the application for valid values see https://docs.aws.amazon.com/appfabric/latest/api/API_CreateAppAuthorization.html.
    appBundleArn String
    The Amazon Resource Name (ARN) of the app bundle to use for the request.
    arn String
    ARN of the App Authorization. Do not begin the description with "An", "The", "Defines", "Indicates", or "Specifies," as these are verbose. In other words, "Indicates the amount of storage," can be rewritten as "Amount of storage," without losing any information.
    authType String
    The authorization type for the app authorization valid values are oauth2 and apiKey.
    authUrl String
    The application URL for the OAuth flow.
    createdAt String
    credential Property Map
    Contains credentials for the application, such as an API key or OAuth2 client ID and secret. Specify credentials that match the authorization type for your request. For example, if the authorization type for your request is OAuth2 (oauth2), then you should provide only the OAuth2 credentials.
    persona String
    The user persona of the app authorization.
    tags Map<String>
    tagsAll Map<String>

    Deprecated: Please use tags instead.

    tenants List<Property Map>
    Contains information about an application tenant, such as the application display name and identifier.
    timeouts Property Map
    updatedAt String

    Supporting Types

    AppAuthorizationCredential, AppAuthorizationCredentialArgs

    ApiKeyCredentials List<AppAuthorizationCredentialApiKeyCredential>
    Contains API key credential information.
    Oauth2Credential AppAuthorizationCredentialOauth2Credential
    Contains OAuth2 client credential information.
    ApiKeyCredentials []AppAuthorizationCredentialApiKeyCredential
    Contains API key credential information.
    Oauth2Credential AppAuthorizationCredentialOauth2Credential
    Contains OAuth2 client credential information.
    apiKeyCredentials List<AppAuthorizationCredentialApiKeyCredential>
    Contains API key credential information.
    oauth2Credential AppAuthorizationCredentialOauth2Credential
    Contains OAuth2 client credential information.
    apiKeyCredentials AppAuthorizationCredentialApiKeyCredential[]
    Contains API key credential information.
    oauth2Credential AppAuthorizationCredentialOauth2Credential
    Contains OAuth2 client credential information.
    api_key_credentials Sequence[AppAuthorizationCredentialApiKeyCredential]
    Contains API key credential information.
    oauth2_credential AppAuthorizationCredentialOauth2Credential
    Contains OAuth2 client credential information.
    apiKeyCredentials List<Property Map>
    Contains API key credential information.
    oauth2Credential Property Map
    Contains OAuth2 client credential information.

    AppAuthorizationCredentialApiKeyCredential, AppAuthorizationCredentialApiKeyCredentialArgs

    ApiKey string
    Contains API key credential information.
    ApiKey string
    Contains API key credential information.
    apiKey String
    Contains API key credential information.
    apiKey string
    Contains API key credential information.
    api_key str
    Contains API key credential information.
    apiKey String
    Contains API key credential information.

    AppAuthorizationCredentialOauth2Credential, AppAuthorizationCredentialOauth2CredentialArgs

    ClientId string
    The client ID of the client application.
    ClientSecret string
    The client secret of the client application.
    ClientId string
    The client ID of the client application.
    ClientSecret string
    The client secret of the client application.
    clientId String
    The client ID of the client application.
    clientSecret String
    The client secret of the client application.
    clientId string
    The client ID of the client application.
    clientSecret string
    The client secret of the client application.
    client_id str
    The client ID of the client application.
    client_secret str
    The client secret of the client application.
    clientId String
    The client ID of the client application.
    clientSecret String
    The client secret of the client application.

    AppAuthorizationTenant, AppAuthorizationTenantArgs

    TenantDisplayName string
    The display name of the tenant.
    TenantIdentifier string
    The ID of the application tenant.
    TenantDisplayName string
    The display name of the tenant.
    TenantIdentifier string
    The ID of the application tenant.
    tenantDisplayName String
    The display name of the tenant.
    tenantIdentifier String
    The ID of the application tenant.
    tenantDisplayName string
    The display name of the tenant.
    tenantIdentifier string
    The ID of the application tenant.
    tenant_display_name str
    The display name of the tenant.
    tenant_identifier str
    The ID of the application tenant.
    tenantDisplayName String
    The display name of the tenant.
    tenantIdentifier String
    The ID of the application tenant.

    AppAuthorizationTimeouts, AppAuthorizationTimeoutsArgs

    Create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    Update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    Update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    update String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    update str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    update String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).

    Package Details

    Repository
    AWS Classic pulumi/pulumi-aws
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the aws Terraform Provider.
    aws logo

    Try AWS Native preview for resources not in the classic version.

    AWS Classic v6.42.0 published on Wednesday, Jun 26, 2024 by Pulumi