Interface CfnConsumableResourceMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnConsumableResourceMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:19:56.329Z")
@Stability(Stable)
public interface CfnConsumableResourceMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnConsumableResourcePropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.batch.*;
CfnConsumableResourceMixinProps cfnConsumableResourceMixinProps = CfnConsumableResourceMixinProps.builder()
.consumableResourceName("consumableResourceName")
.resourceType("resourceType")
.tags(Map.of(
"tagsKey", "tags"))
.totalQuantity(123)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnConsumableResourceMixinPropsstatic final classAn implementation forCfnConsumableResourceMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe name of the consumable resource.default StringIndicates whether the resource is available to be re-used after a job completes.getTags()The tags that you apply to the consumable resource to help you categorize and organize your resources.default NumberThe total amount of the consumable resource that is available.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getConsumableResourceName
The name of the consumable resource.- See Also:
-
getResourceType
Indicates whether the resource is available to be re-used after a job completes. Can be one of:.REPLENISHABLENON_REPLENISHABLE
- See Also:
-
getTags
The tags that you apply to the consumable resource to help you categorize and organize your resources.Each tag consists of a key and an optional value. For more information, see Tagging your AWS Batch resources .
- See Also:
-
getTotalQuantity
The total amount of the consumable resource that is available.- See Also:
-
builder
-