Class: Aws::CloudFront::Types::DeleteKeyGroupRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudFront::Types::DeleteKeyGroupRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudfront/types.rb
Overview
Note:
When making an API call, you may pass DeleteKeyGroupRequest data as a hash:
{
id: "string", # required
if_match: "string",
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#id ⇒ String
The identifier of the key group that you are deleting.
-
#if_match ⇒ String
The version of the key group that you are deleting.
Instance Attribute Details
#id ⇒ String
The identifier of the key group that you are deleting. To get the identifier, use ‘ListKeyGroups`.
3973 3974 3975 3976 3977 3978 |
# File 'lib/aws-sdk-cloudfront/types.rb', line 3973 class DeleteKeyGroupRequest < Struct.new( :id, :if_match) SENSITIVE = [] include Aws::Structure end |
#if_match ⇒ String
The version of the key group that you are deleting. The version is the key group’s ‘ETag` value. To get the `ETag`, use `GetKeyGroup` or `GetKeyGroupConfig`.
3973 3974 3975 3976 3977 3978 |
# File 'lib/aws-sdk-cloudfront/types.rb', line 3973 class DeleteKeyGroupRequest < Struct.new( :id, :if_match) SENSITIVE = [] include Aws::Structure end |