Class: Aws::BedrockAgent::Types::RetrievalFlowNodeServiceConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgent::Types::RetrievalFlowNodeServiceConfiguration
- Includes:
- Structure, Structure::Union
- Defined in:
- lib/aws-sdk-bedrockagent/types.rb
Overview
RetrievalFlowNodeServiceConfiguration is a union - when making an API calls you must set exactly one of the members.
RetrievalFlowNodeServiceConfiguration is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of RetrievalFlowNodeServiceConfiguration corresponding to the set member.
Contains configurations for the service to use for retrieving data to return as the output from the node.
Defined Under Namespace
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#s3 ⇒ Types::RetrievalFlowNodeS3Configuration
Contains configurations for the Amazon S3 location from which to retrieve data to return as the output from the node.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#s3 ⇒ Types::RetrievalFlowNodeS3Configuration
Contains configurations for the Amazon S3 location from which to retrieve data to return as the output from the node.
6389 6390 6391 6392 6393 6394 6395 6396 6397 6398 |
# File 'lib/aws-sdk-bedrockagent/types.rb', line 6389 class RetrievalFlowNodeServiceConfiguration < Struct.new( :s3, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class S3 < RetrievalFlowNodeServiceConfiguration; end class Unknown < RetrievalFlowNodeServiceConfiguration; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
6389 6390 6391 |
# File 'lib/aws-sdk-bedrockagent/types.rb', line 6389 def unknown @unknown end |