You are viewing documentation for version 3 of the AWS SDK for Ruby. Version 2 documentation can be found here.
Class: Aws::AppSync::Types::CognitoUserPoolConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppSync::Types::CognitoUserPoolConfig
- Defined in:
- gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb
Overview
Note:
When making an API call, you may pass CognitoUserPoolConfig data as a hash:
{
user_pool_id: "String", # required
aws_region: "String", # required
app_id_client_regex: "String",
}
Describes an Amazon Cognito user pool configuration.
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 AWS Region in which the user pool was created.
-
#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.
364 365 366 367 368 369 |
# File 'gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb', line 364 class CognitoUserPoolConfig < Struct.new( :user_pool_id, :aws_region, :app_id_client_regex) include Aws::Structure end |
#aws_region ⇒ String
The AWS Region in which the user pool was created.
364 365 366 367 368 369 |
# File 'gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb', line 364 class CognitoUserPoolConfig < Struct.new( :user_pool_id, :aws_region, :app_id_client_regex) include Aws::Structure end |
#user_pool_id ⇒ String
The user pool ID.
364 365 366 367 368 369 |
# File 'gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb', line 364 class CognitoUserPoolConfig < Struct.new( :user_pool_id, :aws_region, :app_id_client_regex) include Aws::Structure end |