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.
310 311 312 313 314 315 316 317 318 319 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 310 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
310 311 312 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 310 def unknown @unknown end |