Skip to content

Get Vpc Origin

cloudfront_get_vpc_origin R Documentation

Get the details of an Amazon CloudFront VPC origin

Description

Get the details of an Amazon CloudFront VPC origin.

Usage

cloudfront_get_vpc_origin(Id)

Arguments

Id

[required] The VPC origin ID.

Value

A list with the following syntax:

list(
  VpcOrigin = list(
    Id = "string",
    Arn = "string",
    Status = "string",
    CreatedTime = as.POSIXct(
      "2015-01-01"
    ),
    LastModifiedTime = as.POSIXct(
      "2015-01-01"
    ),
    VpcOriginEndpointConfig = list(
      Name = "string",
      Arn = "string",
      HTTPPort = 123,
      HTTPSPort = 123,
      OriginProtocolPolicy = "http-only"|"match-viewer"|"https-only",
      OriginSslProtocols = list(
        Quantity = 123,
        Items = list(
          "SSLv3"|"TLSv1"|"TLSv1.1"|"TLSv1.2"
        )
      )
    )
  ),
  ETag = "string"
)

Request syntax

svc$get_vpc_origin(
  Id = "string"
)