List Vpc Origins
cloudfront_list_vpc_origins | R Documentation |
List the CloudFront VPC origins in your account¶
Description¶
List the CloudFront VPC origins in your account.
Usage¶
Arguments¶
Marker
The marker associated with the VPC origins list.
MaxItems
The maximum number of items included in the list.
Value¶
A list with the following syntax:
list(
VpcOriginList = list(
Marker = "string",
NextMarker = "string",
MaxItems = 123,
IsTruncated = TRUE|FALSE,
Quantity = 123,
Items = list(
list(
Id = "string",
Name = "string",
Status = "string",
CreatedTime = as.POSIXct(
"2015-01-01"
),
LastModifiedTime = as.POSIXct(
"2015-01-01"
),
Arn = "string",
OriginEndpointArn = "string"
)
)
)
)