Class: Aws::AppSync::Types::OpenIDConnectConfig

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-appsync/types.rb

Overview

Describes an OpenID Connect (OIDC) configuration.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#auth_ttlInteger

The number of milliseconds that a token is valid after being authenticated.

Returns:

  • (Integer)


3663
3664
3665
3666
3667
3668
3669
3670
# File 'lib/aws-sdk-appsync/types.rb', line 3663

class OpenIDConnectConfig < Struct.new(
  :issuer,
  :client_id,
  :iat_ttl,
  :auth_ttl)
  SENSITIVE = []
  include Aws::Structure
end

#client_idString

The client identifier of the relying party at the OpenID identity provider. This identifier is typically obtained when the relying party is registered with the OpenID identity provider. You can specify a regular expression so that AppSync can validate against multiple client identifiers at a time.

Returns:

  • (String)


3663
3664
3665
3666
3667
3668
3669
3670
# File 'lib/aws-sdk-appsync/types.rb', line 3663

class OpenIDConnectConfig < Struct.new(
  :issuer,
  :client_id,
  :iat_ttl,
  :auth_ttl)
  SENSITIVE = []
  include Aws::Structure
end

#iat_ttlInteger

The number of milliseconds that a token is valid after it’s issued to a user.

Returns:

  • (Integer)


3663
3664
3665
3666
3667
3668
3669
3670
# File 'lib/aws-sdk-appsync/types.rb', line 3663

class OpenIDConnectConfig < Struct.new(
  :issuer,
  :client_id,
  :iat_ttl,
  :auth_ttl)
  SENSITIVE = []
  include Aws::Structure
end

#issuerString

The issuer for the OIDC configuration. The issuer returned by discovery must exactly match the value of ‘iss` in the ID token.

Returns:

  • (String)


3663
3664
3665
3666
3667
3668
3669
3670
# File 'lib/aws-sdk-appsync/types.rb', line 3663

class OpenIDConnectConfig < Struct.new(
  :issuer,
  :client_id,
  :iat_ttl,
  :auth_ttl)
  SENSITIVE = []
  include Aws::Structure
end