List Streaming Distributions
cloudfront_list_streaming_distributions | R Documentation |
List streaming distributions¶
Description¶
List streaming distributions.
Usage¶
Arguments¶
Marker
The value that you provided for the
Marker
request parameter.MaxItems
The value that you provided for the
MaxItems
request parameter.
Value¶
A list with the following syntax:
list(
StreamingDistributionList = list(
Marker = "string",
NextMarker = "string",
MaxItems = 123,
IsTruncated = TRUE|FALSE,
Quantity = 123,
Items = list(
list(
Id = "string",
ARN = "string",
Status = "string",
LastModifiedTime = as.POSIXct(
"2015-01-01"
),
DomainName = "string",
S3Origin = list(
DomainName = "string",
OriginAccessIdentity = "string"
),
Aliases = list(
Quantity = 123,
Items = list(
"string"
)
),
TrustedSigners = list(
Enabled = TRUE|FALSE,
Quantity = 123,
Items = list(
"string"
)
),
Comment = "string",
PriceClass = "PriceClass_100"|"PriceClass_200"|"PriceClass_All",
Enabled = TRUE|FALSE
)
)
)
)