Class: Aws::AmplifyBackend::Types::CreateBackendAuthIdentityPoolConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::AmplifyBackend::Types::CreateBackendAuthIdentityPoolConfig
- Defined in:
- gems/aws-sdk-amplifybackend/lib/aws-sdk-amplifybackend/types.rb
Overview
Note:
When making an API call, you may pass CreateBackendAuthIdentityPoolConfig data as a hash:
{
identity_pool_name: "__string", # required
unauthenticated_login: false, # required
}
Describes authorization configurations for the auth resources, configured as a part of your Amplify project.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#identity_pool_name ⇒ String
Name of the Amazon Cognito identity pool used for authorization.
-
#unauthenticated_login ⇒ Boolean
Set to true or false based on whether you want to enable guest authorization to your Amplify app.
Instance Attribute Details
#identity_pool_name ⇒ String
Name of the Amazon Cognito identity pool used for authorization.
922 923 924 925 926 927 |
# File 'gems/aws-sdk-amplifybackend/lib/aws-sdk-amplifybackend/types.rb', line 922 class CreateBackendAuthIdentityPoolConfig < Struct.new( :identity_pool_name, :unauthenticated_login) SENSITIVE = [] include Aws::Structure end |
#unauthenticated_login ⇒ Boolean
Set to true or false based on whether you want to enable guest authorization to your Amplify app.
922 923 924 925 926 927 |
# File 'gems/aws-sdk-amplifybackend/lib/aws-sdk-amplifybackend/types.rb', line 922 class CreateBackendAuthIdentityPoolConfig < Struct.new( :identity_pool_name, :unauthenticated_login) SENSITIVE = [] include Aws::Structure end |