CfnDestinationMixinProps
- class aws_cdk.mixins_preview.aws_iotwireless.mixins.CfnDestinationMixinProps(*, description=None, expression=None, expression_type=None, name=None, role_arn=None, tags=None)
Bases:
objectProperties for CfnDestinationPropsMixin.
- Parameters:
description (
Optional[str]) – The description of the new resource. Maximum length is 2048 characters.expression (
Optional[str]) – The rule name to send messages to.expression_type (
Optional[str]) – The type of value inExpression.name (
Optional[str]) – The name of the new resource.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.mixins_preview.aws_iotwireless import mixins as iotwireless_mixins cfn_destination_mixin_props = iotwireless_mixins.CfnDestinationMixinProps( description="description", expression="expression", expression_type="expressionType", name="name", 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.