Class: Aws::Bedrock::Types::ModelInvocationJobOutputDataConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::Bedrock::Types::ModelInvocationJobOutputDataConfig
- 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
Defined Under Namespace
Classes: S3OutputDataConfig, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#s3_output_data_config ⇒ Types::ModelInvocationJobS3OutputDataConfig
Contains the configuration of the S3 location of the output data.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#s3_output_data_config ⇒ Types::ModelInvocationJobS3OutputDataConfig
Contains the configuration of the S3 location of the output data.
4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 |
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 4658 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 |
#unknown ⇒ Object
Returns the value of attribute unknown
4658 4659 4660 |
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 4658 def unknown @unknown end |