interface CfnPolicyMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.IoT.CfnPolicyMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsiot#CfnPolicyMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.iot.CfnPolicyMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_iot.CfnPolicyMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_iot » 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 { aws_iot as iot } from '@aws-cdk/cfn-property-mixins';
declare const policyDocument: any;
const cfnPolicyMixinProps: iot.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