Class: Aws::Personalize::Types::BatchInferenceJobInput

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-personalize/types.rb

Overview

Note:

When making an API call, you may pass BatchInferenceJobInput data as a hash:

{
  s3_data_source: { # required
    path: "S3Location", # required
    kms_key_arn: "KmsKeyArn",
  },
}

The input configuration of a batch inference job.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#s3_data_sourceTypes::S3DataConfig

The URI of the Amazon S3 location that contains your input data. The Amazon S3 bucket must be in the same region as the API endpoint you are calling.

Returns:



276
277
278
279
280
# File 'lib/aws-sdk-personalize/types.rb', line 276

class BatchInferenceJobInput < Struct.new(
  :s3_data_source)
  SENSITIVE = []
  include Aws::Structure
end