CfnServerlessClusterProps
- class aws_cdk.aws_msk.CfnServerlessClusterProps(*, client_authentication, cluster_name, vpc_configs, tags=None)
Bases:
object
Properties for defining a
CfnServerlessCluster
.- Parameters:
client_authentication (
Union
[IResolvable
,ClientAuthenticationProperty
,Dict
[str
,Any
]]) –cluster_name (
str
) –vpc_configs (
Union
[IResolvable
,Sequence
[Union
[IResolvable
,VpcConfigProperty
,Dict
[str
,Any
]]]]) –tags (
Optional
[Mapping
[str
,str
]]) – A key-value pair to associate with a resource.
- See:
- 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
-
- Type:
see
- cluster_name
-
- Type:
see
- tags
A key-value pair to associate with a resource.