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.
| 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 | # File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 4817 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
| 4817 4818 4819 | # File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 4817 def unknown @unknown end |