Class: Aws::VoiceID::Types::CreateDomainRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::VoiceID::Types::CreateDomainRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-voiceid/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[:description, :name]
Instance Attribute Summary collapse
-
#client_token ⇒ String
A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
-
#description ⇒ String
A brief description of this domain.
-
#name ⇒ String
The name of the domain.
-
#server_side_encryption_configuration ⇒ Types::ServerSideEncryptionConfiguration
The configuration, containing the KMS key identifier, to be used by Voice ID for the server-side encryption of your data.
-
#tags ⇒ Array<Types::Tag>
A list of tags you want added to the domain.
Instance Attribute Details
#client_token ⇒ String
A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If not provided, the Amazon Web Services SDK populates this field. For more information about idempotency, see [Making retries safe with idempotent APIs].
**A suitable default value is auto-generated.** You should normally not need to pass this option.
[1]: aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/
217 218 219 220 221 222 223 224 225 |
# File 'lib/aws-sdk-voiceid/types.rb', line 217 class CreateDomainRequest < Struct.new( :client_token, :description, :name, :server_side_encryption_configuration, :tags) SENSITIVE = [:description, :name] include Aws::Structure end |
#description ⇒ String
A brief description of this domain.
217 218 219 220 221 222 223 224 225 |
# File 'lib/aws-sdk-voiceid/types.rb', line 217 class CreateDomainRequest < Struct.new( :client_token, :description, :name, :server_side_encryption_configuration, :tags) SENSITIVE = [:description, :name] include Aws::Structure end |
#name ⇒ String
The name of the domain.
217 218 219 220 221 222 223 224 225 |
# File 'lib/aws-sdk-voiceid/types.rb', line 217 class CreateDomainRequest < Struct.new( :client_token, :description, :name, :server_side_encryption_configuration, :tags) SENSITIVE = [:description, :name] include Aws::Structure end |
#server_side_encryption_configuration ⇒ Types::ServerSideEncryptionConfiguration
The configuration, containing the KMS key identifier, to be used by Voice ID for the server-side encryption of your data. Refer to [ Amazon Connect Voice ID encryption at rest] for more details on how the KMS key is used.
[1]: docs.aws.amazon.com/connect/latest/adminguide/encryption-at-rest.html#encryption-at-rest-voiceid
217 218 219 220 221 222 223 224 225 |
# File 'lib/aws-sdk-voiceid/types.rb', line 217 class CreateDomainRequest < Struct.new( :client_token, :description, :name, :server_side_encryption_configuration, :tags) SENSITIVE = [:description, :name] include Aws::Structure end |
#tags ⇒ Array<Types::Tag>
A list of tags you want added to the domain.
217 218 219 220 221 222 223 224 225 |
# File 'lib/aws-sdk-voiceid/types.rb', line 217 class CreateDomainRequest < Struct.new( :client_token, :description, :name, :server_side_encryption_configuration, :tags) SENSITIVE = [:description, :name] include Aws::Structure end |