Class: Aws::Translate::Types::CreateParallelDataRequest
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::Translate::Types::CreateParallelDataRequest
 
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-translate/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #client_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A unique identifier for the request. 
- 
  
    
      #description  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A custom description for the parallel data resource in Amazon Translate. 
- 
  
    
      #encryption_key  ⇒ Types::EncryptionKey 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The encryption key used to encrypt this object. 
- 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A custom name for the parallel data resource in Amazon Translate. 
- 
  
    
      #parallel_data_config  ⇒ Types::ParallelDataConfig 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Specifies the format and S3 location of the parallel data input file. 
- 
  
    
      #tags  ⇒ Array<Types::Tag> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Tags to be associated with this resource. 
Instance Attribute Details
#client_token ⇒ String
A unique identifier for the request. This token is automatically generated when you use Amazon Translate through an AWS SDK.
**A suitable default value is auto-generated.** You should normally not need to pass this option.
| 106 107 108 109 110 111 112 113 114 115 | # File 'lib/aws-sdk-translate/types.rb', line 106 class CreateParallelDataRequest < Struct.new( :name, :description, :parallel_data_config, :encryption_key, :client_token, :tags) SENSITIVE = [] include Aws::Structure end | 
#description ⇒ String
A custom description for the parallel data resource in Amazon Translate.
| 106 107 108 109 110 111 112 113 114 115 | # File 'lib/aws-sdk-translate/types.rb', line 106 class CreateParallelDataRequest < Struct.new( :name, :description, :parallel_data_config, :encryption_key, :client_token, :tags) SENSITIVE = [] include Aws::Structure end | 
#encryption_key ⇒ Types::EncryptionKey
The encryption key used to encrypt this object.
| 106 107 108 109 110 111 112 113 114 115 | # File 'lib/aws-sdk-translate/types.rb', line 106 class CreateParallelDataRequest < Struct.new( :name, :description, :parallel_data_config, :encryption_key, :client_token, :tags) SENSITIVE = [] include Aws::Structure end | 
#name ⇒ String
A custom name for the parallel data resource in Amazon Translate. You must assign a name that is unique in the account and region.
| 106 107 108 109 110 111 112 113 114 115 | # File 'lib/aws-sdk-translate/types.rb', line 106 class CreateParallelDataRequest < Struct.new( :name, :description, :parallel_data_config, :encryption_key, :client_token, :tags) SENSITIVE = [] include Aws::Structure end | 
#parallel_data_config ⇒ Types::ParallelDataConfig
Specifies the format and S3 location of the parallel data input file.
| 106 107 108 109 110 111 112 113 114 115 | # File 'lib/aws-sdk-translate/types.rb', line 106 class CreateParallelDataRequest < Struct.new( :name, :description, :parallel_data_config, :encryption_key, :client_token, :tags) SENSITIVE = [] include Aws::Structure end | 
#tags ⇒ Array<Types::Tag>
Tags to be associated with this resource. A tag is a key-value pair that adds metadata to a resource. Each tag key for the resource must be unique. For more information, see [ Tagging your resources].
| 106 107 108 109 110 111 112 113 114 115 | # File 'lib/aws-sdk-translate/types.rb', line 106 class CreateParallelDataRequest < Struct.new( :name, :description, :parallel_data_config, :encryption_key, :client_token, :tags) SENSITIVE = [] include Aws::Structure end |