List Domain Conflicts
cloudfront_list_domain_conflicts | R Documentation |
Lists existing domain associations that conflict with the domain that you specify¶
Description¶
Lists existing domain associations that conflict with the domain that you specify.
You can use this API operation when transferring domains to identify potential domain conflicts. Domain conflicts must be resolved first before they can be moved.
Usage¶
cloudfront_list_domain_conflicts(Domain,
DomainControlValidationResource, MaxItems, Marker)
Arguments¶
Domain |
[required] The domain to check for conflicts. |
DomainControlValidationResource |
[required] The distribution resource identifier. This can be the distribution or distribution tenant that has a valid certificate, which covers the domain that you specify. |
MaxItems |
The maximum number of domain conflicts to return. |
Marker |
The marker for the next set of domain conflicts. |
Value¶
A list with the following syntax:
list(
DomainConflicts = list(
list(
Domain = "string",
ResourceType = "distribution"|"distribution-tenant",
ResourceId = "string",
AccountId = "string"
)
),
NextMarker = "string"
)
Request syntax¶
svc$list_domain_conflicts(
Domain = "string",
DomainControlValidationResource = list(
DistributionId = "string",
DistributionTenantId = "string"
),
MaxItems = 123,
Marker = "string"
)