Show / Hide Table of Contents

Class CfnCluster.VpcConnectivityProperty

VPC connection control settings for brokers.

Inheritance
System.Object
CfnCluster.VpcConnectivityProperty
Implements
CfnCluster.IVpcConnectivityProperty
Namespace: Amazon.CDK.AWS.MSK
Assembly: Amazon.CDK.AWS.MSK.dll
Syntax (csharp)
public class VpcConnectivityProperty : Object, CfnCluster.IVpcConnectivityProperty
Syntax (vb)
Public Class VpcConnectivityProperty
    Inherits Object
    Implements CfnCluster.IVpcConnectivityProperty
Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-vpcconnectivity.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 vpcConnectivityProperty = new VpcConnectivityProperty {
    ClientAuthentication = new VpcConnectivityClientAuthenticationProperty {
        Sasl = new VpcConnectivitySaslProperty {
            Iam = new VpcConnectivityIamProperty {
                Enabled = false
            },
            Scram = new VpcConnectivityScramProperty {
                Enabled = false
            }
        },
        Tls = new VpcConnectivityTlsProperty {
            Enabled = false
        }
    }
};

Synopsis

Constructors

VpcConnectivityProperty()

Properties

ClientAuthentication

VPC connection control settings for brokers.

Constructors

VpcConnectivityProperty()

public VpcConnectivityProperty()

Properties

ClientAuthentication

VPC connection control settings for brokers.

public object ClientAuthentication { get; set; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-vpcconnectivity.html#cfn-msk-cluster-vpcconnectivity-clientauthentication

Implements

CfnCluster.IVpcConnectivityProperty
Back to top Generated by DocFX