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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-comprehendmedical/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.

Returns:

  • (String)


909
910
911
912
913
914
# File 'gems/aws-sdk-comprehendmedical/lib/aws-sdk-comprehendmedical/types.rb', line 909

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)


909
910
911
912
913
914
# File 'gems/aws-sdk-comprehendmedical/lib/aws-sdk-comprehendmedical/types.rb', line 909

class InputDataConfig < Struct.new(
  :s3_bucket,
  :s3_key)
  SENSITIVE = []
  include Aws::Structure
end