Class: Aws::BedrockAgent::Types::ActionGroupExecutor

Inherits:
Struct
  • Object
show all
Includes:
Structure, Structure::Union
Defined in:
lib/aws-sdk-bedrockagent/types.rb

Overview

Note:

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

Note:

ActionGroupExecutor is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ActionGroupExecutor corresponding to the set member.

Contains details about the Lambda function containing the business logic that is carried out upon invoking the action.

Direct Known Subclasses

Lambda, Unknown

Defined Under Namespace

Classes: Lambda, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#lambdaString

The Amazon Resource Name (ARN) of the Lambda function containing the business logic that is carried out upon invoking the action.

Returns:

  • (String)


89
90
91
92
93
94
95
96
97
98
# File 'lib/aws-sdk-bedrockagent/types.rb', line 89

class ActionGroupExecutor < Struct.new(
  :lambda,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class Lambda < ActionGroupExecutor; end
  class Unknown < ActionGroupExecutor; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



89
90
91
# File 'lib/aws-sdk-bedrockagent/types.rb', line 89

def unknown
  @unknown
end