package awsmsk


// VPC connection control settings for brokers.
//
// Example:
//   // The code below shows an example of how to instantiate this type.
//   // The values are placeholders you should change.
//   import "github.com/aws/aws-cdk-go/awscdk"
//
//   vpcConnectivityProperty := &VpcConnectivityProperty{
//   	ClientAuthentication: &VpcConnectivityClientAuthenticationProperty{
//   		Sasl: &VpcConnectivitySaslProperty{
//   			Iam: &VpcConnectivityIamProperty{
//   				Enabled: jsii.Boolean(false),
//   			},
//   			Scram: &VpcConnectivityScramProperty{
//   				Enabled: jsii.Boolean(false),
//   			},
//   		},
//   		Tls: &VpcConnectivityTlsProperty{
//   			Enabled: jsii.Boolean(false),
//   		},
//   	},
//   }
//
// See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-vpcconnectivity.html
//
type CfnCluster_VpcConnectivityProperty struct {
	// VPC connection control settings for brokers.
	// See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-vpcconnectivity.html#cfn-msk-cluster-vpcconnectivity-clientauthentication
	//
	ClientAuthentication interface{} `field:"optional" json:"clientAuthentication" yaml:"clientAuthentication"`
}