interface CfnClusterPolicyMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MSK.Mixins.CfnClusterPolicyMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmsk/mixins#CfnClusterPolicyMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.msk.mixins.CfnClusterPolicyMixinProps |
Python | aws_cdk.mixins_preview.aws_msk.mixins.CfnClusterPolicyMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_msk » mixins » CfnClusterPolicyMixinProps |
Properties for CfnClusterPolicyPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-msk-clusterpolicy.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as msk_mixins } from '@aws-cdk/mixins-preview/aws-msk';
declare const policy: any;
const cfnClusterPolicyMixinProps: msk_mixins.CfnClusterPolicyMixinProps = {
clusterArn: 'clusterArn',
policy: policy,
};
Properties
| Name | Type | Description |
|---|---|---|
| cluster | string | The Amazon Resource Name (ARN) that uniquely identifies the cluster. |
| policy? | any | Resource policy for the cluster. |
clusterArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) that uniquely identifies the cluster.
policy?
Type:
any
(optional)
Resource policy for the cluster.
The maximum size supported for a resource-based policy document is 20 KB.

.NET
Go
Java
Python
TypeScript