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
5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 |
# File 'lib/aws-sdk-bedrockagent/types.rb', line 5949 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.
5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 |
# File 'lib/aws-sdk-bedrockagent/types.rb', line 5949 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
5949 5950 5951 |
# File 'lib/aws-sdk-bedrockagent/types.rb', line 5949 def unknown @unknown end |