List Domains
| worklink_list_domains | R Documentation |
Retrieves a list of domains associated to a specified fleet¶
Description¶
Retrieves a list of domains associated to a specified fleet.
Usage¶
Arguments¶
FleetArn[required] The ARN of the fleet.
NextTokenThe pagination token used to retrieve the next page of results for this operation. If this value is null, it retrieves the first page.
MaxResultsThe maximum number of results to be included in the next page.
Value¶
A list with the following syntax:
list(
Domains = list(
list(
DomainName = "string",
DisplayName = "string",
CreatedTime = as.POSIXct(
"2015-01-01"
),
DomainStatus = "PENDING_VALIDATION"|"ASSOCIATING"|"ACTIVE"|"INACTIVE"|"DISASSOCIATING"|"DISASSOCIATED"|"FAILED_TO_ASSOCIATE"|"FAILED_TO_DISASSOCIATE"
)
),
NextToken = "string"
)