Class: Aws::CloudFront::Types::DeletePublicKeyRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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",
}

Instance Attribute Summary collapse

Instance Attribute Details

#idString

The ID of the public key you want to remove from CloudFront.

Returns:

  • (String)


2557
2558
2559
2560
2561
# File 'lib/aws-sdk-cloudfront/types.rb', line 2557

class DeletePublicKeyRequest < Struct.new(
  :id,
  :if_match)
  include Aws::Structure
end

#if_matchString

The value of the ‘ETag` header that you received when retrieving the public key identity to delete. For example: `E2QWRUHAPOMQZL`.

Returns:

  • (String)


2557
2558
2559
2560
2561
# File 'lib/aws-sdk-cloudfront/types.rb', line 2557

class DeletePublicKeyRequest < Struct.new(
  :id,
  :if_match)
  include Aws::Structure
end