- Navigation GuideYou are on a Command (operation) page with structural examples. Use the navigation breadcrumb if you would like to return to the Client landing page.
DeleteKeyGroupCommand
Deletes a key group.
You cannot delete a key group that is referenced in a cache behavior. First update your distributions to remove the key group from all cache behaviors, then delete the key group.
To delete a key group, you must provide the key group's identifier and version. To get these values, use ListKeyGroups
followed by GetKeyGroup
or GetKeyGroupConfig
.
Example Syntax
Use a bare-bones client and the command you need to make an API call.
import { CloudFrontClient, DeleteKeyGroupCommand } from "@aws-sdk/client-cloudfront"; // ES Modules import
// const { CloudFrontClient, DeleteKeyGroupCommand } = require("@aws-sdk/client-cloudfront"); // CommonJS import
const client = new CloudFrontClient(config);
const input = { // DeleteKeyGroupRequest
Id: "STRING_VALUE", // required
IfMatch: "STRING_VALUE",
};
const command = new DeleteKeyGroupCommand(input);
const response = await client.send(command);
// {};
DeleteKeyGroupCommand Input
Parameter | Type | Description |
---|
Parameter | Type | Description |
---|---|---|
Id Required | string | undefined | The identifier of the key group that you are deleting. To get the identifier, use |
IfMatch | string | undefined | The version of the key group that you are deleting. The version is the key group's |
DeleteKeyGroupCommand Output
Parameter | Type | Description |
---|
Parameter | Type | Description |
---|---|---|
$metadata Required | ResponseMetadata | Metadata pertaining to this request. |
Throws
Name | Fault | Details |
---|
Name | Fault | Details |
---|---|---|
InvalidIfMatchVersion | client | The |
NoSuchResource | client | A resource that was specified is not valid. |
PreconditionFailed | client | The precondition in one or more of the request fields evaluated to |
ResourceInUse | client | Cannot delete this resource because it is in use. |
CloudFrontServiceException | Base exception class for all service exceptions from CloudFront service. |