Class: Aws::CloudSearch::Types::ScalingParameters
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudSearch::Types::ScalingParameters
- Defined in:
- gems/aws-sdk-cloudsearch/lib/aws-sdk-cloudsearch/types.rb
Overview
Note:
When making an API call, you may pass ScalingParameters data as a hash:
{
desired_instance_type: "search.m1.small", # accepts search.m1.small, search.m1.large, search.m2.xlarge, search.m2.2xlarge, search.m3.medium, search.m3.large, search.m3.xlarge, search.m3.2xlarge, search.small, search.medium, search.large, search.xlarge, search.2xlarge
desired_replication_count: 1,
desired_partition_count: 1,
}
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
.
2304 2305 2306 2307 2308 2309 2310 |
# File 'gems/aws-sdk-cloudsearch/lib/aws-sdk-cloudsearch/types.rb', line 2304 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.
2304 2305 2306 2307 2308 2309 2310 |
# File 'gems/aws-sdk-cloudsearch/lib/aws-sdk-cloudsearch/types.rb', line 2304 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.
2304 2305 2306 2307 2308 2309 2310 |
# File 'gems/aws-sdk-cloudsearch/lib/aws-sdk-cloudsearch/types.rb', line 2304 class ScalingParameters < Struct.new( :desired_instance_type, :desired_replication_count, :desired_partition_count) SENSITIVE = [] include Aws::Structure end |