Class: Aws::ComprehendMedical::Types::OutputDataConfig

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

Overview

The output properties for a detection job.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#s3_bucketString

When you use the OutputDataConfig object with asynchronous operations, you specify the Amazon S3 location where you want to write the output data. The URI must be in the same region as the API endpoint that you are calling. The location is used as the prefix for the actual location of the output.

Returns:

  • (String)


1184
1185
1186
1187
1188
1189
# File 'gems/aws-sdk-comprehendmedical/lib/aws-sdk-comprehendmedical/types.rb', line 1184

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

#s3_keyString

The path to the output data files in the S3 bucket. Amazon Comprehend Medical creates an output directory using the job ID so that the output from one job does not overwrite the output of another.

Returns:

  • (String)


1184
1185
1186
1187
1188
1189
# File 'gems/aws-sdk-comprehendmedical/lib/aws-sdk-comprehendmedical/types.rb', line 1184

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