import { Command as $Command } from "@smithy/smithy-client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { CustomDomainAssociationsMessage, DescribeCustomDomainAssociationsMessage } from "../models/models_0"; import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link DescribeCustomDomainAssociationsCommand}. */ export interface DescribeCustomDomainAssociationsCommandInput extends DescribeCustomDomainAssociationsMessage { } /** * @public * * The output of {@link DescribeCustomDomainAssociationsCommand}. */ export interface DescribeCustomDomainAssociationsCommandOutput extends CustomDomainAssociationsMessage, __MetadataBearer { } declare const DescribeCustomDomainAssociationsCommand_base: { new (input: DescribeCustomDomainAssociationsCommandInput): import("@smithy/smithy-client").CommandImpl; new (...[input]: [] | [DescribeCustomDomainAssociationsCommandInput]): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Contains information about custom domain associations for a cluster.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { RedshiftClient, DescribeCustomDomainAssociationsCommand } from "@aws-sdk/client-redshift"; // ES Modules import * // const { RedshiftClient, DescribeCustomDomainAssociationsCommand } = require("@aws-sdk/client-redshift"); // CommonJS import * // import type { RedshiftClientConfig } from "@aws-sdk/client-redshift"; * const config = {}; // type is RedshiftClientConfig * const client = new RedshiftClient(config); * const input = { // DescribeCustomDomainAssociationsMessage * CustomDomainName: "STRING_VALUE", * CustomDomainCertificateArn: "STRING_VALUE", * MaxRecords: Number("int"), * Marker: "STRING_VALUE", * }; * const command = new DescribeCustomDomainAssociationsCommand(input); * const response = await client.send(command); * // { // CustomDomainAssociationsMessage * // Marker: "STRING_VALUE", * // Associations: [ // AssociationList * // { // Association * // CustomDomainCertificateArn: "STRING_VALUE", * // CustomDomainCertificateExpiryDate: new Date("TIMESTAMP"), * // CertificateAssociations: [ // CertificateAssociationList * // { // CertificateAssociation * // CustomDomainName: "STRING_VALUE", * // ClusterIdentifier: "STRING_VALUE", * // }, * // ], * // }, * // ], * // }; * * ``` * * @param DescribeCustomDomainAssociationsCommandInput - {@link DescribeCustomDomainAssociationsCommandInput} * @returns {@link DescribeCustomDomainAssociationsCommandOutput} * @see {@link DescribeCustomDomainAssociationsCommandInput} for command's `input` shape. * @see {@link DescribeCustomDomainAssociationsCommandOutput} for command's `response` shape. * @see {@link RedshiftClientResolvedConfig | config} for RedshiftClient's `config` shape. * * @throws {@link CustomDomainAssociationNotFoundFault} (client fault) *

An error occurred. The custom domain name couldn't be found.

* * @throws {@link UnsupportedOperationFault} (client fault) *

The requested operation isn't supported.

* * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* * * @public */ export declare class DescribeCustomDomainAssociationsCommand extends DescribeCustomDomainAssociationsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DescribeCustomDomainAssociationsMessage; output: CustomDomainAssociationsMessage; }; sdk: { input: DescribeCustomDomainAssociationsCommandInput; output: DescribeCustomDomainAssociationsCommandOutput; }; }; }