Class CfnConnectorPropsMixin.ProvisionedCapacityProperty
Details about a connector's provisioned capacity.
Inherited Members
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
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
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
Remarks
WorkerCount
The number of workers that are allocated to the connector.
public double? WorkerCount { get; set; }