Skip to content

Get Origin Request Policy Config

cloudfront_get_origin_request_policy_config R Documentation

Gets an origin request policy configuration

Description

Gets an origin request policy configuration.

To get an origin request policy configuration, you must provide the policy's identifier. If the origin request policy is attached to a distribution's cache behavior, you can get the policy's identifier using list_distributions or get_distribution. If the origin request policy is not attached to a cache behavior, you can get the identifier using list_origin_request_policies.

Usage

cloudfront_get_origin_request_policy_config(Id)

Arguments

Id

[required] 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 list_distributions or get_distribution. If the origin request policy is not attached to a cache behavior, you can get the identifier using list_origin_request_policies.

Value

A list with the following syntax:

list(
  OriginRequestPolicyConfig = list(
    Comment = "string",
    Name = "string",
    HeadersConfig = list(
      HeaderBehavior = "none"|"whitelist"|"allViewer"|"allViewerAndWhitelistCloudFront"|"allExcept",
      Headers = list(
        Quantity = 123,
        Items = list(
          "string"
        )
      )
    ),
    CookiesConfig = list(
      CookieBehavior = "none"|"whitelist"|"all"|"allExcept",
      Cookies = list(
        Quantity = 123,
        Items = list(
          "string"
        )
      )
    ),
    QueryStringsConfig = list(
      QueryStringBehavior = "none"|"whitelist"|"all"|"allExcept",
      QueryStrings = list(
        Quantity = 123,
        Items = list(
          "string"
        )
      )
    )
  ),
  ETag = "string"
)

Request syntax

svc$get_origin_request_policy_config(
  Id = "string"
)