Class: Aws::AppSync::Types::AdditionalAuthenticationProvider
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppSync::Types::AdditionalAuthenticationProvider
- Defined in:
- gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb
Overview
Note:
When making an API call, you may pass AdditionalAuthenticationProvider data as a 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.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#authentication_type ⇒ String
The authentication type: API key, AWS IAM, OIDC, or Amazon Cognito user pools.
-
#open_id_connect_config ⇒ Types::OpenIDConnectConfig
The OpenID Connect configuration.
-
#user_pool_config ⇒ Types::CognitoUserPoolConfig
The Amazon Cognito user pool configuration.
Instance Attribute Details
#authentication_type ⇒ String
The authentication type: API key, AWS IAM, OIDC, or Amazon Cognito user pools.
61 62 63 64 65 66 67 |
# File 'gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb', line 61 class AdditionalAuthenticationProvider < Struct.new( :authentication_type, :open_id_connect_config, :user_pool_config) SENSITIVE = [] include Aws::Structure end |
#open_id_connect_config ⇒ Types::OpenIDConnectConfig
The OpenID Connect configuration.
61 62 63 64 65 66 67 |
# File 'gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb', line 61 class AdditionalAuthenticationProvider < Struct.new( :authentication_type, :open_id_connect_config, :user_pool_config) SENSITIVE = [] include Aws::Structure end |
#user_pool_config ⇒ Types::CognitoUserPoolConfig
The Amazon Cognito user pool configuration.
61 62 63 64 65 66 67 |
# File 'gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb', line 61 class AdditionalAuthenticationProvider < Struct.new( :authentication_type, :open_id_connect_config, :user_pool_config) SENSITIVE = [] include Aws::Structure end |