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.
Each file in the document collection must be less than 40 KB. You can store a maximum of 30 GB in the bucket.
918 919 920 921 922 923 |
# File 'lib/aws-sdk-comprehendmedical/types.rb', line 918 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.
918 919 920 921 922 923 |
# File 'lib/aws-sdk-comprehendmedical/types.rb', line 918 class InputDataConfig < Struct.new( :s3_bucket, :s3_key) SENSITIVE = [] include Aws::Structure end |