Class: Aws::CognitoIdentityProvider::Types::DeleteUserPoolDomainRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::CognitoIdentityProvider::Types::DeleteUserPoolDomainRequest
- Defined in:
- gems/aws-sdk-cognitoidentityprovider/lib/aws-sdk-cognitoidentityprovider/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#domain ⇒ String
The domain that you want to delete.
-
#user_pool_id ⇒ String
The ID of the user pool where you want to delete the domain.
Instance Attribute Details
#domain ⇒ String
The domain that you want to delete. For custom domains, this is the
fully-qualified domain name, such as auth.example.com
. For Amazon
Cognito prefix domains, this is the prefix alone, such as auth
.
4948 4949 4950 4951 4952 4953 |
# File 'gems/aws-sdk-cognitoidentityprovider/lib/aws-sdk-cognitoidentityprovider/types.rb', line 4948 class DeleteUserPoolDomainRequest < Struct.new( :domain, :user_pool_id) SENSITIVE = [] include Aws::Structure end |
#user_pool_id ⇒ String
The ID of the user pool where you want to delete the domain.
4948 4949 4950 4951 4952 4953 |
# File 'gems/aws-sdk-cognitoidentityprovider/lib/aws-sdk-cognitoidentityprovider/types.rb', line 4948 class DeleteUserPoolDomainRequest < Struct.new( :domain, :user_pool_id) SENSITIVE = [] include Aws::Structure end |