We recommend new projects start with resources from the AWS provider.
aws-native.iotevents.Input
Explore with Pulumi AI
We recommend new projects start with resources from the AWS provider.
The AWS::IoTEvents::Input resource creates an input. To monitor your devices and processes, they must have a way to get telemetry data into ITE. This is done by sending messages as inputs to ITE. For more information, see How to Use in the Developer Guide.
Example Usage
Example
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AwsNative = Pulumi.AwsNative;
return await Deployment.RunAsync(() =>
{
var myInput = new AwsNative.IoTEvents.Input("myInput", new()
{
InputName = "myInput",
InputDescription = "My Input created by CloudFormation",
InputDefinition = new AwsNative.IoTEvents.Inputs.InputDefinitionArgs
{
Attributes = new[]
{
new AwsNative.IoTEvents.Inputs.InputAttributeArgs
{
JsonPath = "foo",
},
new AwsNative.IoTEvents.Inputs.InputAttributeArgs
{
JsonPath = "bar",
},
},
},
});
});
package main
import (
"github.com/pulumi/pulumi-aws-native/sdk/go/aws/iotevents"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := iotevents.NewInput(ctx, "myInput", &iotevents.InputArgs{
InputName: pulumi.String("myInput"),
InputDescription: pulumi.String("My Input created by CloudFormation"),
InputDefinition: &iotevents.InputDefinitionArgs{
Attributes: iotevents.InputAttributeArray{
&iotevents.InputAttributeArgs{
JsonPath: pulumi.String("foo"),
},
&iotevents.InputAttributeArgs{
JsonPath: pulumi.String("bar"),
},
},
},
})
if err != nil {
return err
}
return nil
})
}
Coming soon!
import pulumi
import pulumi_aws_native as aws_native
my_input = aws_native.iotevents.Input("myInput",
input_name="myInput",
input_description="My Input created by CloudFormation",
input_definition={
"attributes": [
{
"json_path": "foo",
},
{
"json_path": "bar",
},
],
})
import * as pulumi from "@pulumi/pulumi";
import * as aws_native from "@pulumi/aws-native";
const myInput = new aws_native.iotevents.Input("myInput", {
inputName: "myInput",
inputDescription: "My Input created by CloudFormation",
inputDefinition: {
attributes: [
{
jsonPath: "foo",
},
{
jsonPath: "bar",
},
],
},
});
Coming soon!
Example
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AwsNative = Pulumi.AwsNative;
return await Deployment.RunAsync(() =>
{
var myInput = new AwsNative.IoTEvents.Input("myInput", new()
{
InputName = "myInput",
InputDescription = "My Input created by CloudFormation",
InputDefinition = new AwsNative.IoTEvents.Inputs.InputDefinitionArgs
{
Attributes = new[]
{
new AwsNative.IoTEvents.Inputs.InputAttributeArgs
{
JsonPath = "foo",
},
new AwsNative.IoTEvents.Inputs.InputAttributeArgs
{
JsonPath = "bar",
},
},
},
});
});
package main
import (
"github.com/pulumi/pulumi-aws-native/sdk/go/aws/iotevents"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := iotevents.NewInput(ctx, "myInput", &iotevents.InputArgs{
InputName: pulumi.String("myInput"),
InputDescription: pulumi.String("My Input created by CloudFormation"),
InputDefinition: &iotevents.InputDefinitionArgs{
Attributes: iotevents.InputAttributeArray{
&iotevents.InputAttributeArgs{
JsonPath: pulumi.String("foo"),
},
&iotevents.InputAttributeArgs{
JsonPath: pulumi.String("bar"),
},
},
},
})
if err != nil {
return err
}
return nil
})
}
Coming soon!
import pulumi
import pulumi_aws_native as aws_native
my_input = aws_native.iotevents.Input("myInput",
input_name="myInput",
input_description="My Input created by CloudFormation",
input_definition={
"attributes": [
{
"json_path": "foo",
},
{
"json_path": "bar",
},
],
})
import * as pulumi from "@pulumi/pulumi";
import * as aws_native from "@pulumi/aws-native";
const myInput = new aws_native.iotevents.Input("myInput", {
inputName: "myInput",
inputDescription: "My Input created by CloudFormation",
inputDefinition: {
attributes: [
{
jsonPath: "foo",
},
{
jsonPath: "bar",
},
],
},
});
Coming soon!
Create Input Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Input(name: string, args: InputArgs, opts?: CustomResourceOptions);
@overload
def Input(resource_name: str,
args: InputArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Input(resource_name: str,
opts: Optional[ResourceOptions] = None,
input_definition: Optional[InputDefinitionArgs] = None,
input_description: Optional[str] = None,
input_name: Optional[str] = None,
tags: Optional[Sequence[_root_inputs.TagArgs]] = None)
func NewInput(ctx *Context, name string, args InputArgs, opts ...ResourceOption) (*Input, error)
public Input(string name, InputArgs args, CustomResourceOptions? opts = null)
type: aws-native:iotevents:Input
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args InputArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args InputArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args InputArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args InputArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args InputArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Input Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The Input resource accepts the following input properties:
- Input
Definition Pulumi.Aws Native. Io TEvents. Inputs. Input Definition - The definition of the input.
- Input
Description string - A brief description of the input.
- Input
Name string - The name of the input.
- List<Pulumi.
Aws Native. Inputs. Tag> - An array of key-value pairs to apply to this resource. For more information, see Tag.
- Input
Definition InputDefinition Args - The definition of the input.
- Input
Description string - A brief description of the input.
- Input
Name string - The name of the input.
- Tag
Args - An array of key-value pairs to apply to this resource. For more information, see Tag.
- input
Definition InputDefinition - The definition of the input.
- input
Description String - A brief description of the input.
- input
Name String - The name of the input.
- List<Tag>
- An array of key-value pairs to apply to this resource. For more information, see Tag.
- input
Definition InputDefinition - The definition of the input.
- input
Description string - A brief description of the input.
- input
Name string - The name of the input.
- Tag[]
- An array of key-value pairs to apply to this resource. For more information, see Tag.
- input_
definition InputDefinition Args - The definition of the input.
- input_
description str - A brief description of the input.
- input_
name str - The name of the input.
- Sequence[Tag
Args] - An array of key-value pairs to apply to this resource. For more information, see Tag.
- input
Definition Property Map - The definition of the input.
- input
Description String - A brief description of the input.
- input
Name String - The name of the input.
- List<Property Map>
- An array of key-value pairs to apply to this resource. For more information, see Tag.
Outputs
All input properties are implicitly available as output properties. Additionally, the Input resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Supporting Types
InputAttribute, InputAttributeArgs
- Json
Path string - An expression that specifies an attribute-value pair in a JSON structure. Use this to specify an attribute from the JSON payload that is made available by the input. Inputs are derived from messages sent to ITE (
BatchPutMessage
). Each such message contains a JSON payload. The attribute (and its paired value) specified here are available for use in thecondition
expressions used by detectors. Syntax:<field-name>.<field-name>...
- Json
Path string - An expression that specifies an attribute-value pair in a JSON structure. Use this to specify an attribute from the JSON payload that is made available by the input. Inputs are derived from messages sent to ITE (
BatchPutMessage
). Each such message contains a JSON payload. The attribute (and its paired value) specified here are available for use in thecondition
expressions used by detectors. Syntax:<field-name>.<field-name>...
- json
Path String - An expression that specifies an attribute-value pair in a JSON structure. Use this to specify an attribute from the JSON payload that is made available by the input. Inputs are derived from messages sent to ITE (
BatchPutMessage
). Each such message contains a JSON payload. The attribute (and its paired value) specified here are available for use in thecondition
expressions used by detectors. Syntax:<field-name>.<field-name>...
- json
Path string - An expression that specifies an attribute-value pair in a JSON structure. Use this to specify an attribute from the JSON payload that is made available by the input. Inputs are derived from messages sent to ITE (
BatchPutMessage
). Each such message contains a JSON payload. The attribute (and its paired value) specified here are available for use in thecondition
expressions used by detectors. Syntax:<field-name>.<field-name>...
- json_
path str - An expression that specifies an attribute-value pair in a JSON structure. Use this to specify an attribute from the JSON payload that is made available by the input. Inputs are derived from messages sent to ITE (
BatchPutMessage
). Each such message contains a JSON payload. The attribute (and its paired value) specified here are available for use in thecondition
expressions used by detectors. Syntax:<field-name>.<field-name>...
- json
Path String - An expression that specifies an attribute-value pair in a JSON structure. Use this to specify an attribute from the JSON payload that is made available by the input. Inputs are derived from messages sent to ITE (
BatchPutMessage
). Each such message contains a JSON payload. The attribute (and its paired value) specified here are available for use in thecondition
expressions used by detectors. Syntax:<field-name>.<field-name>...
InputDefinition, InputDefinitionArgs
- Attributes
List<Pulumi.
Aws Native. Io TEvents. Inputs. Input Attribute> - The attributes from the JSON payload that are made available by the input. Inputs are derived from messages sent to the ITE system using
BatchPutMessage
. Each such message contains a JSON payload, and those attributes (and their paired values) specified here are available for use in thecondition
expressions used by detectors that monitor this input.
- Attributes
[]Input
Attribute - The attributes from the JSON payload that are made available by the input. Inputs are derived from messages sent to the ITE system using
BatchPutMessage
. Each such message contains a JSON payload, and those attributes (and their paired values) specified here are available for use in thecondition
expressions used by detectors that monitor this input.
- attributes
List<Input
Attribute> - The attributes from the JSON payload that are made available by the input. Inputs are derived from messages sent to the ITE system using
BatchPutMessage
. Each such message contains a JSON payload, and those attributes (and their paired values) specified here are available for use in thecondition
expressions used by detectors that monitor this input.
- attributes
Input
Attribute[] - The attributes from the JSON payload that are made available by the input. Inputs are derived from messages sent to the ITE system using
BatchPutMessage
. Each such message contains a JSON payload, and those attributes (and their paired values) specified here are available for use in thecondition
expressions used by detectors that monitor this input.
- attributes
Sequence[Input
Attribute] - The attributes from the JSON payload that are made available by the input. Inputs are derived from messages sent to the ITE system using
BatchPutMessage
. Each such message contains a JSON payload, and those attributes (and their paired values) specified here are available for use in thecondition
expressions used by detectors that monitor this input.
- attributes List<Property Map>
- The attributes from the JSON payload that are made available by the input. Inputs are derived from messages sent to the ITE system using
BatchPutMessage
. Each such message contains a JSON payload, and those attributes (and their paired values) specified here are available for use in thecondition
expressions used by detectors that monitor this input.
Tag, TagArgs
Package Details
- Repository
- AWS Native pulumi/pulumi-aws-native
- License
- Apache-2.0
We recommend new projects start with resources from the AWS provider.