Class: Aws::TimestreamInfluxDB::Types::ClusterConfiguration

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-timestreaminfluxdb/lib/aws-sdk-timestreaminfluxdb/types.rb

Overview

Configuration for node modes in the DbCluster.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#dedicated_compactorBoolean

Indicates if the compactor instance is a standalone instance or not.

Returns:

  • (Boolean)


43
44
45
46
47
48
49
# File 'gems/aws-sdk-timestreaminfluxdb/lib/aws-sdk-timestreaminfluxdb/types.rb', line 43

class ClusterConfiguration < Struct.new(
  :ingest_query_instances,
  :query_only_instances,
  :dedicated_compactor)
  SENSITIVE = []
  include Aws::Structure
end

#ingest_query_instancesInteger

The number of instances in the DbCluster which can both ingest and query.

Returns:

  • (Integer)


43
44
45
46
47
48
49
# File 'gems/aws-sdk-timestreaminfluxdb/lib/aws-sdk-timestreaminfluxdb/types.rb', line 43

class ClusterConfiguration < Struct.new(
  :ingest_query_instances,
  :query_only_instances,
  :dedicated_compactor)
  SENSITIVE = []
  include Aws::Structure
end

#query_only_instancesInteger

The number of instances in the DbCluster which can only query.

Returns:

  • (Integer)


43
44
45
46
47
48
49
# File 'gems/aws-sdk-timestreaminfluxdb/lib/aws-sdk-timestreaminfluxdb/types.rb', line 43

class ClusterConfiguration < Struct.new(
  :ingest_query_instances,
  :query_only_instances,
  :dedicated_compactor)
  SENSITIVE = []
  include Aws::Structure
end