Class: Aws::ComprehendMedical::Types::InputDataConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::ComprehendMedical::Types::InputDataConfig
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-comprehendmedical/types.rb
Overview
The input properties for an entities detection job. This includes the name of the S3 bucket and the path to the files to be analyzed.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#s3_bucket ⇒ String
The URI of the S3 bucket that contains the input data.
-
#s3_key ⇒ String
The path to the input data files in the S3 bucket.
Instance Attribute Details
#s3_bucket ⇒ String
The URI of the S3 bucket that contains the input data. The bucket must be in the same region as the API endpoint that you are calling.
909 910 911 912 913 914 |
# File 'lib/aws-sdk-comprehendmedical/types.rb', line 909 class InputDataConfig < Struct.new( :s3_bucket, :s3_key) SENSITIVE = [] include Aws::Structure end |
#s3_key ⇒ String
The path to the input data files in the S3 bucket.
909 910 911 912 913 914 |
# File 'lib/aws-sdk-comprehendmedical/types.rb', line 909 class InputDataConfig < Struct.new( :s3_bucket, :s3_key) SENSITIVE = [] include Aws::Structure end |