CfnDestinationProps
- class aws_cdk.aws_iotwireless.CfnDestinationProps(*, expression, expression_type, name, description=None, role_arn=None, tags=None)
Bases:
objectProperties for defining a
CfnDestination.- Parameters:
expression (
str) – The rule name to send messages to.expression_type (
str) – The type of value inExpression.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:
- 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.
- expression
The rule name to send messages to.
- expression_type
The type of value in
Expression.
- name
The name of the new resource.
- role_arn
The ARN of the IAM Role that authorizes the destination.
- 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.