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¶
customDomainCertificateArnThe custom domain name’s certificate Amazon resource name (ARN).
customDomainNameThe custom domain name associated with the workgroup.
maxResultsAn optional parameter that specifies the maximum number of results to return. You can use
nextTokento display the next page of results.nextTokenWhen
nextTokenis returned, there are more results available. The value ofnextTokenis 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"
)