import { _UnmarshalledDomainNameConfiguration } from "./_DomainNameConfiguration"; import * as __aws_sdk_types from "@aws-sdk/types"; /** * CreateDomainNameOutput shape */ export interface CreateDomainNameOutput extends __aws_sdk_types.MetadataBearer { /** *

The API mapping selection expression.

*/ ApiMappingSelectionExpression?: string; /** *

The name of the DomainName resource.

*/ DomainName?: string; /** *

The domain name configurations.

*/ DomainNameConfigurations?: Array<_UnmarshalledDomainNameConfiguration>; /** *

The key-value map of strings. The valid character set is [a-zA-Z+-=._:/]. The tag key can be up to 128 characters and must not start with aws:. The tag value can be up to 256 characters..

*/ Tags?: { [key: string]: string; }; /** * Metadata about the response received, including the HTTP status code, HTTP headers, and any request identifiers recognized by the SDK. */ $metadata: __aws_sdk_types.ResponseMetadata; }