Class: Aws::BedrockAgent::Types::PromptFlowNodeSourceConfiguration

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb

Overview

Note:

PromptFlowNodeSourceConfiguration is a union - when making an API calls you must set exactly one of the members.

Note:

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.

Direct Known Subclasses

Inline, Resource, Unknown

Defined Under Namespace

Classes: Inline, Resource, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#inlineTypes::PromptFlowNodeInlineConfiguration

Contains configurations for a prompt that is defined inline



6614
6615
6616
6617
6618
6619
6620
6621
6622
6623
6624
6625
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb', line 6614

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

#resourceTypes::PromptFlowNodeResourceConfiguration

Contains configurations for a prompt from Prompt management.



6614
6615
6616
6617
6618
6619
6620
6621
6622
6623
6624
6625
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb', line 6614

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

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



6614
6615
6616
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb', line 6614

def unknown
  @unknown
end