Class: Aws::CognitoIdentityProvider::Types::DeleteUserPoolDomainRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::CognitoIdentityProvider::Types::DeleteUserPoolDomainRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cognitoidentityprovider/types.rb
Overview
Note:
When making an API call, you may pass DeleteUserPoolDomainRequest data as a hash:
{
domain: "DomainType", # required
user_pool_id: "UserPoolIdType", # required
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#domain ⇒ String
The domain string.
-
#user_pool_id ⇒ String
The user pool ID.
Instance Attribute Details
#domain ⇒ String
The domain string. 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`.
4298 4299 4300 4301 4302 4303 |
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 4298 class DeleteUserPoolDomainRequest < Struct.new( :domain, :user_pool_id) SENSITIVE = [] include Aws::Structure end |
#user_pool_id ⇒ String
The user pool ID.
4298 4299 4300 4301 4302 4303 |
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 4298 class DeleteUserPoolDomainRequest < Struct.new( :domain, :user_pool_id) SENSITIVE = [] include Aws::Structure end |