libZSservicesZSamazonka-kafkaconnectZSamazonka-kafkaconnect
Copyright(c) 2013-2021 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone

Amazonka.KafkaConnect.Types.AutoScalingUpdate

Description

 
Synopsis

Documentation

data AutoScalingUpdate Source #

The updates to the auto scaling parameters for the connector.

See: newAutoScalingUpdate smart constructor.

Constructors

AutoScalingUpdate' 

Fields

Instances

Instances details
Eq AutoScalingUpdate Source # 
Instance details

Defined in Amazonka.KafkaConnect.Types.AutoScalingUpdate

Read AutoScalingUpdate Source # 
Instance details

Defined in Amazonka.KafkaConnect.Types.AutoScalingUpdate

Show AutoScalingUpdate Source # 
Instance details

Defined in Amazonka.KafkaConnect.Types.AutoScalingUpdate

Generic AutoScalingUpdate Source # 
Instance details

Defined in Amazonka.KafkaConnect.Types.AutoScalingUpdate

Associated Types

type Rep AutoScalingUpdate :: Type -> Type #

NFData AutoScalingUpdate Source # 
Instance details

Defined in Amazonka.KafkaConnect.Types.AutoScalingUpdate

Methods

rnf :: AutoScalingUpdate -> () #

Hashable AutoScalingUpdate Source # 
Instance details

Defined in Amazonka.KafkaConnect.Types.AutoScalingUpdate

ToJSON AutoScalingUpdate Source # 
Instance details

Defined in Amazonka.KafkaConnect.Types.AutoScalingUpdate

type Rep AutoScalingUpdate Source # 
Instance details

Defined in Amazonka.KafkaConnect.Types.AutoScalingUpdate

type Rep AutoScalingUpdate = D1 ('MetaData "AutoScalingUpdate" "Amazonka.KafkaConnect.Types.AutoScalingUpdate" "libZSservicesZSamazonka-kafkaconnectZSamazonka-kafkaconnect" 'False) (C1 ('MetaCons "AutoScalingUpdate'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "maxWorkerCount") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Natural) :*: S1 ('MetaSel ('Just "mcuCount") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Natural)) :*: (S1 ('MetaSel ('Just "minWorkerCount") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Natural) :*: (S1 ('MetaSel ('Just "scaleInPolicy") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 ScaleInPolicyUpdate) :*: S1 ('MetaSel ('Just "scaleOutPolicy") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 ScaleOutPolicyUpdate)))))

newAutoScalingUpdate Source #

Create a value of AutoScalingUpdate with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:maxWorkerCount:AutoScalingUpdate', autoScalingUpdate_maxWorkerCount - The target maximum number of workers allocated to the connector.

$sel:mcuCount:AutoScalingUpdate', autoScalingUpdate_mcuCount - The target number of microcontroller units (MCUs) allocated to each connector worker. The valid values are 1,2,4,8.

$sel:minWorkerCount:AutoScalingUpdate', autoScalingUpdate_minWorkerCount - The target minimum number of workers allocated to the connector.

$sel:scaleInPolicy:AutoScalingUpdate', autoScalingUpdate_scaleInPolicy - The target sacle-in policy for the connector.

$sel:scaleOutPolicy:AutoScalingUpdate', autoScalingUpdate_scaleOutPolicy - The target sacle-out policy for the connector.

autoScalingUpdate_maxWorkerCount :: Lens' AutoScalingUpdate Natural Source #

The target maximum number of workers allocated to the connector.

autoScalingUpdate_mcuCount :: Lens' AutoScalingUpdate Natural Source #

The target number of microcontroller units (MCUs) allocated to each connector worker. The valid values are 1,2,4,8.

autoScalingUpdate_minWorkerCount :: Lens' AutoScalingUpdate Natural Source #

The target minimum number of workers allocated to the connector.

autoScalingUpdate_scaleInPolicy :: Lens' AutoScalingUpdate ScaleInPolicyUpdate Source #

The target sacle-in policy for the connector.

autoScalingUpdate_scaleOutPolicy :: Lens' AutoScalingUpdate ScaleOutPolicyUpdate Source #

The target sacle-out policy for the connector.