Class: Aws::CloudSearch::Types::ScalingParameters

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-cloudsearch/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

Instance Attribute Details

#desired_instance_typeString

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

Returns:

  • (String)


1782
1783
1784
1785
1786
1787
1788
# File 'gems/aws-sdk-cloudsearch/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_countInteger

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

Returns:

  • (Integer)


1782
1783
1784
1785
1786
1787
1788
# File 'gems/aws-sdk-cloudsearch/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_countInteger

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

Returns:

  • (Integer)


1782
1783
1784
1785
1786
1787
1788
# File 'gems/aws-sdk-cloudsearch/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