[][src]Struct rusoto_cloudsearch::ScalingParameters

pub struct ScalingParameters {
    pub desired_instance_type: Option<String>,
    pub desired_partition_count: Option<i64>,
    pub desired_replication_count: Option<i64>,
}

The desired instance type and desired number of replicas of each index partition.

Fields

desired_instance_type: Option<String>

The instance type that you want to preconfigure for your domain. For example, search.m1.small.

desired_partition_count: Option<i64>

The number of partitions you want to preconfigure for your domain. Only valid when you select m2.2xlarge as the desired instance type.

desired_replication_count: Option<i64>

The number of replicas you want to preconfigure for each index partition.

Trait Implementations

impl PartialEq<ScalingParameters> for ScalingParameters[src]

impl Default for ScalingParameters[src]

impl Clone for ScalingParameters[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for ScalingParameters[src]

Auto Trait Implementations

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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.

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Erased for T