You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::SageMaker::Types::OidcConfig

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing OidcConfig as input to an Aws::Client method, you can use a vanilla Hash:

{
  client_id: "ClientId", # required
  client_secret: "ClientSecret", # required
  issuer: "OidcEndpoint", # required
  authorization_endpoint: "OidcEndpoint", # required
  token_endpoint: "OidcEndpoint", # required
  user_info_endpoint: "OidcEndpoint", # required
  logout_endpoint: "OidcEndpoint", # required
  jwks_uri: "OidcEndpoint", # required
}

Use this parameter to configure your OIDC Identity Provider (IdP).

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#authorization_endpointString

The OIDC IdP authorization endpoint used to configure your private workforce.

Returns:

  • (String)

    The OIDC IdP authorization endpoint used to configure your private workforce.

#client_idString

The OIDC IdP client ID used to configure your private workforce.

Returns:

  • (String)

    The OIDC IdP client ID used to configure your private workforce.

#client_secretString

The OIDC IdP client secret used to configure your private workforce.

Returns:

  • (String)

    The OIDC IdP client secret used to configure your private workforce.

#issuerString

The OIDC IdP issuer used to configure your private workforce.

Returns:

  • (String)

    The OIDC IdP issuer used to configure your private workforce.

#jwks_uriString

The OIDC IdP JSON Web Key Set (Jwks) URI used to configure your private workforce.

Returns:

  • (String)

    The OIDC IdP JSON Web Key Set (Jwks) URI used to configure your private workforce.

#logout_endpointString

The OIDC IdP logout endpoint used to configure your private workforce.

Returns:

  • (String)

    The OIDC IdP logout endpoint used to configure your private workforce.

#token_endpointString

The OIDC IdP token endpoint used to configure your private workforce.

Returns:

  • (String)

    The OIDC IdP token endpoint used to configure your private workforce.

#user_info_endpointString

The OIDC IdP user information endpoint used to configure your private workforce.

Returns:

  • (String)

    The OIDC IdP user information endpoint used to configure your private workforce.