Class: Aws::CloudFront::Types::DeleteFieldLevelEncryptionProfileRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudFront::Types::DeleteFieldLevelEncryptionProfileRequest
- 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",
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#id ⇒ String
Request the ID of the profile you want to delete from CloudFront.
-
#if_match ⇒ String
The value of the ‘ETag` header that you received when retrieving the profile to delete.
Instance Attribute Details
#id ⇒ String
Request the ID of the profile you want to delete from CloudFront.
3919 3920 3921 3922 3923 3924 |
# File 'lib/aws-sdk-cloudfront/types.rb', line 3919 class DeleteFieldLevelEncryptionProfileRequest < 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 profile to delete. For example: `E2QWRUHAPOMQZL`.
3919 3920 3921 3922 3923 3924 |
# File 'lib/aws-sdk-cloudfront/types.rb', line 3919 class DeleteFieldLevelEncryptionProfileRequest < Struct.new( :id, :if_match) SENSITIVE = [] include Aws::Structure end |