aws.appfabric.AppAuthorization
Explore with Pulumi AI
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={
        "api_key_credentials": [{
            "api_key": "exampleapikeytoken",
        }],
    },
    tenants=[{
        "tenant_display_name": "example",
        "tenant_identifier": "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={
        "api_key_credentials": [{
            "api_key": "string",
        }],
        "oauth2_credential": {
            "client_id": "string",
            "client_secret": "string",
        },
    },
    tags={
        "string": "string",
    },
    tenants=[{
        "tenant_display_name": "string",
        "tenant_identifier": "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
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
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.
- AppBundle stringArn 
- 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
AppAuthorization Credential 
- 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.
- Dictionary<string, string>
- Tenants
List<AppAuthorization Tenant> 
- Contains information about an application tenant, such as the application display name and identifier.
- Timeouts
AppAuthorization Timeouts 
- App string
- The name of the application for valid values see https://docs.aws.amazon.com/appfabric/latest/api/API_CreateAppAuthorization.html.
- AppBundle stringArn 
- 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
AppAuthorization Credential Args 
- 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.
- map[string]string
- Tenants
[]AppAuthorization Tenant Args 
- Contains information about an application tenant, such as the application display name and identifier.
- Timeouts
AppAuthorization Timeouts Args 
- app String
- The name of the application for valid values see https://docs.aws.amazon.com/appfabric/latest/api/API_CreateAppAuthorization.html.
- appBundle StringArn 
- 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
AppAuthorization Credential 
- 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.
- Map<String,String>
- tenants
List<AppAuthorization Tenant> 
- Contains information about an application tenant, such as the application display name and identifier.
- timeouts
AppAuthorization Timeouts 
- app string
- The name of the application for valid values see https://docs.aws.amazon.com/appfabric/latest/api/API_CreateAppAuthorization.html.
- appBundle stringArn 
- 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
AppAuthorization Credential 
- 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.
- {[key: string]: string}
- tenants
AppAuthorization Tenant[] 
- Contains information about an application tenant, such as the application display name and identifier.
- timeouts
AppAuthorization Timeouts 
- app str
- The name of the application for valid values see https://docs.aws.amazon.com/appfabric/latest/api/API_CreateAppAuthorization.html.
- app_bundle_ strarn 
- 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
AppAuthorization Credential Args 
- 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.
- Mapping[str, str]
- tenants
Sequence[AppAuthorization Tenant Args] 
- Contains information about an application tenant, such as the application display name and identifier.
- timeouts
AppAuthorization Timeouts Args 
- app String
- The name of the application for valid values see https://docs.aws.amazon.com/appfabric/latest/api/API_CreateAppAuthorization.html.
- appBundle StringArn 
- 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.
- 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.
- Dictionary<string, string>
- 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.
- map[string]string
- 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.
- Map<String,String>
- 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.
- {[key: string]: string}
- 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.
- Mapping[str, str]
- 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.
- Map<String>
- 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) -> AppAuthorizationfunc 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)resources:  _:    type: aws:appfabric:AppAuthorization    get:      id: ${id}- 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.
- App string
- The name of the application for valid values see https://docs.aws.amazon.com/appfabric/latest/api/API_CreateAppAuthorization.html.
- AppBundle stringArn 
- 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
AppAuthorization Credential 
- 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.
- Dictionary<string, string>
- Dictionary<string, string>
- Tenants
List<AppAuthorization Tenant> 
- Contains information about an application tenant, such as the application display name and identifier.
- Timeouts
AppAuthorization Timeouts 
- UpdatedAt string
- App string
- The name of the application for valid values see https://docs.aws.amazon.com/appfabric/latest/api/API_CreateAppAuthorization.html.
- AppBundle stringArn 
- 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
AppAuthorization Credential Args 
- 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.
- map[string]string
- map[string]string
- Tenants
[]AppAuthorization Tenant Args 
- Contains information about an application tenant, such as the application display name and identifier.
- Timeouts
AppAuthorization Timeouts Args 
- UpdatedAt string
- app String
- The name of the application for valid values see https://docs.aws.amazon.com/appfabric/latest/api/API_CreateAppAuthorization.html.
- appBundle StringArn 
- 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
AppAuthorization Credential 
- 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.
- Map<String,String>
- Map<String,String>
- tenants
List<AppAuthorization Tenant> 
- Contains information about an application tenant, such as the application display name and identifier.
- timeouts
AppAuthorization Timeouts 
- updatedAt String
- app string
- The name of the application for valid values see https://docs.aws.amazon.com/appfabric/latest/api/API_CreateAppAuthorization.html.
- appBundle stringArn 
- 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
AppAuthorization Credential 
- 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.
- {[key: string]: string}
- {[key: string]: string}
- tenants
AppAuthorization Tenant[] 
- Contains information about an application tenant, such as the application display name and identifier.
- timeouts
AppAuthorization Timeouts 
- 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_ strarn 
- 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
AppAuthorization Credential Args 
- 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.
- Mapping[str, str]
- Mapping[str, str]
- tenants
Sequence[AppAuthorization Tenant Args] 
- Contains information about an application tenant, such as the application display name and identifier.
- timeouts
AppAuthorization Timeouts Args 
- 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.
- appBundle StringArn 
- 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.
- Map<String>
- Map<String>
- 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      
- ApiKey List<AppCredentials Authorization Credential Api Key Credential> 
- Contains API key credential information.
- Oauth2Credential
AppAuthorization Credential Oauth2Credential 
- Contains OAuth2 client credential information.
- ApiKey []AppCredentials Authorization Credential Api Key Credential 
- Contains API key credential information.
- Oauth2Credential
AppAuthorization Credential Oauth2Credential 
- Contains OAuth2 client credential information.
- apiKey List<AppCredentials Authorization Credential Api Key Credential> 
- Contains API key credential information.
- oauth2Credential
AppAuthorization Credential Oauth2Credential 
- Contains OAuth2 client credential information.
- apiKey AppCredentials Authorization Credential Api Key Credential[] 
- Contains API key credential information.
- oauth2Credential
AppAuthorization Credential Oauth2Credential 
- Contains OAuth2 client credential information.
- api_key_ Sequence[Appcredentials Authorization Credential Api Key Credential] 
- Contains API key credential information.
- oauth2_credential AppAuthorization Credential Oauth2Credential 
- Contains OAuth2 client credential information.
- apiKey List<Property Map>Credentials 
- 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      
- TenantDisplay stringName 
- The display name of the tenant.
- TenantIdentifier string
- The ID of the application tenant.
- TenantDisplay stringName 
- The display name of the tenant.
- TenantIdentifier string
- The ID of the application tenant.
- tenantDisplay StringName 
- The display name of the tenant.
- tenantIdentifier String
- The ID of the application tenant.
- tenantDisplay stringName 
- The display name of the tenant.
- tenantIdentifier string
- The ID of the application tenant.
- tenant_display_ strname 
- The display name of the tenant.
- tenant_identifier str
- The ID of the application tenant.
- tenantDisplay StringName 
- 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 awsTerraform Provider.