interface CfnPolicyMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoT.Mixins.CfnPolicyMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiot/mixins#CfnPolicyMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.iot.mixins.CfnPolicyMixinProps |
Python | aws_cdk.mixins_preview.aws_iot.mixins.CfnPolicyMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_iot » mixins » CfnPolicyMixinProps |
Properties for CfnPolicyPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-policy.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as iot_mixins } from '@aws-cdk/mixins-preview/aws-iot';
declare const policyDocument: any;
const cfnPolicyMixinProps: iot_mixins.CfnPolicyMixinProps = {
policyDocument: policyDocument,
policyName: 'policyName',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| policy | any | The JSON document that describes the policy. |
| policy | string | The policy name. |
| tags? | Cfn[] |
policyDocument?
Type:
any
(optional)
The JSON document that describes the policy.
policyName?
Type:
string
(optional)
The policy name.
tags?
Type:
Cfn[]
(optional)

.NET
Go
Java
Python
TypeScript