CfnServerlessClusterProps

class aws_cdk.aws_msk.CfnServerlessClusterProps(*, client_authentication, cluster_name, vpc_configs, tags=None)

Bases: object

Properties for defining a CfnServerlessCluster.

Parameters:
See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-serverlesscluster.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_msk as msk

cfn_serverless_cluster_props = msk.CfnServerlessClusterProps(
    client_authentication=msk.CfnServerlessCluster.ClientAuthenticationProperty(
        sasl=msk.CfnServerlessCluster.SaslProperty(
            iam=msk.CfnServerlessCluster.IamProperty(
                enabled=False
            )
        )
    ),
    cluster_name="clusterName",
    vpc_configs=[msk.CfnServerlessCluster.VpcConfigProperty(
        subnet_ids=["subnetIds"],

        # the properties below are optional
        security_groups=["securityGroups"]
    )],

    # the properties below are optional
    tags={
        "tags_key": "tags"
    }
)

Attributes

client_authentication

Includes all client authentication information.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-serverlesscluster.html#cfn-msk-serverlesscluster-clientauthentication

cluster_name

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-serverlesscluster.html#cfn-msk-serverlesscluster-clustername

Type:

see

tags

A key-value pair to associate with a resource.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-serverlesscluster.html#cfn-msk-serverlesscluster-tags

vpc_configs

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-serverlesscluster.html#cfn-msk-serverlesscluster-vpcconfigs

Type:

see