Class: Aws::QuickSight::Types::ClientCredentialsDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::QuickSight::Types::ClientCredentialsDetails
- Defined in:
- gems/aws-sdk-quicksight/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.
Direct Known Subclasses
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.
5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 5062 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
5062 5063 5064 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 5062 def unknown @unknown end |