Class: Aws::AppFabric::Types::CreateAppBundleRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppFabric::Types::CreateAppBundleRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-appfabric/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#client_token ⇒ String
Specifies a unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
-
#customer_managed_key_identifier ⇒ String
The Amazon Resource Name (ARN) of the Key Management Service (KMS) key to use to encrypt the application data.
-
#tags ⇒ Array<Types::Tag>
A map of the key-value pairs of the tag or tags to assign to the resource.
Instance Attribute Details
#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.
509 510 511 512 513 514 515 |
# File 'lib/aws-sdk-appfabric/types.rb', line 509 class CreateAppBundleRequest < Struct.new( :client_token, :customer_managed_key_identifier, :tags) SENSITIVE = [] include Aws::Structure end |
#customer_managed_key_identifier ⇒ String
The Amazon Resource Name (ARN) of the Key Management Service (KMS) key to use to encrypt the application data. If this is not specified, an Amazon Web Services owned key is used for encryption.
509 510 511 512 513 514 515 |
# File 'lib/aws-sdk-appfabric/types.rb', line 509 class CreateAppBundleRequest < Struct.new( :client_token, :customer_managed_key_identifier, :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.
509 510 511 512 513 514 515 |
# File 'lib/aws-sdk-appfabric/types.rb', line 509 class CreateAppBundleRequest < Struct.new( :client_token, :customer_managed_key_identifier, :tags) SENSITIVE = [] include Aws::Structure end |