Class: Aws::BedrockAgentCoreControl::Types::InterceptorConfiguration

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

Overview

Note:

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

Note:

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

The interceptor configuration.

Direct Known Subclasses

Lambda, Unknown

Defined Under Namespace

Classes: Lambda, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#lambdaTypes::LambdaInterceptorConfiguration

The details of the lambda function used for the interceptor.



5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 5469

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

  class Lambda < InterceptorConfiguration; end
  class Unknown < InterceptorConfiguration; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



5469
5470
5471
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 5469

def unknown
  @unknown
end