Create Custom Domain Association
redshift_create_custom_domain_association | R Documentation |
Used to create a custom domain name for a cluster¶
Description¶
Used to create a custom domain name for a cluster. Properties include the custom domain name, the cluster the custom domain is associated with, and the certificate Amazon Resource Name (ARN).
Usage¶
redshift_create_custom_domain_association(CustomDomainName,
CustomDomainCertificateArn, ClusterIdentifier)
Arguments¶
CustomDomainName |
[required] The custom domain name for a custom domain association. |
CustomDomainCertificateArn |
[required] The certificate Amazon Resource Name (ARN) for the custom domain name association. |
ClusterIdentifier |
[required] The cluster identifier that the custom domain is associated with. |
Value¶
A list with the following syntax:
list(
CustomDomainName = "string",
CustomDomainCertificateArn = "string",
ClusterIdentifier = "string",
CustomDomainCertExpiryTime = "string"
)
Request syntax¶
svc$create_custom_domain_association(
CustomDomainName = "string",
CustomDomainCertificateArn = "string",
ClusterIdentifier = "string"
)