Class: Aws::BedrockAgent::Types::PromptFlowNodeSourceConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgent::Types::PromptFlowNodeSourceConfiguration
- Includes:
- Structure, Structure::Union
- Defined in:
- lib/aws-sdk-bedrockagent/types.rb
Overview
PromptFlowNodeSourceConfiguration is a union - when making an API calls you must set exactly one of the members.
PromptFlowNodeSourceConfiguration is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of PromptFlowNodeSourceConfiguration corresponding to the set member.
Contains configurations for a prompt and whether it is from Prompt management or defined inline.
Defined Under Namespace
Classes: Inline, Resource, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#inline ⇒ Types::PromptFlowNodeInlineConfiguration
Contains configurations for a prompt that is defined inline.
-
#resource ⇒ Types::PromptFlowNodeResourceConfiguration
Contains configurations for a prompt from Prompt management.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#inline ⇒ Types::PromptFlowNodeInlineConfiguration
Contains configurations for a prompt that is defined inline
5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 |
# File 'lib/aws-sdk-bedrockagent/types.rb', line 5935 class PromptFlowNodeSourceConfiguration < Struct.new( :inline, :resource, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Inline < PromptFlowNodeSourceConfiguration; end class Resource < PromptFlowNodeSourceConfiguration; end class Unknown < PromptFlowNodeSourceConfiguration; end end |
#resource ⇒ Types::PromptFlowNodeResourceConfiguration
Contains configurations for a prompt from Prompt management.
5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 |
# File 'lib/aws-sdk-bedrockagent/types.rb', line 5935 class PromptFlowNodeSourceConfiguration < Struct.new( :inline, :resource, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Inline < PromptFlowNodeSourceConfiguration; end class Resource < PromptFlowNodeSourceConfiguration; end class Unknown < PromptFlowNodeSourceConfiguration; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
5935 5936 5937 |
# File 'lib/aws-sdk-bedrockagent/types.rb', line 5935 def unknown @unknown end |