Class: Aws::QuickSight::Types::ReadClientCredentialsDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::QuickSight::Types::ReadClientCredentialsDetails
- Defined in:
- gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb
Overview
Note:
ReadClientCredentialsDetails is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ReadClientCredentialsDetails corresponding to the set member.
Read-only details for OAuth2 client credentials, containing non-sensitive configuration information.
Direct Known Subclasses
Defined Under Namespace
Classes: ReadClientCredentialsGrantDetails, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#read_client_credentials_grant_details ⇒ Types::ReadClientCredentialsGrantDetails
The read-only client credentials grant configuration details.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#read_client_credentials_grant_details ⇒ Types::ReadClientCredentialsGrantDetails
The read-only client credentials grant configuration details.
30550 30551 30552 30553 30554 30555 30556 30557 30558 30559 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 30550 class ReadClientCredentialsDetails < Struct.new( :read_client_credentials_grant_details, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class ReadClientCredentialsGrantDetails < ReadClientCredentialsDetails; end class Unknown < ReadClientCredentialsDetails; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
30550 30551 30552 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 30550 def unknown @unknown end |