Show / Hide Table of Contents

Class CfnCustomPluginPropsMixin

Creates a custom plugin using the specified properties.

Inheritance
object
Mixin
CfnCustomPluginPropsMixin
Implements
IMixin
Inherited Members
Mixin.IsMixin(object)
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.KafkaConnect
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnCustomPluginPropsMixin : Mixin, IMixin
Syntax (vb)
Public Class CfnCustomPluginPropsMixin Inherits Mixin Implements IMixin
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kafkaconnect-customplugin.html

CloudformationResource: AWS::KafkaConnect::CustomPlugin

Mixin: true

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;
             using Amazon.CDK;

             IMergeStrategy mergeStrategy;

             var cfnCustomPluginPropsMixin = new CfnCustomPluginPropsMixin(new CfnCustomPluginMixinProps {
                 ContentType = "contentType",
                 Description = "description",
                 Location = new CustomPluginLocationProperty {
                     S3Location = new S3LocationProperty {
                         BucketArn = "bucketArn",
                         FileKey = "fileKey",
                         ObjectVersion = "objectVersion"
                     }
                 },
                 Name = "name",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             }, new CfnPropertyMixinOptions {
                 Strategy = mergeStrategy
             });

Synopsis

Constructors

CfnCustomPluginPropsMixin(ICfnCustomPluginMixinProps, ICfnPropertyMixinOptions?)

Create a mixin to apply properties to AWS::KafkaConnect::CustomPlugin.

Properties

CFN_PROPERTY_KEYS

Creates a custom plugin using the specified properties.

Props

Creates a custom plugin using the specified properties.

Strategy

Creates a custom plugin using the specified properties.

Methods

ApplyTo(IConstruct)

Apply the mixin properties to the construct.

Supports(IConstruct)

Check if this mixin supports the given construct.

Constructors

CfnCustomPluginPropsMixin(ICfnCustomPluginMixinProps, ICfnPropertyMixinOptions?)

Create a mixin to apply properties to AWS::KafkaConnect::CustomPlugin.

public CfnCustomPluginPropsMixin(ICfnCustomPluginMixinProps props, ICfnPropertyMixinOptions? options = null)
Parameters
props ICfnCustomPluginMixinProps

L1 properties to apply.

options ICfnPropertyMixinOptions

Mixin options.

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kafkaconnect-customplugin.html

CloudformationResource: AWS::KafkaConnect::CustomPlugin

Mixin: true

ExampleMetadata: fixture=_generated

Properties

CFN_PROPERTY_KEYS

Creates a custom plugin using the specified properties.

protected static string[] CFN_PROPERTY_KEYS { get; }
Property Value

string[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kafkaconnect-customplugin.html

CloudformationResource: AWS::KafkaConnect::CustomPlugin

Mixin: true

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;
             using Amazon.CDK;

             IMergeStrategy mergeStrategy;

             var cfnCustomPluginPropsMixin = new CfnCustomPluginPropsMixin(new CfnCustomPluginMixinProps {
                 ContentType = "contentType",
                 Description = "description",
                 Location = new CustomPluginLocationProperty {
                     S3Location = new S3LocationProperty {
                         BucketArn = "bucketArn",
                         FileKey = "fileKey",
                         ObjectVersion = "objectVersion"
                     }
                 },
                 Name = "name",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             }, new CfnPropertyMixinOptions {
                 Strategy = mergeStrategy
             });

Props

Creates a custom plugin using the specified properties.

protected virtual ICfnCustomPluginMixinProps Props { get; }
Property Value

ICfnCustomPluginMixinProps

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kafkaconnect-customplugin.html

CloudformationResource: AWS::KafkaConnect::CustomPlugin

Mixin: true

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;
             using Amazon.CDK;

             IMergeStrategy mergeStrategy;

             var cfnCustomPluginPropsMixin = new CfnCustomPluginPropsMixin(new CfnCustomPluginMixinProps {
                 ContentType = "contentType",
                 Description = "description",
                 Location = new CustomPluginLocationProperty {
                     S3Location = new S3LocationProperty {
                         BucketArn = "bucketArn",
                         FileKey = "fileKey",
                         ObjectVersion = "objectVersion"
                     }
                 },
                 Name = "name",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             }, new CfnPropertyMixinOptions {
                 Strategy = mergeStrategy
             });

Strategy

Creates a custom plugin using the specified properties.

protected virtual IMergeStrategy Strategy { get; }
Property Value

IMergeStrategy

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kafkaconnect-customplugin.html

CloudformationResource: AWS::KafkaConnect::CustomPlugin

Mixin: true

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;
             using Amazon.CDK;

             IMergeStrategy mergeStrategy;

             var cfnCustomPluginPropsMixin = new CfnCustomPluginPropsMixin(new CfnCustomPluginMixinProps {
                 ContentType = "contentType",
                 Description = "description",
                 Location = new CustomPluginLocationProperty {
                     S3Location = new S3LocationProperty {
                         BucketArn = "bucketArn",
                         FileKey = "fileKey",
                         ObjectVersion = "objectVersion"
                     }
                 },
                 Name = "name",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             }, new CfnPropertyMixinOptions {
                 Strategy = mergeStrategy
             });

Methods

ApplyTo(IConstruct)

Apply the mixin properties to the construct.

public override void ApplyTo(IConstruct construct)
Parameters
construct IConstruct
Overrides
Mixin.ApplyTo(IConstruct)
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kafkaconnect-customplugin.html

CloudformationResource: AWS::KafkaConnect::CustomPlugin

Mixin: true

ExampleMetadata: fixture=_generated

Supports(IConstruct)

Check if this mixin supports the given construct.

public override bool Supports(IConstruct construct)
Parameters
construct IConstruct
Returns

bool

Overrides
Mixin.Supports(IConstruct)
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kafkaconnect-customplugin.html

CloudformationResource: AWS::KafkaConnect::CustomPlugin

Mixin: true

ExampleMetadata: fixture=_generated

Implements

Constructs.IMixin
Back to top Generated by DocFX