interface CfnDestinationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoTWireless.Mixins.CfnDestinationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiotwireless/mixins#CfnDestinationMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.iotwireless.mixins.CfnDestinationMixinProps |
Python | aws_cdk.mixins_preview.aws_iotwireless.mixins.CfnDestinationMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_iotwireless » mixins » 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 { mixins as iotwireless_mixins } from '@aws-cdk/mixins-preview/aws-iotwireless';
const cfnDestinationMixinProps: iotwireless_mixins.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