Class: Aws::CloudFront::Types::DeleteFieldLevelEncryptionProfileRequest

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 DeleteFieldLevelEncryptionProfileRequest data as a hash:

{
  id: "string", # required
  if_match: "string",
}

Instance Attribute Summary collapse

Instance Attribute Details

#idString

Request the ID of the profile you want to delete from CloudFront.

Returns:

  • (String)


2532
2533
2534
2535
2536
# File 'lib/aws-sdk-cloudfront/types.rb', line 2532

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

#if_matchString

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

Returns:

  • (String)


2532
2533
2534
2535
2536
# File 'lib/aws-sdk-cloudfront/types.rb', line 2532

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