Try AWS Native preview for resources not in the classic version.
aws.appfabric.AppAuthorization
Explore with Pulumi AI
Try AWS Native preview for resources not in the classic version.
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.
- App
Bundle stringArn - The Amazon Resource Name (ARN) of the app bundle to use for the request.
- Auth
Type string - The authorization type for the app authorization valid values are oauth2 and apiKey.
- Credential
App
Authorization 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<App
Authorization Tenant> - Contains information about an application tenant, such as the application display name and identifier.
- Timeouts
App
Authorization Timeouts
- App string
- The name of the application for valid values see https://docs.aws.amazon.com/appfabric/latest/api/API_CreateAppAuthorization.html.
- App
Bundle stringArn - The Amazon Resource Name (ARN) of the app bundle to use for the request.
- Auth
Type string - The authorization type for the app authorization valid values are oauth2 and apiKey.
- Credential
App
Authorization 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
[]App
Authorization Tenant Args - Contains information about an application tenant, such as the application display name and identifier.
- Timeouts
App
Authorization Timeouts Args
- app String
- The name of the application for valid values see https://docs.aws.amazon.com/appfabric/latest/api/API_CreateAppAuthorization.html.
- app
Bundle StringArn - The Amazon Resource Name (ARN) of the app bundle to use for the request.
- auth
Type String - The authorization type for the app authorization valid values are oauth2 and apiKey.
- credential
App
Authorization 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<App
Authorization Tenant> - Contains information about an application tenant, such as the application display name and identifier.
- timeouts
App
Authorization Timeouts
- app string
- The name of the application for valid values see https://docs.aws.amazon.com/appfabric/latest/api/API_CreateAppAuthorization.html.
- app
Bundle stringArn - The Amazon Resource Name (ARN) of the app bundle to use for the request.
- auth
Type string - The authorization type for the app authorization valid values are oauth2 and apiKey.
- credential
App
Authorization 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
App
Authorization Tenant[] - Contains information about an application tenant, such as the application display name and identifier.
- timeouts
App
Authorization 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
App
Authorization 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[App
Authorization Tenant Args] - Contains information about an application tenant, such as the application display name and identifier.
- timeouts
App
Authorization Timeouts Args
- app String
- The name of the application for valid values see https://docs.aws.amazon.com/appfabric/latest/api/API_CreateAppAuthorization.html.
- app
Bundle StringArn - The Amazon Resource Name (ARN) of the app bundle to use for the request.
- auth
Type 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.
- Auth
Url string - The application URL for the OAuth flow.
- Created
At string - Id string
- The provider-assigned unique ID for this managed resource.
- Persona string
- The user persona of the app authorization.
- Dictionary<string, string>
- Updated
At 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.
- Auth
Url string - The application URL for the OAuth flow.
- Created
At string - Id string
- The provider-assigned unique ID for this managed resource.
- Persona string
- The user persona of the app authorization.
- map[string]string
- Updated
At 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.
- auth
Url String - The application URL for the OAuth flow.
- created
At String - id String
- The provider-assigned unique ID for this managed resource.
- persona String
- The user persona of the app authorization.
- Map<String,String>
- updated
At 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.
- auth
Url string - The application URL for the OAuth flow.
- created
At string - id string
- The provider-assigned unique ID for this managed resource.
- persona string
- The user persona of the app authorization.
- {[key: string]: string}
- updated
At 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.
- auth
Url String - The application URL for the OAuth flow.
- created
At String - id String
- The provider-assigned unique ID for this managed resource.
- persona String
- The user persona of the app authorization.
- Map<String>
- updated
At 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.
- App string
- The name of the application for valid values see https://docs.aws.amazon.com/appfabric/latest/api/API_CreateAppAuthorization.html.
- App
Bundle 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.
- Auth
Type string - The authorization type for the app authorization valid values are oauth2 and apiKey.
- Auth
Url string - The application URL for the OAuth flow.
- Created
At string - Credential
App
Authorization 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<App
Authorization Tenant> - Contains information about an application tenant, such as the application display name and identifier.
- Timeouts
App
Authorization Timeouts - Updated
At string
- App string
- The name of the application for valid values see https://docs.aws.amazon.com/appfabric/latest/api/API_CreateAppAuthorization.html.
- App
Bundle 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.
- Auth
Type string - The authorization type for the app authorization valid values are oauth2 and apiKey.
- Auth
Url string - The application URL for the OAuth flow.
- Created
At string - Credential
App
Authorization 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
[]App
Authorization Tenant Args - Contains information about an application tenant, such as the application display name and identifier.
- Timeouts
App
Authorization Timeouts Args - Updated
At string
- app String
- The name of the application for valid values see https://docs.aws.amazon.com/appfabric/latest/api/API_CreateAppAuthorization.html.
- app
Bundle 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.
- auth
Type String - The authorization type for the app authorization valid values are oauth2 and apiKey.
- auth
Url String - The application URL for the OAuth flow.
- created
At String - credential
App
Authorization 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<App
Authorization Tenant> - Contains information about an application tenant, such as the application display name and identifier.
- timeouts
App
Authorization Timeouts - updated
At String
- app string
- The name of the application for valid values see https://docs.aws.amazon.com/appfabric/latest/api/API_CreateAppAuthorization.html.
- app
Bundle 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.
- auth
Type string - The authorization type for the app authorization valid values are oauth2 and apiKey.
- auth
Url string - The application URL for the OAuth flow.
- created
At string - credential
App
Authorization 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
App
Authorization Tenant[] - Contains information about an application tenant, such as the application display name and identifier.
- timeouts
App
Authorization Timeouts - updated
At 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
App
Authorization 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[App
Authorization Tenant Args] - Contains information about an application tenant, such as the application display name and identifier.
- timeouts
App
Authorization 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.
- app
Bundle 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.
- auth
Type String - The authorization type for the app authorization valid values are oauth2 and apiKey.
- auth
Url String - The application URL for the OAuth flow.
- created
At 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
- updated
At String
Supporting Types
AppAuthorizationCredential, AppAuthorizationCredentialArgs
- Api
Key List<AppCredentials Authorization Credential Api Key Credential> - Contains API key credential information.
- Oauth2Credential
App
Authorization Credential Oauth2Credential - Contains OAuth2 client credential information.
- Api
Key []AppCredentials Authorization Credential Api Key Credential - Contains API key credential information.
- Oauth2Credential
App
Authorization Credential Oauth2Credential - Contains OAuth2 client credential information.
- api
Key List<AppCredentials Authorization Credential Api Key Credential> - Contains API key credential information.
- oauth2Credential
App
Authorization Credential Oauth2Credential - Contains OAuth2 client credential information.
- api
Key AppCredentials Authorization Credential Api Key Credential[] - Contains API key credential information.
- oauth2Credential
App
Authorization 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.
- api
Key List<Property Map>Credentials - Contains API key credential information.
- oauth2Credential Property Map
- Contains OAuth2 client credential information.
AppAuthorizationCredentialApiKeyCredential, AppAuthorizationCredentialApiKeyCredentialArgs
- Api
Key string - Contains API key credential information.
- Api
Key string - Contains API key credential information.
- api
Key String - Contains API key credential information.
- api
Key string - Contains API key credential information.
- api_
key str - Contains API key credential information.
- api
Key String - Contains API key credential information.
AppAuthorizationCredentialOauth2Credential, AppAuthorizationCredentialOauth2CredentialArgs
- Client
Id string - The client ID of the client application.
- Client
Secret string - The client secret of the client application.
- Client
Id string - The client ID of the client application.
- Client
Secret string - The client secret of the client application.
- client
Id String - The client ID of the client application.
- client
Secret String - The client secret of the client application.
- client
Id string - The client ID of the client application.
- client
Secret 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.
- client
Id String - The client ID of the client application.
- client
Secret String - The client secret of the client application.
AppAuthorizationTenant, AppAuthorizationTenantArgs
- Tenant
Display stringName - The display name of the tenant.
- Tenant
Identifier string - The ID of the application tenant.
- Tenant
Display stringName - The display name of the tenant.
- Tenant
Identifier string - The ID of the application tenant.
- tenant
Display StringName - The display name of the tenant.
- tenant
Identifier String - The ID of the application tenant.
- tenant
Display stringName - The display name of the tenant.
- tenant
Identifier 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.
- tenant
Display StringName - The display name of the tenant.
- tenant
Identifier 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.
Try AWS Native preview for resources not in the classic version.