Skip to content

Describe Domain

voiceid_describe_domain R Documentation

Describes the specified domain

Description

Describes the specified domain.

Usage

voiceid_describe_domain(DomainId)

Arguments

DomainId

[required] The identifier of the domain that you are describing.

Value

A list with the following syntax:

list(
  Domain = list(
    Arn = "string",
    CreatedAt = as.POSIXct(
      "2015-01-01"
    ),
    Description = "string",
    DomainId = "string",
    DomainStatus = "ACTIVE"|"PENDING"|"SUSPENDED",
    Name = "string",
    ServerSideEncryptionConfiguration = list(
      KmsKeyId = "string"
    ),
    ServerSideEncryptionUpdateDetails = list(
      Message = "string",
      OldKmsKeyId = "string",
      UpdateStatus = "IN_PROGRESS"|"COMPLETED"|"FAILED"
    ),
    UpdatedAt = as.POSIXct(
      "2015-01-01"
    ),
    WatchlistDetails = list(
      DefaultWatchlistId = "string"
    )
  )
)

Request syntax

svc$describe_domain(
  DomainId = "string"
)