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