Class: Aws::QuickSight::Types::ClientCredentialsDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::QuickSight::Types::ClientCredentialsDetails
- Includes:
- Structure, Structure::Union
- Defined in:
- lib/aws-sdk-quicksight/types.rb
Overview
Note:
ClientCredentialsDetails is a union - when making an API calls you must set exactly one of the members.
Details for OAuth 2.0 client credentials grant authentication.
Defined Under Namespace
Classes: ClientCredentialsGrantDetails, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#client_credentials_grant_details ⇒ Types::ClientCredentialsGrantDetails
The OAuth2 client credentials grant configuration details for authentication.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#client_credentials_grant_details ⇒ Types::ClientCredentialsGrantDetails
The OAuth2 client credentials grant configuration details for authentication.
7126 7127 7128 7129 7130 7131 7132 7133 7134 7135 |
# File 'lib/aws-sdk-quicksight/types.rb', line 7126 class ClientCredentialsDetails < Struct.new( :client_credentials_grant_details, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class ClientCredentialsGrantDetails < ClientCredentialsDetails; end class Unknown < ClientCredentialsDetails; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
7126 7127 7128 |
# File 'lib/aws-sdk-quicksight/types.rb', line 7126 def unknown @unknown end |