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

Class: Aws::AppSync::Types::AdditionalAuthenticationProvider

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

Overview

Note:

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

{
  authentication_type: "API_KEY", # accepts API_KEY, AWS_IAM, AMAZON_COGNITO_USER_POOLS, OPENID_CONNECT
  open_id_connect_config: {
    issuer: "String", # required
    client_id: "String",
    iat_ttl: 1,
    auth_ttl: 1,
  },
  user_pool_config: {
    user_pool_id: "String", # required
    aws_region: "String", # required
    app_id_client_regex: "String",
  },
}

Describes an additional authentication provider.

Instance Attribute Summary collapse

Instance Attribute Details

#authentication_typeString

The authentication type: API key, AWS IAM, OIDC, or Amazon Cognito user pools.

Possible values:

  • API_KEY
  • AWS_IAM
  • AMAZON_COGNITO_USER_POOLS
  • OPENID_CONNECT

Returns:

  • (String)

    The authentication type: API key, AWS IAM, OIDC, or Amazon Cognito user pools.

#open_id_connect_configTypes::OpenIDConnectConfig

The OpenID Connect configuration.

Returns:

#user_pool_configTypes::CognitoUserPoolConfig

The Amazon Cognito user pool configuration.

Returns: