Class: Aws::BedrockAgentCoreControl::Types::AuthorizerConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgentCoreControl::Types::AuthorizerConfiguration
- Defined in:
- gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb
Overview
Note:
AuthorizerConfiguration is a union - when making an API calls you must set exactly one of the members.
Note:
AuthorizerConfiguration is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of AuthorizerConfiguration corresponding to the set member.
Represents inbound authorization configuration options used to authenticate incoming requests.
Direct Known Subclasses
Defined Under Namespace
Classes: CustomJwtAuthorizer, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#custom_jwt_authorizer ⇒ Types::CustomJWTAuthorizerConfiguration
The inbound JWT-based authorization, specifying how incoming requests should be authenticated.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#custom_jwt_authorizer ⇒ Types::CustomJWTAuthorizerConfiguration
The inbound JWT-based authorization, specifying how incoming requests should be authenticated.
266 267 268 269 270 271 272 273 274 275 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 266 class AuthorizerConfiguration < Struct.new( :custom_jwt_authorizer, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class CustomJwtAuthorizer < AuthorizerConfiguration; end class Unknown < AuthorizerConfiguration; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
266 267 268 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 266 def unknown @unknown end |