aws-cdk-lib.aws_iotwireless.CfnDestinationProps

interface CfnDestinationProps

LanguageType name
.NETAmazon.CDK.AWS.IoTWireless.CfnDestinationProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsiotwireless#CfnDestinationProps
Javasoftware.amazon.awscdk.services.iotwireless.CfnDestinationProps
Pythonaws_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',
  roleArn: 'roleArn',

  // the properties below are optional
  description: 'description',
  tags: [{
    key: 'key',
    value: 'value',
  }],
};

Properties

NameTypeDescription
expressionstringThe rule name to send messages to.
expressionTypestringThe type of value in Expression .
namestringThe name of the new resource.
roleArnstringThe ARN of the IAM Role that authorizes the destination.
description?stringThe description of the new resource.
tags?CfnTag[]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.


roleArn

Type: string

The ARN of the IAM Role that authorizes the destination.


description?

Type: string (optional)

The description of the new resource.

Maximum length is 2048 characters.


tags?

Type: CfnTag[] (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.