Skip to content

Describe Domain

worklink_describe_domain R Documentation

Provides information about the domain

Description

Provides information about the domain.

Usage

worklink_describe_domain(FleetArn, DomainName)

Arguments

FleetArn

[required] The ARN of the fleet.

DomainName

[required] The name of the domain.

Value

A list with the following syntax:

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",
  AcmCertificateArn = "string"
)

Request syntax

svc$describe_domain(
  FleetArn = "string",
  DomainName = "string"
)