CfnServerlessClusterMixinProps
- class aws_cdk.mixins_preview.aws_msk.mixins.CfnServerlessClusterMixinProps(*, client_authentication=None, cluster_name=None, tags=None, vpc_configs=None)
Bases:
objectProperties for CfnServerlessClusterPropsMixin.
- Parameters:
client_authentication (
Union[IResolvable,ClientAuthenticationProperty,Dict[str,Any],None]) – Includes all client authentication related information.cluster_name (
Optional[str]) – The name of the cluster.tags (
Optional[Mapping[str,str]]) – An arbitrary set of tags (key-value pairs) for the cluster.vpc_configs (
Union[IResolvable,Sequence[Union[IResolvable,VpcConfigProperty,Dict[str,Any]]],None]) – VPC configuration information for the serverless cluster.
- 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.mixins_preview.aws_msk import mixins as msk_mixins cfn_serverless_cluster_mixin_props = msk_mixins.CfnServerlessClusterMixinProps( client_authentication=msk_mixins.CfnServerlessClusterPropsMixin.ClientAuthenticationProperty( sasl=msk_mixins.CfnServerlessClusterPropsMixin.SaslProperty( iam=msk_mixins.CfnServerlessClusterPropsMixin.IamProperty( enabled=False ) ) ), cluster_name="clusterName", tags={ "tags_key": "tags" }, vpc_configs=[msk_mixins.CfnServerlessClusterPropsMixin.VpcConfigProperty( security_groups=["securityGroups"], subnet_ids=["subnetIds"] )] )
Attributes
- client_authentication
Includes all client authentication related information.
- cluster_name
The name of the cluster.
- tags
An arbitrary set of tags (key-value pairs) for the cluster.
- vpc_configs
VPC configuration information for the serverless cluster.