List Distribution Tenants By Customization
cloudfront_list_distribution_tenants_by_customization | R Documentation |
Lists distribution tenants by the customization that you specify¶
Description¶
Lists distribution tenants by the customization that you specify.
You must specify either the CertificateArn
parameter or WebACLArn
parameter, but not both in the same request.
Usage¶
cloudfront_list_distribution_tenants_by_customization(WebACLArn,
CertificateArn, Marker, MaxItems)
Arguments¶
WebACLArn |
Filter by the ARN of the associated WAF web ACL. |
CertificateArn |
Filter by the ARN of the associated ACM certificate. |
Marker |
The marker for the next set of results. |
MaxItems |
The maximum number of distribution tenants to return by the specified customization. |
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_by_customization(
WebACLArn = "string",
CertificateArn = "string",
Marker = "string",
MaxItems = 123
)