Get Distribution Tenant By Domain
cloudfront_get_distribution_tenant_by_domain | R Documentation |
Gets information about a distribution tenant by the associated domain¶
Description¶
Gets information about a distribution tenant by the associated domain.
Usage¶
cloudfront_get_distribution_tenant_by_domain(Domain)
Arguments¶
Domain |
[required] A domain name associated with the target distribution tenant. |
Value¶
A list with the following syntax:
list(
DistributionTenant = list(
Id = "string",
DistributionId = "string",
Name = "string",
Arn = "string",
Domains = list(
list(
Domain = "string",
Status = "active"|"inactive"
)
),
Tags = list(
Items = list(
list(
Key = "string",
Value = "string"
)
)
),
Customizations = list(
WebAcl = list(
Action = "override"|"disable",
Arn = "string"
),
Certificate = list(
Arn = "string"
),
GeoRestrictions = list(
RestrictionType = "blacklist"|"whitelist"|"none",
Locations = list(
"string"
)
)
),
Parameters = list(
list(
Name = "string",
Value = "string"
)
),
ConnectionGroupId = "string",
CreatedTime = as.POSIXct(
"2015-01-01"
),
LastModifiedTime = as.POSIXct(
"2015-01-01"
),
Enabled = TRUE|FALSE,
Status = "string"
),
ETag = "string"
)
Request syntax¶
svc$get_distribution_tenant_by_domain(
Domain = "string"
)