Skip to content

Delete Vpc Origin

cloudfront_delete_vpc_origin R Documentation

Delete an Amazon CloudFront VPC origin

Description

Delete an Amazon CloudFront VPC origin.

Usage

cloudfront_delete_vpc_origin(Id, IfMatch)

Arguments

Id

[required] The VPC origin ID.

IfMatch

[required] The VPC origin to delete, if a match occurs.

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$delete_vpc_origin(
  Id = "string",
  IfMatch = "string"
)