Class: Aws::Amplify::Types::DeleteDomainAssociationRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Amplify::Types::DeleteDomainAssociationRequest
- Defined in:
- gems/aws-sdk-amplify/lib/aws-sdk-amplify/types.rb
Overview
Note:
When making an API call, you may pass DeleteDomainAssociationRequest data as a hash:
{
app_id: "AppId", # required
domain_name: "DomainName", # required
}
The request structure for the delete domain association request.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#app_id ⇒ String
The unique id for an Amplify app.
-
#domain_name ⇒ String
The name of the domain.
Instance Attribute Details
#app_id ⇒ String
The unique id for an Amplify app.
1276 1277 1278 1279 1280 1281 |
# File 'gems/aws-sdk-amplify/lib/aws-sdk-amplify/types.rb', line 1276 class DeleteDomainAssociationRequest < Struct.new( :app_id, :domain_name) SENSITIVE = [] include Aws::Structure end |
#domain_name ⇒ String
The name of the domain.
1276 1277 1278 1279 1280 1281 |
# File 'gems/aws-sdk-amplify/lib/aws-sdk-amplify/types.rb', line 1276 class DeleteDomainAssociationRequest < Struct.new( :app_id, :domain_name) SENSITIVE = [] include Aws::Structure end |