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 |
When |
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"
)