CfnVpcConnectionProps
- class aws_cdk.aws_msk.CfnVpcConnectionProps(*, authentication, client_subnets, security_groups, target_cluster_arn, vpc_id, tags=None)
Bases:
object
Properties for defining a
CfnVpcConnection
.- Parameters:
authentication (
str
) – The type of private link authentication.client_subnets (
Sequence
[str
]) –security_groups (
Sequence
[str
]) –target_cluster_arn (
str
) – The Amazon Resource Name (ARN) of the target cluster.vpc_id (
str
) –tags (
Optional
[Mapping
[str
,str
]]) – A key-value pair to associate with a resource.
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-vpcconnection.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_vpc_connection_props = msk.CfnVpcConnectionProps( authentication="authentication", client_subnets=["clientSubnets"], security_groups=["securityGroups"], target_cluster_arn="targetClusterArn", vpc_id="vpcId", # the properties below are optional tags={ "tags_key": "tags" } )
Attributes
- authentication
The type of private link authentication.
- client_subnets
-
- Type:
see
- security_groups
-
- Type:
see
- tags
A key-value pair to associate with a resource.
- target_cluster_arn
The Amazon Resource Name (ARN) of the target cluster.