Class: Aws::CloudFront::Types::DeletePublicKeyRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudFront::Types::DeletePublicKeyRequest
- Defined in:
- gems/aws-sdk-cloudfront/lib/aws-sdk-cloudfront/types.rb
Overview
Note:
When making an API call, you may pass DeletePublicKeyRequest data as a hash:
{
id: "string", # required
if_match: "string",
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#id ⇒ String
The ID of the public key you want to remove from CloudFront.
-
#if_match ⇒ String
The value of the
ETag
header that you received when retrieving the public key identity to delete.
Instance Attribute Details
#id ⇒ String
The ID of the public key you want to remove from CloudFront.
4274 4275 4276 4277 4278 4279 |
# File 'gems/aws-sdk-cloudfront/lib/aws-sdk-cloudfront/types.rb', line 4274 class DeletePublicKeyRequest < Struct.new( :id, :if_match) SENSITIVE = [] include Aws::Structure end |
#if_match ⇒ String
The value of the ETag
header that you received when retrieving the
public key identity to delete. For example: E2QWRUHAPOMQZL
.
4274 4275 4276 4277 4278 4279 |
# File 'gems/aws-sdk-cloudfront/lib/aws-sdk-cloudfront/types.rb', line 4274 class DeletePublicKeyRequest < Struct.new( :id, :if_match) SENSITIVE = [] include Aws::Structure end |