Class: Aws::ComprehendMedical::Types::InputDataConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::ComprehendMedical::Types::InputDataConfig
- Defined in:
- gems/aws-sdk-comprehendmedical/lib/aws-sdk-comprehendmedical/types.rb
Overview
Note:
When making an API call, you may pass InputDataConfig data as a hash:
{
s3_bucket: "S3Bucket", # required
s3_key: "S3Key",
}
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.
1013 1014 1015 1016 1017 1018 |
# File 'gems/aws-sdk-comprehendmedical/lib/aws-sdk-comprehendmedical/types.rb', line 1013 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.
1013 1014 1015 1016 1017 1018 |
# File 'gems/aws-sdk-comprehendmedical/lib/aws-sdk-comprehendmedical/types.rb', line 1013 class InputDataConfig < Struct.new( :s3_bucket, :s3_key) SENSITIVE = [] include Aws::Structure end |