Skip to content

List Custom Domain Associations

redshiftserverless_list_custom_domain_associations R Documentation

Lists custom domain associations for Amazon Redshift Serverless

Description

Lists custom domain associations for Amazon Redshift Serverless.

Usage

redshiftserverless_list_custom_domain_associations(
  customDomainCertificateArn, customDomainName, maxResults, nextToken)

Arguments

customDomainCertificateArn

The custom domain name’s certificate Amazon resource name (ARN).

customDomainName

The custom domain name associated with the workgroup.

maxResults

An optional parameter that specifies the maximum number of results to return. You can use nextToken to display the next page of results.

nextToken

When nextToken is returned, there are more results available. The value of nextToken is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page.

Value

A list with the following syntax:

list(
  associations = list(
    list(
      customDomainCertificateArn = "string",
      customDomainCertificateExpiryTime = as.POSIXct(
        "2015-01-01"
      ),
      customDomainName = "string",
      workgroupName = "string"
    )
  ),
  nextToken = "string"
)

Request syntax

svc$list_custom_domain_associations(
  customDomainCertificateArn = "string",
  customDomainName = "string",
  maxResults = 123,
  nextToken = "string"
)