Get Service
| vpclattice_get_service | R Documentation | 
Retrieves information about the specified service¶
Description¶
Retrieves information about the specified service.
Usage¶
vpclattice_get_service(serviceIdentifier)
Arguments¶
serviceIdentifier | 
[required] The ID or ARN of the service.  | 
Value¶
A list with the following syntax:
list(
  arn = "string",
  authType = "NONE"|"AWS_IAM",
  certificateArn = "string",
  createdAt = as.POSIXct(
    "2015-01-01"
  ),
  customDomainName = "string",
  dnsEntry = list(
    domainName = "string",
    hostedZoneId = "string"
  ),
  failureCode = "string",
  failureMessage = "string",
  id = "string",
  lastUpdatedAt = as.POSIXct(
    "2015-01-01"
  ),
  name = "string",
  status = "ACTIVE"|"CREATE_IN_PROGRESS"|"DELETE_IN_PROGRESS"|"CREATE_FAILED"|"DELETE_FAILED"
)
Request syntax¶
svc$get_service(
  serviceIdentifier = "string"
)