Class: Aws::AppFabric::Types::Oauth2Credential

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-appfabric/lib/aws-sdk-appfabric/types.rb

Overview

Contains OAuth2 client credential information.

Constant Summary collapse

SENSITIVE =
[:client_secret]

Instance Attribute Summary collapse

Instance Attribute Details

#client_idString

The client ID of the client application.

Returns:

  • (String)


1432
1433
1434
1435
1436
1437
# File 'gems/aws-sdk-appfabric/lib/aws-sdk-appfabric/types.rb', line 1432

class Oauth2Credential < Struct.new(
  :client_id,
  :client_secret)
  SENSITIVE = [:client_secret]
  include Aws::Structure
end

#client_secretString

The client secret of the client application.

Returns:

  • (String)


1432
1433
1434
1435
1436
1437
# File 'gems/aws-sdk-appfabric/lib/aws-sdk-appfabric/types.rb', line 1432

class Oauth2Credential < Struct.new(
  :client_id,
  :client_secret)
  SENSITIVE = [:client_secret]
  include Aws::Structure
end