Class: Aws::CloudFront::Types::DeleteOriginRequestPolicyRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudFront::Types::DeleteOriginRequestPolicyRequest
- Defined in:
- gems/aws-sdk-cloudfront/lib/aws-sdk-cloudfront/types.rb
Overview
Note:
When making an API call, you may pass DeleteOriginRequestPolicyRequest data as a hash:
{
id: "string", # required
if_match: "string",
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#id ⇒ String
The unique identifier for the origin request policy that you are deleting.
-
#if_match ⇒ String
The version of the origin request policy that you are deleting.
Instance Attribute Details
#id ⇒ String
The unique identifier for the origin request policy that you are
deleting. To get the identifier, you can use
ListOriginRequestPolicies
.
4248 4249 4250 4251 4252 4253 |
# File 'gems/aws-sdk-cloudfront/lib/aws-sdk-cloudfront/types.rb', line 4248 class DeleteOriginRequestPolicyRequest < Struct.new( :id, :if_match) SENSITIVE = [] include Aws::Structure end |
#if_match ⇒ String
The version of the origin request policy that you are deleting. The
version is the origin request policy’s ETag
value, which you can
get using ListOriginRequestPolicies
, GetOriginRequestPolicy
, or
GetOriginRequestPolicyConfig
.
4248 4249 4250 4251 4252 4253 |
# File 'gems/aws-sdk-cloudfront/lib/aws-sdk-cloudfront/types.rb', line 4248 class DeleteOriginRequestPolicyRequest < Struct.new( :id, :if_match) SENSITIVE = [] include Aws::Structure end |