Interface ICfnWorkerConfigurationProps
Properties for defining a CfnWorkerConfiguration
.
Namespace: Amazon.CDK.AWS.KafkaConnect
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnWorkerConfigurationProps
Syntax (vb)
Public Interface ICfnWorkerConfigurationProps
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.AWS.KafkaConnect;
var cfnWorkerConfigurationProps = new CfnWorkerConfigurationProps {
Name = "name",
PropertiesFileContent = "propertiesFileContent",
// the properties below are optional
Description = "description",
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
};
Synopsis
Properties
Description | The description of a worker configuration. |
Name | The name of the worker configuration. |
PropertiesFileContent | Base64 encoded contents of the connect-distributed.properties file. |
Tags | A collection of tags associated with a resource. |
Properties
Description
The description of a worker configuration.
virtual string Description { get; }
Property Value
System.String
Remarks
Name
The name of the worker configuration.
string Name { get; }
Property Value
System.String
Remarks
PropertiesFileContent
Base64 encoded contents of the connect-distributed.properties file.
string PropertiesFileContent { get; }
Property Value
System.String
Remarks
Tags
A collection of tags associated with a resource.
virtual ICfnTag[] Tags { get; }
Property Value
ICfnTag[]