Struct rusoto_cloudsearch::ScalingParameters[][src]

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

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

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

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

Trait Implementations

impl Default for ScalingParameters
[src]

Returns the "default value" for a type. Read more

impl Debug for ScalingParameters
[src]

Formats the value using the given formatter. Read more

impl Clone for ScalingParameters
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ScalingParameters
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations