Describe Custom Domain Associations
| redshift_describe_custom_domain_associations | R Documentation |
Contains information about custom domain associations for a cluster¶
Description¶
Contains information about custom domain associations for a cluster.
Usage¶
redshift_describe_custom_domain_associations(CustomDomainName,
CustomDomainCertificateArn, MaxRecords, Marker)
Arguments¶
CustomDomainNameThe custom domain name for the custom domain association.
CustomDomainCertificateArnThe certificate Amazon Resource Name (ARN) for the custom domain association.
MaxRecordsThe maximum records setting for the associated custom domain.
MarkerThe marker for the custom domain association.
Value¶
A list with the following syntax:
list(
Marker = "string",
Associations = list(
list(
CustomDomainCertificateArn = "string",
CustomDomainCertificateExpiryDate = as.POSIXct(
"2015-01-01"
),
CertificateAssociations = list(
list(
CustomDomainName = "string",
ClusterIdentifier = "string"
)
)
)
)
)