List Distribution Tenants
cloudfront_list_distribution_tenants | R Documentation |
Lists the distribution tenants in your Amazon Web Services account¶
Description¶
Lists the distribution tenants in your Amazon Web Services account.
Usage¶
cloudfront_list_distribution_tenants(AssociationFilter, Marker,
MaxItems)
Arguments¶
AssociationFilter |
|
Marker |
The marker for the next set of results. |
MaxItems |
The maximum number of distribution tenants to return. |
Value¶
A list with the following syntax:
list(
NextMarker = "string",
DistributionTenantList = list(
list(
Id = "string",
DistributionId = "string",
Name = "string",
Arn = "string",
Domains = list(
list(
Domain = "string",
Status = "active"|"inactive"
)
),
ConnectionGroupId = "string",
Customizations = list(
WebAcl = list(
Action = "override"|"disable",
Arn = "string"
),
Certificate = list(
Arn = "string"
),
GeoRestrictions = list(
RestrictionType = "blacklist"|"whitelist"|"none",
Locations = list(
"string"
)
)
),
CreatedTime = as.POSIXct(
"2015-01-01"
),
LastModifiedTime = as.POSIXct(
"2015-01-01"
),
ETag = "string",
Enabled = TRUE|FALSE,
Status = "string"
)
)
)
Request syntax¶
svc$list_distribution_tenants(
AssociationFilter = list(
DistributionId = "string",
ConnectionGroupId = "string"
),
Marker = "string",
MaxItems = 123
)