interface CfnDestinationProps
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.IoTWireless.CfnDestinationProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsiotwireless#CfnDestinationProps |
Java | software.amazon.awscdk.services.iotwireless.CfnDestinationProps |
Python | aws_cdk.aws_iotwireless.CfnDestinationProps |
TypeScript | aws-cdk-lib » aws_iotwireless » CfnDestinationProps |
Properties for defining a CfnDestination
.
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-lib';
const cfnDestinationProps: iotwireless.CfnDestinationProps = {
expression: 'expression',
expressionType: 'expressionType',
name: 'name',
// the properties below are optional
description: 'description',
roleArn: 'roleArn',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
Name | Type | Description |
---|---|---|
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. |
description? | string | The description 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. |
expression
Type:
string
The rule name to send messages to.
expressionType
Type:
string
The type of value in Expression
.
name
Type:
string
The name of the new resource.
description?
Type:
string
(optional)
The description of the new resource.
Maximum length is 2048 characters.
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.