Get Distribution Tenant
cloudfront_get_distribution_tenant | R Documentation |
Gets information about a distribution tenant¶
Description¶
Gets information about a distribution tenant.
Usage¶
cloudfront_get_distribution_tenant(Identifier)
Arguments¶
Identifier |
[required] The identifier of the distribution tenant. You can specify the ARN, ID, or name of the 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(
Identifier = "string"
)