interface CfnDestinationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.IoTWireless.CfnDestinationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsiotwireless#CfnDestinationMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.iotwireless.CfnDestinationMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_iotwireless.CfnDestinationMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_iotwireless » CfnDestinationMixinProps |
Properties for CfnDestinationPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_iotwireless as iotwireless } from '@aws-cdk/cfn-property-mixins';
const cfnDestinationMixinProps: iotwireless.CfnDestinationMixinProps = {
description: 'description',
expression: 'expression',
expressionType: 'expressionType',
name: 'name',
roleArn: 'roleArn',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | The description of the new resource. |
| expression? | string | The rule name to send messages to. |
| expression | string | The type of value in Expression . |
| name? | string | The name of the new resource. |
| role | string | The ARN of the IAM Role that authorizes the destination. |
| tags? | Cfn[] | The tags are an array of key-value pairs to attach to the specified resource. |
description?
Type:
string
(optional)
The description of the new resource.
Maximum length is 2048 characters.
expression?
Type:
string
(optional)
The rule name to send messages to.
expressionType?
Type:
string
(optional)
The type of value in Expression .
name?
Type:
string
(optional)
The name of the new resource.
roleArn?
Type:
string
(optional)
The ARN of the IAM Role that authorizes the destination.
tags?
Type:
Cfn[]
(optional)
The tags are an array of key-value pairs to attach to the specified resource.
Tags can have a minimum of 0 and a maximum of 50 items.

.NET
Go
Java
Python
TypeScript