[][src]Struct rusoto_docdb::CreateDBInstanceMessage

pub struct CreateDBInstanceMessage {
    pub auto_minor_version_upgrade: Option<bool>,
    pub availability_zone: Option<String>,
    pub db_cluster_identifier: String,
    pub db_instance_class: String,
    pub db_instance_identifier: String,
    pub engine: String,
    pub preferred_maintenance_window: Option<String>,
    pub promotion_tier: Option<i64>,
    pub tags: Option<Vec<Tag>>,
}

Represents the input to CreateDBInstance.

Fields

auto_minor_version_upgrade: Option<bool>

Indicates that minor engine upgrades are applied automatically to the instance during the maintenance window.

Default: true

availability_zone: Option<String>

The Amazon EC2 Availability Zone that the instance is created in.

Default: A random, system-chosen Availability Zone in the endpoint's AWS Region.

Example: us-east-1d

db_cluster_identifier: String

The identifier of the cluster that the instance will belong to.

db_instance_class: String

The compute and memory capacity of the instance; for example, db.r5.large.

db_instance_identifier: String

The instance identifier. This parameter is stored as a lowercase string.

Constraints:

  • Must contain from 1 to 63 letters, numbers, or hyphens.

  • The first character must be a letter.

  • Cannot end with a hyphen or contain two consecutive hyphens.

Example: mydbinstance

engine: String

The name of the database engine to be used for this instance.

Valid value: docdb

preferred_maintenance_window: Option<String>

The time range each week during which system maintenance can occur, in Universal Coordinated Time (UTC).

Format: ddd:hh24:mi-ddd:hh24:mi

The default is a 30-minute window selected at random from an 8-hour block of time for each AWS Region, occurring on a random day of the week.

Valid days: Mon, Tue, Wed, Thu, Fri, Sat, Sun

Constraints: Minimum 30-minute window.

promotion_tier: Option<i64>

A value that specifies the order in which an Amazon DocumentDB replica is promoted to the primary instance after a failure of the existing primary instance.

Default: 1

Valid values: 0-15

tags: Option<Vec<Tag>>

The tags to be assigned to the instance. You can assign up to 10 tags to an instance.

Trait Implementations

impl Clone for CreateDBInstanceMessage[src]

impl Debug for CreateDBInstanceMessage[src]

impl Default for CreateDBInstanceMessage[src]

impl PartialEq<CreateDBInstanceMessage> for CreateDBInstanceMessage[src]

impl StructuralPartialEq for CreateDBInstanceMessage[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.