[−][src]Struct rusoto_docdb::CreateDBInstanceMessage
Represents the input to CreateDBInstance.
Fields
auto_minor_version_upgrade: Option<bool>
Indicates that minor engine upgrades are applied automatically to the DB instance during the maintenance window.
Default: true
availability_zone: Option<String>
The Amazon EC2 Availability Zone that the DB instance is created in.
Default: A random, system-chosen Availability Zone in the endpoint's AWS Region.
Example: us-east-1d
Constraint: The AvailabilityZone
parameter can't be specified if the MultiAZ
parameter is set to true
. The specified Availability Zone must be in the same AWS Region as the current endpoint.
db_cluster_identifier: String
The identifier of the DB cluster that the instance will belong to.
db_instance_class: String
The compute and memory capacity of the DB instance; for example, db.m4.large
.
db_instance_identifier: String
The DB 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
The tags to be assigned to the DB instance.
Trait Implementations
impl PartialEq<CreateDBInstanceMessage> for CreateDBInstanceMessage
[src]
fn eq(&self, other: &CreateDBInstanceMessage) -> bool
[src]
fn ne(&self, other: &CreateDBInstanceMessage) -> bool
[src]
impl Default for CreateDBInstanceMessage
[src]
fn default() -> CreateDBInstanceMessage
[src]
impl Clone for CreateDBInstanceMessage
[src]
fn clone(&self) -> CreateDBInstanceMessage
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for CreateDBInstanceMessage
[src]
Auto Trait Implementations
impl Send for CreateDBInstanceMessage
impl Sync for CreateDBInstanceMessage
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self