Class: Aws::Bedrock::Types::ModelInvocationJobInputDataConfig

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb

Overview

Note:

ModelInvocationJobInputDataConfig is a union - when making an API calls you must set exactly one of the members.

Note:

ModelInvocationJobInputDataConfig is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ModelInvocationJobInputDataConfig corresponding to the set member.

Details about the location of the input to the batch inference job.

Direct Known Subclasses

S3InputDataConfig, Unknown

Defined Under Namespace

Classes: S3InputDataConfig, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#s3_input_data_configTypes::ModelInvocationJobS3InputDataConfig

Contains the configuration of the S3 location of the input data.



4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 4451

class ModelInvocationJobInputDataConfig < Struct.new(
  :s3_input_data_config,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class S3InputDataConfig < ModelInvocationJobInputDataConfig; end
  class Unknown < ModelInvocationJobInputDataConfig; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



4451
4452
4453
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 4451

def unknown
  @unknown
end