Skip to content

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

CustomDomainName

The custom domain name for the custom domain association.

CustomDomainCertificateArn

The certificate Amazon Resource Name (ARN) for the custom domain association.

MaxRecords

The maximum records setting for the associated custom domain.

Marker

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

Request syntax

svc$describe_custom_domain_associations(
  CustomDomainName = "string",
  CustomDomainCertificateArn = "string",
  MaxRecords = 123,
  Marker = "string"
)