Class: Aws::CloudFront::Types::GetCachePolicyRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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

Instance Attribute Details

#idString

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`.

Returns:

  • (String)


6349
6350
6351
6352
6353
# File 'lib/aws-sdk-cloudfront/types.rb', line 6349

class GetCachePolicyRequest < Struct.new(
  :id)
  SENSITIVE = []
  include Aws::Structure
end