Class: Aws::SSOOIDC::Types::RegisterClientResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::SSOOIDC::Types::RegisterClientResponse
- Defined in:
- gems/aws-sdk-core/lib/aws-sdk-ssooidc/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[:client_secret]
Instance Attribute Summary collapse
-
#authorization_endpoint ⇒ String
An endpoint that the client can use to request authorization.
-
#client_id ⇒ String
The unique identifier string for each client.
-
#client_id_issued_at ⇒ Integer
Indicates the time at which the
clientIdandclientSecretwere issued. -
#client_secret ⇒ String
A secret string generated for the client.
-
#client_secret_expires_at ⇒ Integer
Indicates the time at which the
clientIdandclientSecretwill become invalid. -
#token_endpoint ⇒ String
An endpoint that the client can use to create tokens.
Instance Attribute Details
#authorization_endpoint ⇒ String
An endpoint that the client can use to request authorization.
714 715 716 717 718 719 720 721 722 723 |
# File 'gems/aws-sdk-core/lib/aws-sdk-ssooidc/types.rb', line 714 class RegisterClientResponse < Struct.new( :client_id, :client_secret, :client_id_issued_at, :client_secret_expires_at, :authorization_endpoint, :token_endpoint) SENSITIVE = [:client_secret] include Aws::Structure end |
#client_id ⇒ String
The unique identifier string for each client. This client uses this identifier to get authenticated by the service in subsequent calls.
714 715 716 717 718 719 720 721 722 723 |
# File 'gems/aws-sdk-core/lib/aws-sdk-ssooidc/types.rb', line 714 class RegisterClientResponse < Struct.new( :client_id, :client_secret, :client_id_issued_at, :client_secret_expires_at, :authorization_endpoint, :token_endpoint) SENSITIVE = [:client_secret] include Aws::Structure end |
#client_id_issued_at ⇒ Integer
Indicates the time at which the clientId and clientSecret were
issued.
714 715 716 717 718 719 720 721 722 723 |
# File 'gems/aws-sdk-core/lib/aws-sdk-ssooidc/types.rb', line 714 class RegisterClientResponse < Struct.new( :client_id, :client_secret, :client_id_issued_at, :client_secret_expires_at, :authorization_endpoint, :token_endpoint) SENSITIVE = [:client_secret] include Aws::Structure end |
#client_secret ⇒ String
A secret string generated for the client. The client will use this string to get authenticated by the service in subsequent calls.
714 715 716 717 718 719 720 721 722 723 |
# File 'gems/aws-sdk-core/lib/aws-sdk-ssooidc/types.rb', line 714 class RegisterClientResponse < Struct.new( :client_id, :client_secret, :client_id_issued_at, :client_secret_expires_at, :authorization_endpoint, :token_endpoint) SENSITIVE = [:client_secret] include Aws::Structure end |
#client_secret_expires_at ⇒ Integer
Indicates the time at which the clientId and clientSecret will
become invalid.
714 715 716 717 718 719 720 721 722 723 |
# File 'gems/aws-sdk-core/lib/aws-sdk-ssooidc/types.rb', line 714 class RegisterClientResponse < Struct.new( :client_id, :client_secret, :client_id_issued_at, :client_secret_expires_at, :authorization_endpoint, :token_endpoint) SENSITIVE = [:client_secret] include Aws::Structure end |
#token_endpoint ⇒ String
An endpoint that the client can use to create tokens.
714 715 716 717 718 719 720 721 722 723 |
# File 'gems/aws-sdk-core/lib/aws-sdk-ssooidc/types.rb', line 714 class RegisterClientResponse < Struct.new( :client_id, :client_secret, :client_id_issued_at, :client_secret_expires_at, :authorization_endpoint, :token_endpoint) SENSITIVE = [:client_secret] include Aws::Structure end |