Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ClusterPendingModifiedValues

import type { ClusterPendingModifiedValues } from "https://aws-api.deno.dev/v0.4/services/rds.ts?docs=full";

This data type is used as a response element in the ModifyDBCluster operation and contains changes that will be applied during the next maintenance window.

interface ClusterPendingModifiedValues {
AllocatedStorage?: number | null;
BackupRetentionPeriod?: number | null;
DBClusterIdentifier?: string | null;
EngineVersion?: string | null;
IAMDatabaseAuthenticationEnabled?: boolean | null;
Iops?: number | null;
MasterUserPassword?: string | null;
PendingCloudwatchLogsExports?: PendingCloudwatchLogsExports | null;
}

§Properties

§
AllocatedStorage?: number | null
[src]

The allocated storage size in gibibytes (GiB) for all database engines except Amazon Aurora. For Aurora, AllocatedStorage always returns 1, because Aurora DB cluster storage size isn't fixed, but instead automatically adjusts as needed.

§
BackupRetentionPeriod?: number | null
[src]

The number of days for which automatic DB snapshots are retained.

§
DBClusterIdentifier?: string | null
[src]

The DBClusterIdentifier value for the DB cluster.

§
EngineVersion?: string | null
[src]

The database engine version.

§
IAMDatabaseAuthenticationEnabled?: boolean | null
[src]

A value that indicates whether mapping of Amazon Web Services Identity and Access Management (IAM) accounts to database accounts is enabled.

§
Iops?: number | null
[src]

The Provisioned IOPS (I/O operations per second) value. This setting is only for non-Aurora Multi-AZ DB clusters.

§
MasterUserPassword?: string | null
[src]

The master credentials for the DB cluster.

§
PendingCloudwatchLogsExports?: PendingCloudwatchLogsExports | null
[src]