Class: Aws::BedrockRuntime::Types::AsyncInvokeOutputDataConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockRuntime::Types::AsyncInvokeOutputDataConfig
- Includes:
- Structure, Structure::Union
- Defined in:
- lib/aws-sdk-bedrockruntime/types.rb
Overview
Note:
AsyncInvokeOutputDataConfig is a union - when making an API calls you must set exactly one of the members.
Note:
AsyncInvokeOutputDataConfig is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of AsyncInvokeOutputDataConfig corresponding to the set member.
Asynchronous invocation output data settings.
Direct Known Subclasses
Defined Under Namespace
Classes: S3OutputDataConfig, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#s3_output_data_config ⇒ Types::AsyncInvokeS3OutputDataConfig
A storage location for the output data in an S3 bucket.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#s3_output_data_config ⇒ Types::AsyncInvokeS3OutputDataConfig
A storage location for the output data in an S3 bucket
112 113 114 115 116 117 118 119 120 121 |
# File 'lib/aws-sdk-bedrockruntime/types.rb', line 112 class AsyncInvokeOutputDataConfig < Struct.new( :s3_output_data_config, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class S3OutputDataConfig < AsyncInvokeOutputDataConfig; end class Unknown < AsyncInvokeOutputDataConfig; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
112 113 114 |
# File 'lib/aws-sdk-bedrockruntime/types.rb', line 112 def unknown @unknown end |