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

Inherits:
Struct
  • Object
show all
Includes:
Structure, Structure::Union
Defined in:
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



5964
5965
5966
5967
5968
5969
5970
5971
5972
5973
5974
5975
# File 'lib/aws-sdk-bedrockagent/types.rb', line 5964

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.



5964
5965
5966
5967
5968
5969
5970
5971
5972
5973
5974
5975
# File 'lib/aws-sdk-bedrockagent/types.rb', line 5964

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



5964
5965
5966
# File 'lib/aws-sdk-bedrockagent/types.rb', line 5964

def unknown
  @unknown
end