Class: Aws::BedrockAgentCoreControl::Types::AuthorizationData

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

Overview

Note:

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

Contains the authorization data that is returned when a gateway target is configured with a credential provider with authorization code grant type and requires user federation.

Defined Under Namespace

Classes: Oauth2, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#oauth2Types::OAuth2AuthorizationData

OAuth2 authorization data for the gateway target.



527
528
529
530
531
532
533
534
535
536
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 527

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

  class Oauth2 < AuthorizationData; end
  class Unknown < AuthorizationData; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



527
528
529
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 527

def unknown
  @unknown
end