Class: Aws::AppFabric::Types::Oauth2Credential
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppFabric::Types::Oauth2Credential
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-appfabric/types.rb
Overview
Contains OAuth2 client credential information.
Constant Summary collapse
- SENSITIVE =
[:client_secret]
Instance Attribute Summary collapse
-
#client_id ⇒ String
The client ID of the client application.
-
#client_secret ⇒ String
The client secret of the client application.
Instance Attribute Details
#client_id ⇒ String
The client ID of the client application.
1432 1433 1434 1435 1436 1437 |
# File 'lib/aws-sdk-appfabric/types.rb', line 1432 class Oauth2Credential < Struct.new( :client_id, :client_secret) SENSITIVE = [:client_secret] include Aws::Structure end |
#client_secret ⇒ String
The client secret of the client application.
1432 1433 1434 1435 1436 1437 |
# File 'lib/aws-sdk-appfabric/types.rb', line 1432 class Oauth2Credential < Struct.new( :client_id, :client_secret) SENSITIVE = [:client_secret] include Aws::Structure end |