Class: Aws::Bedrock::Types::ModelInvocationJobOutputDataConfig

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

Overview

Note:

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

Note:

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

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

Direct Known Subclasses

S3OutputDataConfig, Unknown

Defined Under Namespace

Classes: S3OutputDataConfig, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#s3_output_data_configTypes::ModelInvocationJobS3OutputDataConfig

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



4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 4474

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

  class S3OutputDataConfig < ModelInvocationJobOutputDataConfig; end
  class Unknown < ModelInvocationJobOutputDataConfig; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



4474
4475
4476
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 4474

def unknown
  @unknown
end