paws.analytics (version 0.1.0)

cloudsearch_update_scaling_parameters: Configures scaling parameters for a domain

Description

Configures scaling parameters for a domain. A domain's scaling parameters specify the desired search instance type and replication count. Amazon CloudSearch will still automatically scale your domain based on the volume of data and traffic, but not below the desired instance type and replication count. If the Multi-AZ option is enabled, these values control the resources used per Availability Zone. For more information, see Configuring Scaling Options in the Amazon CloudSearch Developer Guide.

Usage

cloudsearch_update_scaling_parameters(DomainName, ScalingParameters)

Arguments

DomainName

[required]

ScalingParameters

[required]

Request syntax

svc$update_scaling_parameters(
  DomainName = "string",
  ScalingParameters = list(
    DesiredInstanceType = "search.m1.small"|"search.m1.large"|"search.m2.xlarge"|"search.m2.2xlarge"|"search.m3.medium"|"search.m3.large"|"search.m3.xlarge"|"search.m3.2xlarge",
    DesiredReplicationCount = 123,
    DesiredPartitionCount = 123
  )
)