Class: Aws::AppFabric::Types::CreateAppAuthorizationRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppFabric::Types::CreateAppAuthorizationRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-appfabric/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#app ⇒ String
The name of the application.
-
#app_bundle_identifier ⇒ String
The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID) of the app bundle to use for the request.
-
#auth_type ⇒ String
The authorization type for the app authorization.
-
#client_token ⇒ String
Specifies a unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
-
#credential ⇒ Types::Credential
Contains credentials for the application, such as an API key or OAuth2 client ID and secret.
-
#tags ⇒ Array<Types::Tag>
A map of the key-value pairs of the tag or tags to assign to the resource.
-
#tenant ⇒ Types::Tenant
Contains information about an application tenant, such as the application display name and identifier.
Instance Attribute Details
#app ⇒ String
The name of the application.
Valid values are:
-
‘SLACK`
-
‘ASANA`
-
‘JIRA`
-
‘M365`
-
‘M365AUDITLOGS`
-
‘ZOOM`
-
‘ZENDESK`
-
‘OKTA`
-
‘GOOGLE`
-
‘DROPBOX`
-
‘SMARTSHEET`
-
‘CISCO`
449 450 451 452 453 454 455 456 457 458 459 |
# File 'lib/aws-sdk-appfabric/types.rb', line 449 class CreateAppAuthorizationRequest < Struct.new( :app_bundle_identifier, :app, :credential, :tenant, :auth_type, :client_token, :tags) SENSITIVE = [] include Aws::Structure end |
#app_bundle_identifier ⇒ String
The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID) of the app bundle to use for the request.
449 450 451 452 453 454 455 456 457 458 459 |
# File 'lib/aws-sdk-appfabric/types.rb', line 449 class CreateAppAuthorizationRequest < Struct.new( :app_bundle_identifier, :app, :credential, :tenant, :auth_type, :client_token, :tags) SENSITIVE = [] include Aws::Structure end |
#auth_type ⇒ String
The authorization type for the app authorization.
449 450 451 452 453 454 455 456 457 458 459 |
# File 'lib/aws-sdk-appfabric/types.rb', line 449 class CreateAppAuthorizationRequest < Struct.new( :app_bundle_identifier, :app, :credential, :tenant, :auth_type, :client_token, :tags) SENSITIVE = [] include Aws::Structure end |
#client_token ⇒ String
Specifies a unique, case-sensitive identifier that you provide to ensure the idempotency of the request. This lets you safely retry the request without accidentally performing the same operation a second time. Passing the same value to a later call to an operation requires that you also pass the same value for all other parameters. We recommend that you use a [UUID type of value].
If you don’t provide this value, then Amazon Web Services generates a random one for you.
If you retry the operation with the same ‘ClientToken`, but with different parameters, the retry fails with an `IdempotentParameterMismatch` error.
**A suitable default value is auto-generated.** You should normally not need to pass this option.
449 450 451 452 453 454 455 456 457 458 459 |
# File 'lib/aws-sdk-appfabric/types.rb', line 449 class CreateAppAuthorizationRequest < Struct.new( :app_bundle_identifier, :app, :credential, :tenant, :auth_type, :client_token, :tags) SENSITIVE = [] include Aws::Structure end |
#credential ⇒ Types::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.
449 450 451 452 453 454 455 456 457 458 459 |
# File 'lib/aws-sdk-appfabric/types.rb', line 449 class CreateAppAuthorizationRequest < Struct.new( :app_bundle_identifier, :app, :credential, :tenant, :auth_type, :client_token, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Array<Types::Tag>
A map of the key-value pairs of the tag or tags to assign to the resource.
449 450 451 452 453 454 455 456 457 458 459 |
# File 'lib/aws-sdk-appfabric/types.rb', line 449 class CreateAppAuthorizationRequest < Struct.new( :app_bundle_identifier, :app, :credential, :tenant, :auth_type, :client_token, :tags) SENSITIVE = [] include Aws::Structure end |
#tenant ⇒ Types::Tenant
Contains information about an application tenant, such as the application display name and identifier.
449 450 451 452 453 454 455 456 457 458 459 |
# File 'lib/aws-sdk-appfabric/types.rb', line 449 class CreateAppAuthorizationRequest < Struct.new( :app_bundle_identifier, :app, :credential, :tenant, :auth_type, :client_token, :tags) SENSITIVE = [] include Aws::Structure end |