Class: Aws::VoiceID::Types::OutputDataConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::VoiceID::Types::OutputDataConfig
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-voiceid/types.rb
Overview
The configuration containing output file information for a batch job.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#kms_key_id ⇒ String
The identifier of the KMS key you want Voice ID to use to encrypt the output file of a speaker enrollment job/fraudster registration job.
-
#s3_uri ⇒ String
The S3 path of the folder where Voice ID writes the job output file.
Instance Attribute Details
#kms_key_id ⇒ String
The identifier of the KMS key you want Voice ID to use to encrypt the output file of a speaker enrollment job/fraudster registration job.
1583 1584 1585 1586 1587 1588 |
# File 'lib/aws-sdk-voiceid/types.rb', line 1583 class OutputDataConfig < Struct.new( :kms_key_id, :s3_uri) SENSITIVE = [] include Aws::Structure end |
#s3_uri ⇒ String
The S3 path of the folder where Voice ID writes the job output file. It has a ‘*.out` extension. For example, if the input file name is `input-file.json` and the output folder path is `s3://output-bucket/output-folder`, the full output file path is `s3://output-bucket/output-folder/job-Id/input-file.json.out`.
1583 1584 1585 1586 1587 1588 |
# File 'lib/aws-sdk-voiceid/types.rb', line 1583 class OutputDataConfig < Struct.new( :kms_key_id, :s3_uri) SENSITIVE = [] include Aws::Structure end |