Show / Hide Table of Contents

Class CfnWorkerConfigurationMixinProps

Properties for CfnWorkerConfigurationPropsMixin.

Inheritance
object
CfnWorkerConfigurationMixinProps
Implements
ICfnWorkerConfigurationMixinProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.KafkaConnect
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnWorkerConfigurationMixinProps : ICfnWorkerConfigurationMixinProps
Syntax (vb)
Public Class CfnWorkerConfigurationMixinProps Implements ICfnWorkerConfigurationMixinProps
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.CfnPropertyMixins.AWS.KafkaConnect;

             var cfnWorkerConfigurationMixinProps = new CfnWorkerConfigurationMixinProps {
                 Description = "description",
                 Name = "name",
                 PropertiesFileContent = "propertiesFileContent",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Synopsis

Constructors

CfnWorkerConfigurationMixinProps()

Properties for CfnWorkerConfigurationPropsMixin.

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.

Constructors

CfnWorkerConfigurationMixinProps()

Properties for CfnWorkerConfigurationPropsMixin.

public CfnWorkerConfigurationMixinProps()
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.CfnPropertyMixins.AWS.KafkaConnect;

             var cfnWorkerConfigurationMixinProps = new CfnWorkerConfigurationMixinProps {
                 Description = "description",
                 Name = "name",
                 PropertiesFileContent = "propertiesFileContent",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Properties

Description

The description of a worker configuration.

public string? Description { get; set; }
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.

public string? Name { get; set; }
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.

public string? PropertiesFileContent { get; set; }
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.

public ICfnTag[]? Tags { get; set; }
Property Value

ICfnTag[]

Remarks

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

Implements

ICfnWorkerConfigurationMixinProps
Back to top Generated by DocFX