Class: Aws::BedrockAgentCoreControl::Types::AuthorizationData
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgentCoreControl::Types::AuthorizationData
- 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
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#oauth2 ⇒ Types::OAuth2AuthorizationData
OAuth2 authorization data for the gateway target.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#oauth2 ⇒ Types::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 |
#unknown ⇒ Object
Returns the value of attribute unknown
527 528 529 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 527 def unknown @unknown end |