CreateDBClusterMessage
import type { CreateDBClusterMessage } from "https://aws-api-gyr5wj9zj0fg.deno.dev/v0.2/services/docdb.ts";interface CreateDBClusterMessage {
AvailabilityZones?: string[] | null;
BackupRetentionPeriod?: number | null;
DBClusterIdentifier: string;
DBClusterParameterGroupName?: string | null;
DBSubnetGroupName?: string | null;
DeletionProtection?: boolean | null;
EnableCloudwatchLogsExports?: string[] | null;
Engine: string;
EngineVersion?: string | null;
GlobalClusterIdentifier?: string | null;
KmsKeyId?: string | null;
MasterUsername?: string | null;
MasterUserPassword?: string | null;
Port?: number | null;
PreferredBackupWindow?: string | null;
PreferredMaintenanceWindow?: string | null;
PreSignedUrl?: string | null;
StorageEncrypted?: boolean | null;
Tags?: Tag[] | null;
VpcSecurityGroupIds?: string[] | null;
}