Class: Aws::ComprehendMedical::Types::InputDataConfig

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#s3_bucketString

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.

Returns:

  • (String)

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_keyString

The path to the input data files in the S3 bucket.

Returns:

  • (String)

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