interface CfnInputMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoTEvents.Mixins.CfnInputMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiotevents/mixins#CfnInputMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.iotevents.mixins.CfnInputMixinProps |
Python | aws_cdk.mixins_preview.aws_iotevents.mixins.CfnInputMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_iotevents » mixins » CfnInputMixinProps |
Properties for CfnInputPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotevents-input.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as iotevents_mixins } from '@aws-cdk/mixins-preview/aws-iotevents';
const cfnInputMixinProps: iotevents_mixins.CfnInputMixinProps = {
inputDefinition: {
attributes: [{
jsonPath: 'jsonPath',
}],
},
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
(optional)
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 .

.NET
Go
Java
Python
TypeScript