You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::IoTEvents::Types::CreateInputRequest

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing CreateInputRequest as input to an Aws::Client method, you can use a vanilla Hash:

{
  input_name: "InputName", # required
  input_description: "InputDescription",
  input_definition: { # required
    attributes: [ # required
      {
        json_path: "AttributeJsonPath", # required
      },
    ],
  },
  tags: [
    {
      key: "TagKey", # required
      value: "TagValue", # required
    },
  ],
}

Instance Attribute Summary collapse

Instance Attribute Details

#input_definitionTypes::InputDefinition

The definition of the input.

Returns:

#input_descriptionString

A brief description of the input.

Returns:

  • (String)

    A brief description of the input.

#input_nameString

The name you want to give to the input.

Returns:

  • (String)

    The name you want to give to the input.

#tagsArray<Types::Tag>

Metadata that can be used to manage the input.

Returns:

  • (Array<Types::Tag>)

    Metadata that can be used to manage the input.