Class: Aws::Translate::Types::OutputDataConfig

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-translate/types.rb

Overview

Note:

When making an API call, you may pass OutputDataConfig data as a hash:

{
  s3_uri: "S3Uri", # required
  encryption_key: {
    type: "KMS", # required, accepts KMS
    id: "EncryptionKeyID", # required
  },
}

The output configuration properties for a batch translation job.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#encryption_keyTypes::EncryptionKey

The encryption key used to encrypt this object.



825
826
827
828
829
830
# File 'lib/aws-sdk-translate/types.rb', line 825

class OutputDataConfig < Struct.new(
  :s3_uri,
  :encryption_key)
  SENSITIVE = []
  include Aws::Structure
end

#s3_uriString

The URI of the S3 folder that contains a translation job’s output file. The folder must be in the same Region as the API endpoint that you are calling.

Returns:

  • (String)


825
826
827
828
829
830
# File 'lib/aws-sdk-translate/types.rb', line 825

class OutputDataConfig < Struct.new(
  :s3_uri,
  :encryption_key)
  SENSITIVE = []
  include Aws::Structure
end