import { Command as $Command } from "@smithy/core/client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { CreateDBClusterMessage, CreateDBClusterResult } from "../models/models_0"; import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link CreateDBClusterCommand}. */ export interface CreateDBClusterCommandInput extends CreateDBClusterMessage { } /** * @public * * The output of {@link CreateDBClusterCommand}. */ export interface CreateDBClusterCommandOutput extends CreateDBClusterResult, __MetadataBearer { } declare const CreateDBClusterCommand_base: { new (input: CreateDBClusterCommandInput): import("@smithy/core/client").CommandImpl; new (input: CreateDBClusterCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): { [x: string]: unknown; }; }; /** *

Creates a new Amazon Aurora DB cluster or Multi-AZ DB cluster.

If you create an Aurora DB cluster, the request creates an empty cluster. You must explicitly create the writer instance for your DB cluster using the CreateDBInstance operation. If you create a Multi-AZ DB cluster, the request creates a writer and two reader DB instances for you, each in a different Availability Zone.

You can use the ReplicationSourceIdentifier parameter to create an Amazon Aurora DB cluster as a read replica of another DB cluster or Amazon RDS for MySQL or PostgreSQL DB instance. For more information about Amazon Aurora, see What is Amazon Aurora? in the Amazon Aurora User Guide.

You can also use the ReplicationSourceIdentifier parameter to create a Multi-AZ DB cluster read replica with an RDS for MySQL or PostgreSQL DB instance as the source. For more information about Multi-AZ DB clusters, see Multi-AZ DB cluster deployments in the Amazon RDS User Guide.

You can use the WithExpressConfiguration parameter to create an Aurora DB Cluster with express configuration and create cluster in seconds. Express configuration provides a cluster with a writer instance and feature specific values set to all other input parameters of this API.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { RDSClient, CreateDBClusterCommand } from "@aws-sdk/client-rds"; // ES Modules import * // const { RDSClient, CreateDBClusterCommand } = require("@aws-sdk/client-rds"); // CommonJS import * // import type { RDSClientConfig } from "@aws-sdk/client-rds"; * const config = {}; // type is RDSClientConfig * const client = new RDSClient(config); * const input = { // CreateDBClusterMessage * AvailabilityZones: [ // AvailabilityZones * "STRING_VALUE", * ], * BackupRetentionPeriod: Number("int"), * CharacterSetName: "STRING_VALUE", * DatabaseName: "STRING_VALUE", * DBClusterIdentifier: "STRING_VALUE", // required * DBClusterParameterGroupName: "STRING_VALUE", * VpcSecurityGroupIds: [ // VpcSecurityGroupIdList * "STRING_VALUE", * ], * DBSubnetGroupName: "STRING_VALUE", * Engine: "STRING_VALUE", // required * EngineVersion: "STRING_VALUE", * Port: Number("int"), * MasterUsername: "STRING_VALUE", * MasterUserPassword: "STRING_VALUE", * OptionGroupName: "STRING_VALUE", * PreferredBackupWindow: "STRING_VALUE", * PreferredMaintenanceWindow: "STRING_VALUE", * ReplicationSourceIdentifier: "STRING_VALUE", * Tags: [ // TagList * { // Tag * Key: "STRING_VALUE", * Value: "STRING_VALUE", * }, * ], * StorageEncrypted: true || false, * KmsKeyId: "STRING_VALUE", * PreSignedUrl: "STRING_VALUE", * EnableIAMDatabaseAuthentication: true || false, * BacktrackWindow: Number("long"), * EnableCloudwatchLogsExports: [ // LogTypeList * "STRING_VALUE", * ], * EngineMode: "STRING_VALUE", * ScalingConfiguration: { // ScalingConfiguration * MinCapacity: Number("int"), * MaxCapacity: Number("int"), * AutoPause: true || false, * SecondsUntilAutoPause: Number("int"), * TimeoutAction: "STRING_VALUE", * SecondsBeforeTimeout: Number("int"), * }, * RdsCustomClusterConfiguration: { // RdsCustomClusterConfiguration * InterconnectSubnetId: "STRING_VALUE", * TransitGatewayMulticastDomainId: "STRING_VALUE", * ReplicaMode: "open-read-only" || "mounted", * }, * DBClusterInstanceClass: "STRING_VALUE", * AllocatedStorage: Number("int"), * StorageType: "STRING_VALUE", * Iops: Number("int"), * PubliclyAccessible: true || false, * AutoMinorVersionUpgrade: true || false, * DeletionProtection: true || false, * GlobalClusterIdentifier: "STRING_VALUE", * EnableHttpEndpoint: true || false, * CopyTagsToSnapshot: true || false, * Domain: "STRING_VALUE", * DomainIAMRoleName: "STRING_VALUE", * EnableGlobalWriteForwarding: true || false, * NetworkType: "STRING_VALUE", * ServerlessV2ScalingConfiguration: { // ServerlessV2ScalingConfiguration * MinCapacity: Number("double"), * MaxCapacity: Number("double"), * SecondsUntilAutoPause: Number("int"), * }, * MonitoringInterval: Number("int"), * MonitoringRoleArn: "STRING_VALUE", * DatabaseInsightsMode: "standard" || "advanced", * EnablePerformanceInsights: true || false, * PerformanceInsightsKMSKeyId: "STRING_VALUE", * PerformanceInsightsRetentionPeriod: Number("int"), * EnableLimitlessDatabase: true || false, * ClusterScalabilityType: "standard" || "limitless", * DBSystemId: "STRING_VALUE", * ManageMasterUserPassword: true || false, * EnableLocalWriteForwarding: true || false, * MasterUserSecretKmsKeyId: "STRING_VALUE", * CACertificateIdentifier: "STRING_VALUE", * EngineLifecycleSupport: "STRING_VALUE", * TagSpecifications: [ // TagSpecificationList * { // TagSpecification * ResourceType: "STRING_VALUE", * Tags: [ * { * Key: "STRING_VALUE", * Value: "STRING_VALUE", * }, * ], * }, * ], * MasterUserAuthenticationType: "password" || "iam-db-auth", * WithExpressConfiguration: true || false, * }; * const command = new CreateDBClusterCommand(input); * const response = await client.send(command); * // { // CreateDBClusterResult * // DBCluster: { // DBCluster * // AllocatedStorage: Number("int"), * // AvailabilityZones: [ // AvailabilityZones * // "STRING_VALUE", * // ], * // BackupRetentionPeriod: Number("int"), * // CharacterSetName: "STRING_VALUE", * // DatabaseName: "STRING_VALUE", * // DBClusterIdentifier: "STRING_VALUE", * // DBClusterParameterGroup: "STRING_VALUE", * // DBSubnetGroup: "STRING_VALUE", * // Status: "STRING_VALUE", * // PercentProgress: "STRING_VALUE", * // EarliestRestorableTime: new Date("TIMESTAMP"), * // Endpoint: "STRING_VALUE", * // ReaderEndpoint: "STRING_VALUE", * // CustomEndpoints: [ // StringList * // "STRING_VALUE", * // ], * // MultiAZ: true || false, * // Engine: "STRING_VALUE", * // EngineVersion: "STRING_VALUE", * // LatestRestorableTime: new Date("TIMESTAMP"), * // Port: Number("int"), * // MasterUsername: "STRING_VALUE", * // DBClusterOptionGroupMemberships: [ // DBClusterOptionGroupMemberships * // { // DBClusterOptionGroupStatus * // DBClusterOptionGroupName: "STRING_VALUE", * // Status: "STRING_VALUE", * // }, * // ], * // PreferredBackupWindow: "STRING_VALUE", * // PreferredMaintenanceWindow: "STRING_VALUE", * // UpgradeRolloutOrder: "first" || "second" || "last", * // ReplicationSourceIdentifier: "STRING_VALUE", * // ReadReplicaIdentifiers: [ // ReadReplicaIdentifierList * // "STRING_VALUE", * // ], * // StatusInfos: [ // DBClusterStatusInfoList * // { // DBClusterStatusInfo * // StatusType: "STRING_VALUE", * // Normal: true || false, * // Status: "STRING_VALUE", * // Message: "STRING_VALUE", * // }, * // ], * // DBClusterMembers: [ // DBClusterMemberList * // { // DBClusterMember * // DBInstanceIdentifier: "STRING_VALUE", * // IsClusterWriter: true || false, * // DBClusterParameterGroupStatus: "STRING_VALUE", * // PromotionTier: Number("int"), * // }, * // ], * // VpcSecurityGroups: [ // VpcSecurityGroupMembershipList * // { // VpcSecurityGroupMembership * // VpcSecurityGroupId: "STRING_VALUE", * // Status: "STRING_VALUE", * // }, * // ], * // HostedZoneId: "STRING_VALUE", * // StorageEncrypted: true || false, * // StorageEncryptionType: "none" || "sse-kms" || "sse-rds", * // KmsKeyId: "STRING_VALUE", * // DbClusterResourceId: "STRING_VALUE", * // DBClusterArn: "STRING_VALUE", * // AssociatedRoles: [ // DBClusterRoles * // { // DBClusterRole * // RoleArn: "STRING_VALUE", * // Status: "STRING_VALUE", * // FeatureName: "STRING_VALUE", * // }, * // ], * // IAMDatabaseAuthenticationEnabled: true || false, * // CloneGroupId: "STRING_VALUE", * // ClusterCreateTime: new Date("TIMESTAMP"), * // EarliestBacktrackTime: new Date("TIMESTAMP"), * // BacktrackWindow: Number("long"), * // BacktrackConsumedChangeRecords: Number("long"), * // EnabledCloudwatchLogsExports: [ // LogTypeList * // "STRING_VALUE", * // ], * // Capacity: Number("int"), * // PendingModifiedValues: { // ClusterPendingModifiedValues * // PendingCloudwatchLogsExports: { // PendingCloudwatchLogsExports * // LogTypesToEnable: [ * // "STRING_VALUE", * // ], * // LogTypesToDisable: [ * // "STRING_VALUE", * // ], * // }, * // DBClusterIdentifier: "STRING_VALUE", * // MasterUserPassword: "STRING_VALUE", * // IAMDatabaseAuthenticationEnabled: true || false, * // EngineVersion: "STRING_VALUE", * // BackupRetentionPeriod: Number("int"), * // StorageType: "STRING_VALUE", * // AllocatedStorage: Number("int"), * // RdsCustomClusterConfiguration: { // RdsCustomClusterConfiguration * // InterconnectSubnetId: "STRING_VALUE", * // TransitGatewayMulticastDomainId: "STRING_VALUE", * // ReplicaMode: "open-read-only" || "mounted", * // }, * // Iops: Number("int"), * // CertificateDetails: { // CertificateDetails * // CAIdentifier: "STRING_VALUE", * // ValidTill: new Date("TIMESTAMP"), * // }, * // }, * // EngineMode: "STRING_VALUE", * // ScalingConfigurationInfo: { // ScalingConfigurationInfo * // MinCapacity: Number("int"), * // MaxCapacity: Number("int"), * // AutoPause: true || false, * // SecondsUntilAutoPause: Number("int"), * // TimeoutAction: "STRING_VALUE", * // SecondsBeforeTimeout: Number("int"), * // }, * // RdsCustomClusterConfiguration: { * // InterconnectSubnetId: "STRING_VALUE", * // TransitGatewayMulticastDomainId: "STRING_VALUE", * // ReplicaMode: "open-read-only" || "mounted", * // }, * // DBClusterInstanceClass: "STRING_VALUE", * // StorageType: "STRING_VALUE", * // Iops: Number("int"), * // StorageThroughput: Number("int"), * // IOOptimizedNextAllowedModificationTime: new Date("TIMESTAMP"), * // PubliclyAccessible: true || false, * // AutoMinorVersionUpgrade: true || false, * // DeletionProtection: true || false, * // HttpEndpointEnabled: true || false, * // ActivityStreamMode: "sync" || "async", * // ActivityStreamStatus: "stopped" || "starting" || "started" || "stopping", * // ActivityStreamKmsKeyId: "STRING_VALUE", * // ActivityStreamKinesisStreamName: "STRING_VALUE", * // CopyTagsToSnapshot: true || false, * // CrossAccountClone: true || false, * // DomainMemberships: [ // DomainMembershipList * // { // DomainMembership * // Domain: "STRING_VALUE", * // Status: "STRING_VALUE", * // FQDN: "STRING_VALUE", * // IAMRoleName: "STRING_VALUE", * // OU: "STRING_VALUE", * // AuthSecretArn: "STRING_VALUE", * // DnsIps: [ * // "STRING_VALUE", * // ], * // }, * // ], * // TagList: [ // TagList * // { // Tag * // Key: "STRING_VALUE", * // Value: "STRING_VALUE", * // }, * // ], * // GlobalClusterIdentifier: "STRING_VALUE", * // GlobalWriteForwardingStatus: "enabled" || "disabled" || "enabling" || "disabling" || "unknown", * // GlobalWriteForwardingRequested: true || false, * // NetworkType: "STRING_VALUE", * // AutomaticRestartTime: new Date("TIMESTAMP"), * // ServerlessV2ScalingConfiguration: { // ServerlessV2ScalingConfigurationInfo * // MinCapacity: Number("double"), * // MaxCapacity: Number("double"), * // SecondsUntilAutoPause: Number("int"), * // }, * // ServerlessV2PlatformVersion: "STRING_VALUE", * // MonitoringInterval: Number("int"), * // MonitoringRoleArn: "STRING_VALUE", * // DatabaseInsightsMode: "standard" || "advanced", * // PerformanceInsightsEnabled: true || false, * // PerformanceInsightsKMSKeyId: "STRING_VALUE", * // PerformanceInsightsRetentionPeriod: Number("int"), * // DBSystemId: "STRING_VALUE", * // MasterUserSecret: { // MasterUserSecret * // SecretArn: "STRING_VALUE", * // SecretStatus: "STRING_VALUE", * // KmsKeyId: "STRING_VALUE", * // }, * // LocalWriteForwardingStatus: "enabled" || "disabled" || "enabling" || "disabling" || "requested", * // AwsBackupRecoveryPointArn: "STRING_VALUE", * // LimitlessDatabase: { // LimitlessDatabase * // Status: "active" || "not-in-use" || "enabled" || "disabled" || "enabling" || "disabling" || "modifying-max-capacity" || "error", * // MinRequiredACU: Number("double"), * // }, * // ClusterScalabilityType: "standard" || "limitless", * // CertificateDetails: { * // CAIdentifier: "STRING_VALUE", * // ValidTill: new Date("TIMESTAMP"), * // }, * // EngineLifecycleSupport: "STRING_VALUE", * // VPCNetworkingEnabled: true || false, * // InternetAccessGatewayEnabled: true || false, * // }, * // }; * * ``` * * @param CreateDBClusterCommandInput - {@link CreateDBClusterCommandInput} * @returns {@link CreateDBClusterCommandOutput} * @see {@link CreateDBClusterCommandInput} for command's `input` shape. * @see {@link CreateDBClusterCommandOutput} for command's `response` shape. * @see {@link RDSClientResolvedConfig | config} for RDSClient's `config` shape. * * @throws {@link DBClusterAlreadyExistsFault} (client fault) *

The user already has a DB cluster with the given identifier.

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

DBClusterIdentifier doesn't refer to an existing DB cluster.

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

DBClusterParameterGroupName doesn't refer to an existing DB cluster parameter group.

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

The user attempted to create a new DB cluster and the user has already reached the maximum allowed DB cluster quota.

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

DBInstanceIdentifier doesn't refer to an existing DB instance.

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

Subnets in the DB subnet group should cover at least two Availability Zones unless there is only one Availability Zone.

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

DBSubnetGroupName doesn't refer to an existing DB subnet group.

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

Domain doesn't refer to an existing Active Directory domain.

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

The GlobalClusterIdentifier doesn't refer to an existing global database cluster.

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

The specified DB instance class isn't available in the specified Availability Zone.

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

There is insufficient storage available for the current action. You might be able to resolve this error by updating your subnet group to use different Availability Zones that have more storage available.

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

The requested operation can't be performed while the cluster is in this state.

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

The DB instance isn't in a valid state.

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

The DBSubnetGroup doesn't belong to the same VPC as that of an existing cross-region read replica of the same source instance.

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

The DB subnet group cannot be deleted because it's in use.

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

The global cluster is in an invalid state and can't perform the requested operation.

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

The requested subnet is invalid, or multiple subnets were requested that are not all in a common VPC.

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

The DB subnet group doesn't cover all Availability Zones after it's created because of users' change.

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

An error occurred accessing an Amazon Web Services KMS key.

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

The network type is invalid for the DB instance. Valid nework type values are IPV4 and DUAL.

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

The specified option group could not be found.

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

The request would result in the user exceeding the allowed amount of storage available across all DB instances.

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

The specified StorageType can't be associated with the DB instance.

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

The operation violates VPC encryption control settings. Make sure that your DB instance type supports the Nitro encryption-in-transit capability, or modify your VPC's encryption controls to not enforce encryption-in-transit.

* * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* * * @example To create a MySQL 5.7-compatible DB cluster * ```javascript * // The following example creates a MySQL 5.7-compatible Aurora DB cluster. * const input = { * DBClusterIdentifier: "sample-cluster", * DBSubnetGroupName: "default", * Engine: "aurora-mysql", * EngineVersion: "5.7.12", * MasterUserPassword: "mypassword", * MasterUsername: "admin", * VpcSecurityGroupIds: [ * "sg-0b91305example" * ] * }; * const command = new CreateDBClusterCommand(input); * const response = await client.send(command); * /* response is * { * DBCluster: { * AllocatedStorage: 1, * AssociatedRoles: [], * AvailabilityZones: [ * "us-east-1a", * "us-east-1b", * "us-east-1e" * ], * BackupRetentionPeriod: 1, * ClusterCreateTime: "2019-06-07T23:21:33.048Z", * CopyTagsToSnapshot: false, * DBClusterArn: "arn:aws:rds:us-east-1:123456789012:cluster:sample-cluster", * DBClusterIdentifier: "sample-cluster", * DBClusterMembers: [], * DBClusterParameterGroup: "default.aurora-mysql5.7", * DBSubnetGroup: "default", * DbClusterResourceId: "cluster-ANPAJ4AE5446DAEXAMPLE", * DeletionProtection: false, * Endpoint: "sample-cluster.cluster-cnpexample.us-east-1.rds.amazonaws.com", * Engine: "aurora-mysql", * EngineMode: "provisioned", * EngineVersion: "5.7.12", * HostedZoneId: "Z2R2ITUGPM61AM", * HttpEndpointEnabled: false, * IAMDatabaseAuthenticationEnabled: false, * MasterUsername: "master", * MultiAZ: false, * Port: 3306, * PreferredBackupWindow: "09:12-09:42", * PreferredMaintenanceWindow: "mon:04:31-mon:05:01", * ReadReplicaIdentifiers: [], * ReaderEndpoint: "sample-cluster.cluster-ro-cnpexample.us-east-1.rds.amazonaws.com", * Status: "creating", * StorageEncrypted: false, * VpcSecurityGroups: [ * { * Status: "active", * VpcSecurityGroupId: "sg-0b91305example" * } * ] * } * } * *\/ * ``` * * @example To create a PostgreSQL-compatible DB cluster * ```javascript * // The following example creates a PostgreSQL-compatible Aurora DB cluster. * const input = { * DBClusterIdentifier: "sample-pg-cluster", * DBSubnetGroupName: "default", * Engine: "aurora-postgresql", * MasterUserPassword: "mypassword", * MasterUsername: "admin", * VpcSecurityGroupIds: [ * "sg-0b91305example" * ] * }; * const command = new CreateDBClusterCommand(input); * const response = await client.send(command); * /* response is * { * DBCluster: { * AllocatedStorage: 1, * AssociatedRoles: [], * AvailabilityZones: [ * "us-east-1a", * "us-east-1b", * "us-east-1c" * ], * BackupRetentionPeriod: 1, * ClusterCreateTime: "2019-06-07T23:26:08.371Z", * CopyTagsToSnapshot: false, * DBClusterArn: "arn:aws:rds:us-east-1:123456789012:cluster:sample-pg-cluster", * DBClusterIdentifier: "sample-pg-cluster", * DBClusterMembers: [], * DBClusterParameterGroup: "default.aurora-postgresql9.6", * DBSubnetGroup: "default", * DbClusterResourceId: "cluster-ANPAJ4AE5446DAEXAMPLE", * DeletionProtection: false, * Endpoint: "sample-pg-cluster.cluster-cnpexample.us-east-1.rds.amazonaws.com", * Engine: "aurora-postgresql", * EngineMode: "provisioned", * EngineVersion: "9.6.9", * HostedZoneId: "Z2R2ITUGPM61AM", * HttpEndpointEnabled: false, * IAMDatabaseAuthenticationEnabled: false, * MasterUsername: "master", * MultiAZ: false, * Port: 5432, * PreferredBackupWindow: "09:56-10:26", * PreferredMaintenanceWindow: "wed:03:33-wed:04:03", * ReadReplicaIdentifiers: [], * ReaderEndpoint: "sample-pg-cluster.cluster-ro-cnpexample.us-east-1.rds.amazonaws.com", * Status: "creating", * StorageEncrypted: false, * VpcSecurityGroups: [ * { * Status: "active", * VpcSecurityGroupId: "sg-0b91305example" * } * ] * } * } * *\/ * ``` * * @example To create a Aurora DB cluster with express configuration * ```javascript * // The following example creates a Aurora DB cluster with express configuration. * const input = { * DBClusterIdentifier: "sample-cluster", * Engine: "aurora-postgresql", * WithExpressConfiguration: true * }; * const command = new CreateDBClusterCommand(input); * const response = await client.send(command); * /* response is * { * DBCluster: { * AllocatedStorage: 1, * AssociatedRoles: [], * AutoMinorVersionUpgrade: true, * AvailabilityZones: [ * "us-east-1c", * "us-east-1a", * "us-east-1b" * ], * BackupRetentionPeriod: 7, * ClusterCreateTime: "2026-01-10T22:14:02Z", * CopyTagsToSnapshot: false, * CrossAccountClone: false, * DBClusterArn: "arn:aws:rds:us-east-1:654654253058:cluster:sample-cluster", * DBClusterIdentifier: "sample-cluster", * DBClusterMembers: [ * { * DBClusterParameterGroupStatus: "in-sync", * DBInstanceIdentifier: "sample-cluster-instance-1", * IsClusterWriter: false, * PromotionTier: 1 * } * ], * DBClusterParameterGroup: "default.aurora-postgresql17", * DatabaseInsightsMode: "standard", * DbClusterResourceId: "cluster-OWV7DRHS2W7R4LXZRYNXCHZST4", * DeletionProtection: false, * DomainMemberships: [], * Engine: "aurora-postgresql", * EngineLifecycleSupport: "open-source-rds-extended-support", * EngineMode: "provisioned", * EngineVersion: "17.7", * HttpEndpointEnabled: false, * IAMDatabaseAuthenticationEnabled: true, * LocalWriteForwardingStatus: "disabled", * MasterUsername: "postgres", * MultiAZ: false, * PerformanceInsightsEnabled: false, * Port: 5432, * PreferredBackupWindow: "06:15-06:45", * PreferredMaintenanceWindow: "sat:03:44-sat:04:14", * ReadReplicaIdentifiers: [], * ServerlessV2PlatformVersion: "3", * ServerlessV2ScalingConfiguration: { * MaxCapacity: 16.0, * MinCapacity: 0.0, * SecondsUntilAutoPause: 300 * }, * Status: "creating", * StorageEncrypted: false, * TagList: [], * VpcSecurityGroups: [] * } * } * *\/ * ``` * * @public */ export declare class CreateDBClusterCommand extends CreateDBClusterCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: CreateDBClusterMessage; output: CreateDBClusterResult; }; sdk: { input: CreateDBClusterCommandInput; output: CreateDBClusterCommandOutput; }; }; }