Class: Aws::CloudFront::Types::GetResponseHeadersPolicyRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudFront::Types::GetResponseHeadersPolicyRequest
- Defined in:
- gems/aws-sdk-cloudfront/lib/aws-sdk-cloudfront/types.rb
Overview
Note:
When making an API call, you may pass GetResponseHeadersPolicyRequest data as a hash:
{
id: "string", # required
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#id ⇒ String
The identifier for the response headers policy.
Instance Attribute Details
#id ⇒ String
The identifier for the response headers policy.
If the response headers policy is attached to a distribution’s cache
behavior, you can get the policy’s identifier using
ListDistributions
or GetDistribution
. If the response headers
policy is not attached to a cache behavior, you can get the
identifier using ListResponseHeadersPolicies
.
7422 7423 7424 7425 7426 |
# File 'gems/aws-sdk-cloudfront/lib/aws-sdk-cloudfront/types.rb', line 7422 class GetResponseHeadersPolicyRequest < Struct.new( :id) SENSITIVE = [] include Aws::Structure end |