CfnInputMixinProps

class aws_cdk.mixins_preview.aws_iotevents.mixins.CfnInputMixinProps(*, input_definition=None, input_description=None, input_name=None, tags=None)

Bases: object

Properties for CfnInputPropsMixin.

Parameters:
  • input_definition (Union[IResolvable, InputDefinitionProperty, Dict[str, Any], None]) – The definition of the input.

  • input_description (Optional[str]) – A brief description of the input.

  • input_name (Optional[str]) – The name of the input.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – An array of key-value pairs to apply to this resource. For more information, see Tag .

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-input.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.mixins_preview.aws_iotevents import mixins as iotevents_mixins

cfn_input_mixin_props = iotevents_mixins.CfnInputMixinProps(
    input_definition=iotevents_mixins.CfnInputPropsMixin.InputDefinitionProperty(
        attributes=[iotevents_mixins.CfnInputPropsMixin.AttributeProperty(
            json_path="jsonPath"
        )]
    ),
    input_description="inputDescription",
    input_name="inputName",
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

input_definition

The definition of the input.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-input.html#cfn-iotevents-input-inputdefinition

input_description

A brief description of the input.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-input.html#cfn-iotevents-input-inputdescription

input_name

The name of the input.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-input.html#cfn-iotevents-input-inputname

tags

An array of key-value pairs to apply to this resource.

For more information, see Tag .

See:

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