Class CfnVpcConnectionProps
Properties for defining a CfnVpcConnection
.
Inheritance
Implements
Namespace: Amazon.CDK.AWS.MSK
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnVpcConnectionProps : Object, ICfnVpcConnectionProps
Syntax (vb)
Public Class CfnVpcConnectionProps
Inherits Object
Implements ICfnVpcConnectionProps
Remarks
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-vpcconnection.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.MSK;
var cfnVpcConnectionProps = new CfnVpcConnectionProps {
Authentication = "authentication",
ClientSubnets = new [] { "clientSubnets" },
SecurityGroups = new [] { "securityGroups" },
TargetClusterArn = "targetClusterArn",
VpcId = "vpcId",
// the properties below are optional
Tags = new Dictionary<string, string> {
{ "tagsKey", "tags" }
}
};
Synopsis
Constructors
Cfn |
Properties
Authentication | The type of private link authentication. |
Client |
|
Security |
|
Tags | A key-value pair to associate with a resource. |
Target |
The Amazon Resource Name (ARN) of the target cluster. |
Vpc |
Constructors
CfnVpcConnectionProps()
public CfnVpcConnectionProps()
Properties
Authentication
The type of private link authentication.
public string Authentication { get; set; }
Property Value
System.
Remarks
ClientSubnets
public string[] ClientSubnets { get; set; }
Property Value
System.
Remarks
SecurityGroups
public string[] SecurityGroups { get; set; }
Property Value
System.
Remarks
Tags
A key-value pair to associate with a resource.
public IDictionary<string, string> Tags { get; set; }
Property Value
System.
Remarks
TargetClusterArn
The Amazon Resource Name (ARN) of the target cluster.
public string TargetClusterArn { get; set; }
Property Value
System.
Remarks
VpcId
public string VpcId { get; set; }
Property Value
System.