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.
6800 6801 6802 6803 6804 6805 6806 6807 6808 6809 |
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 6800 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
6800 6801 6802 |
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 6800 def unknown @unknown end |