Class: Aws::QuickSight::Types::AuthorizationCodeGrantCredentialsDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::QuickSight::Types::AuthorizationCodeGrantCredentialsDetails
- Defined in:
- gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb
Overview
Note:
AuthorizationCodeGrantCredentialsDetails is a union - when making an API calls you must set exactly one of the members.
Details for OAuth 2.0 authorization code grant credentials.
Direct Known Subclasses
Defined Under Namespace
Classes: AuthorizationCodeGrantDetails, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#authorization_code_grant_details ⇒ Types::AuthorizationCodeGrantDetails
The authorization code grant configuration details.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#authorization_code_grant_details ⇒ Types::AuthorizationCodeGrantDetails
The authorization code grant configuration details.
2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 2885 class AuthorizationCodeGrantCredentialsDetails < Struct.new( :authorization_code_grant_details, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class AuthorizationCodeGrantDetails < AuthorizationCodeGrantCredentialsDetails; end class Unknown < AuthorizationCodeGrantCredentialsDetails; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
2885 2886 2887 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 2885 def unknown @unknown end |