CfnClusterPolicyProps
- class aws_cdk.aws_msk.CfnClusterPolicyProps(*, cluster_arn, policy)
Bases:
object
Properties for defining a
CfnClusterPolicy
.- Parameters:
cluster_arn (
str
) – The Amazon Resource Name (ARN) that uniquely identifies the cluster.policy (
Any
) – Resource policy for the cluster.
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-clusterpolicy.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 # policy: Any cfn_cluster_policy_props = msk.CfnClusterPolicyProps( cluster_arn="clusterArn", policy=policy )
Attributes
- cluster_arn
The Amazon Resource Name (ARN) that uniquely identifies the cluster.
- policy
Resource policy for the cluster.