interface InputReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.IoTEvents.InputReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsiotevents#InputReference |
Java | software.amazon.awscdk.interfaces.iotevents.InputReference |
Python | aws_cdk.interfaces.aws_iotevents.InputReference |
TypeScript | aws-cdk-lib » interfaces » aws_iotevents » InputReference |
A reference to a Input resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_iotevents as interfaces_aws_iotevents } from 'aws-cdk-lib/interfaces';
const inputReference: interfaces_aws_iotevents.InputReference = {
inputName: 'inputName',
};
Properties
| Name | Type | Description |
|---|---|---|
| input | string | The InputName of the Input resource. |
inputName
Type:
string
The InputName of the Input resource.

.NET
Go
Java
Python
TypeScript