Deletes a custom DomainName object.
DomainName
Use a bare-bones client and the command you need to make an API call.
import { AppSyncClient, DeleteDomainNameCommand } from "@aws-sdk/client-appsync"; // ES Modules import // const { AppSyncClient, DeleteDomainNameCommand } = require("@aws-sdk/client-appsync"); // CommonJS import const client = new AppSyncClient(config); const command = new DeleteDomainNameCommand(input); const response = await client.send(command);
DeleteDomainNameCommandInput for command's input shape.
input
DeleteDomainNameCommandOutput for command's response shape.
response
config for AppSyncClient's config shape.
config
Deletes a custom
DomainName
object.Use a bare-bones client and the command you need to make an API call.
import { AppSyncClient, DeleteDomainNameCommand } from "@aws-sdk/client-appsync"; // ES Modules import // const { AppSyncClient, DeleteDomainNameCommand } = require("@aws-sdk/client-appsync"); // CommonJS import const client = new AppSyncClient(config); const command = new DeleteDomainNameCommand(input); const response = await client.send(command);
DeleteDomainNameCommandInput for command's
input
shape.DeleteDomainNameCommandOutput for command's
response
shape.config for AppSyncClient's
config
shape.