Provides information about any domain controllers in your directory.
directoryservice_describe_domain_controllers(DirectoryId,
DomainControllerIds, NextToken, Limit)
A list with the following syntax:
list(
DomainControllers = list(
list(
DirectoryId = "string",
DomainControllerId = "string",
DnsIpAddr = "string",
VpcId = "string",
SubnetId = "string",
AvailabilityZone = "string",
Status = "Creating"|"Active"|"Impaired"|"Restoring"|"Deleting"|"Deleted"|"Failed",
StatusReason = "string",
LaunchTime = as.POSIXct(
"2015-01-01"
),
StatusLastUpdatedDateTime = as.POSIXct(
"2015-01-01"
)
)
),
NextToken = "string"
)
[required] Identifier of the directory for which to retrieve the domain controller information.
A list of identifiers for the domain controllers whose information will be provided.
The DescribeDomainControllers.NextToken value from a previous call to
describe_domain_controllers
.
Pass null if this is the first call.
The maximum number of items to return.
svc$describe_domain_controllers(
DirectoryId = "string",
DomainControllerIds = list(
"string"
),
NextToken = "string",
Limit = 123
)