Class: Aws::CloudSearch::Types::ScalingParameters
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudSearch::Types::ScalingParameters
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudsearch/types.rb
Overview
The desired instance type and desired number of replicas of each index partition.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#desired_instance_type ⇒ String
The instance type that you want to preconfigure for your domain.
-
#desired_partition_count ⇒ Integer
The number of partitions you want to preconfigure for your domain.
-
#desired_replication_count ⇒ Integer
The number of replicas you want to preconfigure for each index partition.
Instance Attribute Details
#desired_instance_type ⇒ String
The instance type that you want to preconfigure for your domain. For example, ‘search.m1.small`.
1782 1783 1784 1785 1786 1787 1788 |
# File 'lib/aws-sdk-cloudsearch/types.rb', line 1782 class ScalingParameters < Struct.new( :desired_instance_type, :desired_replication_count, :desired_partition_count) SENSITIVE = [] include Aws::Structure end |
#desired_partition_count ⇒ Integer
The number of partitions you want to preconfigure for your domain. Only valid when you select ‘m2.2xlarge` as the desired instance type.
1782 1783 1784 1785 1786 1787 1788 |
# File 'lib/aws-sdk-cloudsearch/types.rb', line 1782 class ScalingParameters < Struct.new( :desired_instance_type, :desired_replication_count, :desired_partition_count) SENSITIVE = [] include Aws::Structure end |
#desired_replication_count ⇒ Integer
The number of replicas you want to preconfigure for each index partition.
1782 1783 1784 1785 1786 1787 1788 |
# File 'lib/aws-sdk-cloudsearch/types.rb', line 1782 class ScalingParameters < Struct.new( :desired_instance_type, :desired_replication_count, :desired_partition_count) SENSITIVE = [] include Aws::Structure end |