Show / Hide Table of Contents

Class CfnConnectorPropsMixin.ProvisionedCapacityProperty

Details about a connector's provisioned capacity.

Inheritance
object
CfnConnectorPropsMixin.ProvisionedCapacityProperty
Implements
CfnConnectorPropsMixin.IProvisionedCapacityProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.Mixins.Preview.AWS.KafkaConnect.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnConnectorPropsMixin.ProvisionedCapacityProperty : CfnConnectorPropsMixin.IProvisionedCapacityProperty
Syntax (vb)
Public Class CfnConnectorPropsMixin.ProvisionedCapacityProperty Implements CfnConnectorPropsMixin.IProvisionedCapacityProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kafkaconnect-connector-provisionedcapacity.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.Mixins.Preview.AWS.KafkaConnect.Mixins;

             var provisionedCapacityProperty = new ProvisionedCapacityProperty {
                 McuCount = 123,
                 WorkerCount = 123
             };

Synopsis

Constructors

ProvisionedCapacityProperty()

Details about a connector's provisioned capacity.

Properties

McuCount

The number of microcontroller units (MCUs) allocated to each connector worker.

WorkerCount

The number of workers that are allocated to the connector.

Constructors

ProvisionedCapacityProperty()

Details about a connector's provisioned capacity.

public ProvisionedCapacityProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kafkaconnect-connector-provisionedcapacity.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.Mixins.Preview.AWS.KafkaConnect.Mixins;

             var provisionedCapacityProperty = new ProvisionedCapacityProperty {
                 McuCount = 123,
                 WorkerCount = 123
             };

Properties

McuCount

The number of microcontroller units (MCUs) allocated to each connector worker.

public double? McuCount { get; set; }
Property Value

double?

Remarks

The valid values are 1,2,4,8.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kafkaconnect-connector-provisionedcapacity.html#cfn-kafkaconnect-connector-provisionedcapacity-mcucount

WorkerCount

The number of workers that are allocated to the connector.

public double? WorkerCount { get; set; }
Property Value

double?

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kafkaconnect-connector-provisionedcapacity.html#cfn-kafkaconnect-connector-provisionedcapacity-workercount

Implements

CfnConnectorPropsMixin.IProvisionedCapacityProperty
Back to top Generated by DocFX