Class: Aws::BedrockAgentCoreControl::Types::InterceptorConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgentCoreControl::Types::InterceptorConfiguration
- 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.
Defined Under Namespace
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#lambda ⇒ Types::LambdaInterceptorConfiguration
The details of the lambda function used for the interceptor.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#lambda ⇒ Types::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 |
#unknown ⇒ Object
Returns the value of attribute unknown
5469 5470 5471 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 5469 def unknown @unknown end |