LimitReference
- class aws_cdk.aws_deadline.LimitReference(*, farm_id, limit_id)
Bases:
object
A reference to a Limit resource.
- Parameters:
farm_id (
str
) – The FarmId of the Limit resource.limit_id (
str
) – The LimitId of the Limit resource.
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_deadline as deadline limit_reference = deadline.LimitReference( farm_id="farmId", limit_id="limitId" )
Attributes
- farm_id
The FarmId of the Limit resource.
- limit_id
The LimitId of the Limit resource.