Class: Aws::Wickr::Types::OidcConfigInfo

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

Overview

Contains the OpenID Connect (OIDC) configuration information for Single Sign-On (SSO) authentication, including identity provider settings and client credentials.

Constant Summary collapse

SENSITIVE =
[:client_secret, :secret]

Instance Attribute Summary collapse

Instance Attribute Details

#application_idInteger

The unique identifier for the registered OIDC application. Valid range is 1-10.

Returns:

  • (Integer)


2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
# File 'gems/aws-sdk-wickr/lib/aws-sdk-wickr/types.rb', line 2373

class OidcConfigInfo < Struct.new(
  :application_name,
  :client_id,
  :company_id,
  :scopes,
  :issuer,
  :client_secret,
  :secret,
  :redirect_url,
  :user_id,
  :custom_username,
  :ca_certificate,
  :application_id,
  :sso_token_buffer_minutes,
  :extra_auth_params)
  SENSITIVE = [:client_secret, :secret]
  include Aws::Structure
end

#application_nameString

The name of the OIDC application as registered with the identity provider.

Returns:

  • (String)


2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
# File 'gems/aws-sdk-wickr/lib/aws-sdk-wickr/types.rb', line 2373

class OidcConfigInfo < Struct.new(
  :application_name,
  :client_id,
  :company_id,
  :scopes,
  :issuer,
  :client_secret,
  :secret,
  :redirect_url,
  :user_id,
  :custom_username,
  :ca_certificate,
  :application_id,
  :sso_token_buffer_minutes,
  :extra_auth_params)
  SENSITIVE = [:client_secret, :secret]
  include Aws::Structure
end

#ca_certificateString

The X.509 CA certificate for validating SSL/TLS connections to the identity provider when using self-signed or enterprise certificates.

Returns:

  • (String)


2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
# File 'gems/aws-sdk-wickr/lib/aws-sdk-wickr/types.rb', line 2373

class OidcConfigInfo < Struct.new(
  :application_name,
  :client_id,
  :company_id,
  :scopes,
  :issuer,
  :client_secret,
  :secret,
  :redirect_url,
  :user_id,
  :custom_username,
  :ca_certificate,
  :application_id,
  :sso_token_buffer_minutes,
  :extra_auth_params)
  SENSITIVE = [:client_secret, :secret]
  include Aws::Structure
end

#client_idString

The OAuth client ID assigned by the identity provider for authentication requests.

Returns:

  • (String)


2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
# File 'gems/aws-sdk-wickr/lib/aws-sdk-wickr/types.rb', line 2373

class OidcConfigInfo < Struct.new(
  :application_name,
  :client_id,
  :company_id,
  :scopes,
  :issuer,
  :client_secret,
  :secret,
  :redirect_url,
  :user_id,
  :custom_username,
  :ca_certificate,
  :application_id,
  :sso_token_buffer_minutes,
  :extra_auth_params)
  SENSITIVE = [:client_secret, :secret]
  include Aws::Structure
end

#client_secretString

The OAuth client secret used to authenticate the application with the identity provider.

Returns:

  • (String)


2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
# File 'gems/aws-sdk-wickr/lib/aws-sdk-wickr/types.rb', line 2373

class OidcConfigInfo < Struct.new(
  :application_name,
  :client_id,
  :company_id,
  :scopes,
  :issuer,
  :client_secret,
  :secret,
  :redirect_url,
  :user_id,
  :custom_username,
  :ca_certificate,
  :application_id,
  :sso_token_buffer_minutes,
  :extra_auth_params)
  SENSITIVE = [:client_secret, :secret]
  include Aws::Structure
end

#company_idString

Custom identifier your end users will use to sign in with SSO.

Returns:

  • (String)


2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
# File 'gems/aws-sdk-wickr/lib/aws-sdk-wickr/types.rb', line 2373

class OidcConfigInfo < Struct.new(
  :application_name,
  :client_id,
  :company_id,
  :scopes,
  :issuer,
  :client_secret,
  :secret,
  :redirect_url,
  :user_id,
  :custom_username,
  :ca_certificate,
  :application_id,
  :sso_token_buffer_minutes,
  :extra_auth_params)
  SENSITIVE = [:client_secret, :secret]
  include Aws::Structure
end

#custom_usernameString

A custom field mapping to extract the username from the OIDC token when the standard username claim is insufficient.

Returns:

  • (String)


2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
# File 'gems/aws-sdk-wickr/lib/aws-sdk-wickr/types.rb', line 2373

class OidcConfigInfo < Struct.new(
  :application_name,
  :client_id,
  :company_id,
  :scopes,
  :issuer,
  :client_secret,
  :secret,
  :redirect_url,
  :user_id,
  :custom_username,
  :ca_certificate,
  :application_id,
  :sso_token_buffer_minutes,
  :extra_auth_params)
  SENSITIVE = [:client_secret, :secret]
  include Aws::Structure
end

#extra_auth_paramsString

Additional authentication parameters to include in the OIDC authorization request as a query string. Useful for provider-specific extensions.

Returns:

  • (String)


2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
# File 'gems/aws-sdk-wickr/lib/aws-sdk-wickr/types.rb', line 2373

class OidcConfigInfo < Struct.new(
  :application_name,
  :client_id,
  :company_id,
  :scopes,
  :issuer,
  :client_secret,
  :secret,
  :redirect_url,
  :user_id,
  :custom_username,
  :ca_certificate,
  :application_id,
  :sso_token_buffer_minutes,
  :extra_auth_params)
  SENSITIVE = [:client_secret, :secret]
  include Aws::Structure
end

#issuerString

The issuer URL of the identity provider, which serves as the base URL for OIDC endpoints and configuration discovery.

Returns:

  • (String)


2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
# File 'gems/aws-sdk-wickr/lib/aws-sdk-wickr/types.rb', line 2373

class OidcConfigInfo < Struct.new(
  :application_name,
  :client_id,
  :company_id,
  :scopes,
  :issuer,
  :client_secret,
  :secret,
  :redirect_url,
  :user_id,
  :custom_username,
  :ca_certificate,
  :application_id,
  :sso_token_buffer_minutes,
  :extra_auth_params)
  SENSITIVE = [:client_secret, :secret]
  include Aws::Structure
end

#redirect_urlString

The callback URL where the identity provider redirects users after successful authentication. This URL must be registered with the identity provider.

Returns:

  • (String)


2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
# File 'gems/aws-sdk-wickr/lib/aws-sdk-wickr/types.rb', line 2373

class OidcConfigInfo < Struct.new(
  :application_name,
  :client_id,
  :company_id,
  :scopes,
  :issuer,
  :client_secret,
  :secret,
  :redirect_url,
  :user_id,
  :custom_username,
  :ca_certificate,
  :application_id,
  :sso_token_buffer_minutes,
  :extra_auth_params)
  SENSITIVE = [:client_secret, :secret]
  include Aws::Structure
end

#scopesString

The OAuth scopes requested from the identity provider, which determine what user information is accessible (e.g., 'openid profile email').

Returns:

  • (String)


2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
# File 'gems/aws-sdk-wickr/lib/aws-sdk-wickr/types.rb', line 2373

class OidcConfigInfo < Struct.new(
  :application_name,
  :client_id,
  :company_id,
  :scopes,
  :issuer,
  :client_secret,
  :secret,
  :redirect_url,
  :user_id,
  :custom_username,
  :ca_certificate,
  :application_id,
  :sso_token_buffer_minutes,
  :extra_auth_params)
  SENSITIVE = [:client_secret, :secret]
  include Aws::Structure
end

#secretString

An additional secret credential used by the identity provider for authentication.

Returns:

  • (String)


2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
# File 'gems/aws-sdk-wickr/lib/aws-sdk-wickr/types.rb', line 2373

class OidcConfigInfo < Struct.new(
  :application_name,
  :client_id,
  :company_id,
  :scopes,
  :issuer,
  :client_secret,
  :secret,
  :redirect_url,
  :user_id,
  :custom_username,
  :ca_certificate,
  :application_id,
  :sso_token_buffer_minutes,
  :extra_auth_params)
  SENSITIVE = [:client_secret, :secret]
  include Aws::Structure
end

#sso_token_buffer_minutesInteger

The grace period in minutes before the SSO token expires when the system should proactively refresh the token to maintain seamless user access.

Returns:

  • (Integer)


2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
# File 'gems/aws-sdk-wickr/lib/aws-sdk-wickr/types.rb', line 2373

class OidcConfigInfo < Struct.new(
  :application_name,
  :client_id,
  :company_id,
  :scopes,
  :issuer,
  :client_secret,
  :secret,
  :redirect_url,
  :user_id,
  :custom_username,
  :ca_certificate,
  :application_id,
  :sso_token_buffer_minutes,
  :extra_auth_params)
  SENSITIVE = [:client_secret, :secret]
  include Aws::Structure
end

#user_idString

The claim field from the OIDC token to use as the unique user identifier (e.g., 'email', 'sub', or a custom claim).

Returns:

  • (String)


2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
# File 'gems/aws-sdk-wickr/lib/aws-sdk-wickr/types.rb', line 2373

class OidcConfigInfo < Struct.new(
  :application_name,
  :client_id,
  :company_id,
  :scopes,
  :issuer,
  :client_secret,
  :secret,
  :redirect_url,
  :user_id,
  :custom_username,
  :ca_certificate,
  :application_id,
  :sso_token_buffer_minutes,
  :extra_auth_params)
  SENSITIVE = [:client_secret, :secret]
  include Aws::Structure
end