Interface ICfnServerlessClusterProps
Properties for defining a CfnServerlessCluster
.
Namespace: Amazon.CDK.AWS.MSK
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnServerlessClusterProps
Syntax (vb)
Public Interface ICfnServerlessClusterProps
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.MSK;
var cfnServerlessClusterProps = new CfnServerlessClusterProps {
ClientAuthentication = new ClientAuthenticationProperty {
Sasl = new SaslProperty {
Iam = new IamProperty {
Enabled = false
}
}
},
ClusterName = "clusterName",
VpcConfigs = new [] { new VpcConfigProperty {
SubnetIds = new [] { "subnetIds" },
// the properties below are optional
SecurityGroups = new [] { "securityGroups" }
} },
// the properties below are optional
Tags = new Dictionary<string, string> {
{ "tagsKey", "tags" }
}
};
Synopsis
Properties
ClientAuthentication | |
ClusterName | |
Tags | A key-value pair to associate with a resource. |
VpcConfigs |
Properties
ClientAuthentication
object ClientAuthentication { get; }
Property Value
System.Object
Remarks
ClusterName
string ClusterName { get; }
Property Value
System.String
Remarks
Tags
A key-value pair to associate with a resource.
virtual IDictionary<string, string> Tags { get; }
Property Value
System.Collections.Generic.IDictionary<System.String, System.String>
Remarks
VpcConfigs
object VpcConfigs { get; }
Property Value
System.Object