Show / Hide Table of Contents

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kafkaconnect-workerconfiguration.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.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.

string? Description { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kafkaconnect-workerconfiguration.html#cfn-kafkaconnect-workerconfiguration-description

Name

The name of the worker configuration.

string Name { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kafkaconnect-workerconfiguration.html#cfn-kafkaconnect-workerconfiguration-name

PropertiesFileContent

Base64 encoded contents of the connect-distributed.properties file.

string PropertiesFileContent { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kafkaconnect-workerconfiguration.html#cfn-kafkaconnect-workerconfiguration-propertiesfilecontent

Tags

A collection of tags associated with a resource.

ICfnTag[]? Tags { get; }
Property Value

ICfnTag[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kafkaconnect-workerconfiguration.html#cfn-kafkaconnect-workerconfiguration-tags

Back to top Generated by DocFX