Class: Aws::BedrockAgentCoreControl::Types::AuthorizerConfiguration

Inherits:
Struct
  • Object
show all
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

CustomJwtAuthorizer, Unknown

Defined Under Namespace

Classes: CustomJwtAuthorizer, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#custom_jwt_authorizerTypes::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

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



266
267
268
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 266

def unknown
  @unknown
end