Class: Aws::VoiceID::Types::OutputDataConfig

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#kms_key_idString

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.

Returns:

  • (String)


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_uriString

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`.

Returns:

  • (String)


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