Class: Aws::ComprehendMedical::Types::OutputDataConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::ComprehendMedical::Types::OutputDataConfig
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-comprehendmedical/types.rb
Overview
The output properties for a detection job.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#s3_bucket ⇒ String
When you use the ‘OutputDataConfig` object with asynchronous operations, you specify the Amazon S3 location where you want to write the output data.
-
#s3_key ⇒ String
The path to the output data files in the S3 bucket.
Instance Attribute Details
#s3_bucket ⇒ String
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.
1184 1185 1186 1187 1188 1189 |
# File 'lib/aws-sdk-comprehendmedical/types.rb', line 1184 class OutputDataConfig < Struct.new( :s3_bucket, :s3_key) SENSITIVE = [] include Aws::Structure end |
#s3_key ⇒ String
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.
1184 1185 1186 1187 1188 1189 |
# File 'lib/aws-sdk-comprehendmedical/types.rb', line 1184 class OutputDataConfig < Struct.new( :s3_bucket, :s3_key) SENSITIVE = [] include Aws::Structure end |