Class: Aws::AmplifyBackend::Types::UpdateBackendAuthIdentityPoolConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::AmplifyBackend::Types::UpdateBackendAuthIdentityPoolConfig
- Defined in:
- gems/aws-sdk-amplifybackend/lib/aws-sdk-amplifybackend/types.rb
Overview
Note:
When making an API call, you may pass UpdateBackendAuthIdentityPoolConfig data as a hash:
{
unauthenticated_login: false,
}
Describes the authorization configuration for the Amazon Cognito identity pool, provisioned as a part of your auth resource in the Amplify project.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#unauthenticated_login ⇒ Boolean
A boolean value that can be set to allow or disallow guest-level authorization into your Amplify app.
Instance Attribute Details
#unauthenticated_login ⇒ Boolean
A boolean value that can be set to allow or disallow guest-level authorization into your Amplify app.
4005 4006 4007 4008 4009 |
# File 'gems/aws-sdk-amplifybackend/lib/aws-sdk-amplifybackend/types.rb', line 4005 class UpdateBackendAuthIdentityPoolConfig < Struct.new( :unauthenticated_login) SENSITIVE = [] include Aws::Structure end |