Class: Aws::CloudFront::Types::DeleteResponseHeadersPolicyRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudFront::Types::DeleteResponseHeadersPolicyRequest
- Defined in:
- gems/aws-sdk-cloudfront/lib/aws-sdk-cloudfront/types.rb
Overview
Note:
When making an API call, you may pass DeleteResponseHeadersPolicyRequest data as a hash:
{
id: "string", # required
if_match: "string",
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#id ⇒ String
The identifier for the response headers policy that you are deleting.
-
#if_match ⇒ String
The version of the response headers policy that you are deleting.
Instance Attribute Details
#id ⇒ String
The identifier for the response headers policy that you are deleting.
To get the identifier, you can use ListResponseHeadersPolicies
.
4332 4333 4334 4335 4336 4337 |
# File 'gems/aws-sdk-cloudfront/lib/aws-sdk-cloudfront/types.rb', line 4332 class DeleteResponseHeadersPolicyRequest < Struct.new( :id, :if_match) SENSITIVE = [] include Aws::Structure end |
#if_match ⇒ String
The version of the response headers policy that you are deleting.
The version is the response headers policy’s ETag
value, which you
can get using ListResponseHeadersPolicies
,
GetResponseHeadersPolicy
, or GetResponseHeadersPolicyConfig
.
4332 4333 4334 4335 4336 4337 |
# File 'gems/aws-sdk-cloudfront/lib/aws-sdk-cloudfront/types.rb', line 4332 class DeleteResponseHeadersPolicyRequest < Struct.new( :id, :if_match) SENSITIVE = [] include Aws::Structure end |