interface CfnInputProps
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.IoTEvents.CfnInputProps |
Java | software.amazon.awscdk.services.iotevents.CfnInputProps |
Python | aws_cdk.aws_iotevents.CfnInputProps |
TypeScript | @aws-cdk/aws-iotevents » CfnInputProps |
Properties for defining a CfnInput
.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as iotevents from '@aws-cdk/aws-iotevents';
const cfnInputProps: iotevents.CfnInputProps = {
inputDefinition: {
attributes: [{
jsonPath: 'jsonPath',
}],
},
// the properties below are optional
inputDescription: 'inputDescription',
inputName: 'inputName',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
Name | Type | Description |
---|---|---|
input | IResolvable | Input | The definition of the input. |
input | string | A brief description of the input. |
input | string | The name of the input. |
tags? | Cfn [] | An array of key-value pairs to apply to this resource. |
inputDefinition
Type:
IResolvable
|
Input
The definition of the input.
inputDescription?
Type:
string
(optional)
A brief description of the input.
inputName?
Type:
string
(optional)
The name of the input.
tags?
Type:
Cfn
[]
(optional)
An array of key-value pairs to apply to this resource.
For more information, see Tag .