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