Class: Aws::AppSync::Types::CognitoConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppSync::Types::CognitoConfig
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-appsync/types.rb
Overview
Describes an Amazon Cognito 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.
-
#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. If this value isn’t set, no filtering is applied.
832 833 834 835 836 837 838 |
# File 'lib/aws-sdk-appsync/types.rb', line 832 class CognitoConfig < Struct.new( :user_pool_id, :aws_region, :app_id_client_regex) SENSITIVE = [] include Aws::Structure end |
#aws_region ⇒ String
The Amazon Web Services Region in which the user pool was created.
832 833 834 835 836 837 838 |
# File 'lib/aws-sdk-appsync/types.rb', line 832 class CognitoConfig < Struct.new( :user_pool_id, :aws_region, :app_id_client_regex) SENSITIVE = [] include Aws::Structure end |
#user_pool_id ⇒ String
The user pool ID.
832 833 834 835 836 837 838 |
# File 'lib/aws-sdk-appsync/types.rb', line 832 class CognitoConfig < Struct.new( :user_pool_id, :aws_region, :app_id_client_regex) SENSITIVE = [] include Aws::Structure end |