interface LimitReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Deadline.LimitReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsdeadline#LimitReference |
Java | software.amazon.awscdk.interfaces.deadline.LimitReference |
Python | aws_cdk.interfaces.aws_deadline.LimitReference |
TypeScript | aws-cdk-lib » interfaces » aws_deadline » LimitReference |
A reference to a Limit resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_deadline as interfaces_deadline } from 'aws-cdk-lib/interfaces';
const limitReference: interfaces_deadline.LimitReference = {
farmId: 'farmId',
limitId: 'limitId',
};
Properties
| Name | Type | Description |
|---|---|---|
| farm | string | The FarmId of the Limit resource. |
| limit | string | The LimitId of the Limit resource. |
farmId
Type:
string
The FarmId of the Limit resource.
limitId
Type:
string
The LimitId of the Limit resource.

.NET
Go
Java
Python
TypeScript