Class: Aws::AppSync::Types::UserPoolConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppSync::Types::UserPoolConfig
- Defined in:
- gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb
Overview
When making an API call, you may pass UserPoolConfig data as a hash:
{
user_pool_id: "String", # required
aws_region: "String", # required
default_action: "ALLOW", # required, accepts ALLOW, DENY
app_id_client_regex: "String",
}
Describes an Amazon Cognito user pool configuration.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#app_id_client_regex ⇒ String
A regular expression for validating the incoming Amazon Cognito user pool app client ID.
-
#aws_region ⇒ String
The Amazon Web Services Region in which the user pool was created.
-
#default_action ⇒ String
The action that you want your GraphQL API to take when a request that uses Amazon Cognito user pool authentication doesn't match the Amazon Cognito user pool configuration.
-
#user_pool_id ⇒ String
The user pool ID.
Instance Attribute Details
#app_id_client_regex ⇒ String
A regular expression for validating the incoming Amazon Cognito user pool app client ID.
4142 4143 4144 4145 4146 4147 4148 4149 |
# File 'gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb', line 4142 class UserPoolConfig < Struct.new( :user_pool_id, :aws_region, :default_action, :app_id_client_regex) SENSITIVE = [] include Aws::Structure end |
#aws_region ⇒ String
The Amazon Web Services Region in which the user pool was created.
4142 4143 4144 4145 4146 4147 4148 4149 |
# File 'gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb', line 4142 class UserPoolConfig < Struct.new( :user_pool_id, :aws_region, :default_action, :app_id_client_regex) SENSITIVE = [] include Aws::Structure end |
#default_action ⇒ String
The action that you want your GraphQL API to take when a request that uses Amazon Cognito user pool authentication doesn't match the Amazon Cognito user pool configuration.
4142 4143 4144 4145 4146 4147 4148 4149 |
# File 'gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb', line 4142 class UserPoolConfig < Struct.new( :user_pool_id, :aws_region, :default_action, :app_id_client_regex) SENSITIVE = [] include Aws::Structure end |
#user_pool_id ⇒ String
The user pool ID.
4142 4143 4144 4145 4146 4147 4148 4149 |
# File 'gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb', line 4142 class UserPoolConfig < Struct.new( :user_pool_id, :aws_region, :default_action, :app_id_client_regex) SENSITIVE = [] include Aws::Structure end |