Class: Aws::VoiceID::Types::CreateDomainRequest

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-voiceid/lib/aws-sdk-voiceid/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[:description, :name]

Instance Attribute Summary collapse

Instance Attribute Details

#client_tokenString

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.

Returns:

  • (String)


217
218
219
220
221
222
223
224
225
# File 'gems/aws-sdk-voiceid/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

#descriptionString

A brief description of this domain.

Returns:

  • (String)


217
218
219
220
221
222
223
224
225
# File 'gems/aws-sdk-voiceid/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

#nameString

The name of the domain.

Returns:

  • (String)


217
218
219
220
221
222
223
224
225
# File 'gems/aws-sdk-voiceid/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_configurationTypes::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.



217
218
219
220
221
222
223
224
225
# File 'gems/aws-sdk-voiceid/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

#tagsArray<Types::Tag>

A list of tags you want added to the domain.

Returns:



217
218
219
220
221
222
223
224
225
# File 'gems/aws-sdk-voiceid/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