CfnDestinationProps

class aws_cdk.aws_iotwireless.CfnDestinationProps(*, expression, expression_type, name, description=None, role_arn=None, tags=None)

Bases: object

Properties for defining a CfnDestination.

Parameters:
  • expression (str) – The rule name to send messages to.

  • expression_type (str) – The type of value in Expression .

  • name (str) – The name of the new resource.

  • description (Optional[str]) – The description of the new resource. Maximum length is 2048 characters.

  • role_arn (Optional[str]) – The ARN of the IAM Role that authorizes the destination.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – 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.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotwireless-destination.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_iotwireless as iotwireless

cfn_destination_props = iotwireless.CfnDestinationProps(
    expression="expression",
    expression_type="expressionType",
    name="name",

    # the properties below are optional
    description="description",
    role_arn="roleArn",
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

description

The description of the new resource.

Maximum length is 2048 characters.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotwireless-destination.html#cfn-iotwireless-destination-description

expression

The rule name to send messages to.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotwireless-destination.html#cfn-iotwireless-destination-expression

expression_type

The type of value in Expression .

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotwireless-destination.html#cfn-iotwireless-destination-expressiontype

name

The name of the new resource.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotwireless-destination.html#cfn-iotwireless-destination-name

role_arn

The ARN of the IAM Role that authorizes the destination.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotwireless-destination.html#cfn-iotwireless-destination-rolearn

tags

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.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotwireless-destination.html#cfn-iotwireless-destination-tags