Interface CfnQuotaShareMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnQuotaShareMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-31T09:54:42.993Z")
@Stability(Stable)
public interface CfnQuotaShareMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnQuotaSharePropsMixin.
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.*;
CfnQuotaShareMixinProps cfnQuotaShareMixinProps = CfnQuotaShareMixinProps.builder()
.capacityLimits(List.of(QuotaShareCapacityLimitProperty.builder()
.capacityUnit("capacityUnit")
.maxCapacity(123)
.build()))
.jobQueue("jobQueue")
.preemptionConfiguration(QuotaSharePreemptionConfigurationProperty.builder()
.inSharePreemption("inSharePreemption")
.build())
.quotaShareName("quotaShareName")
.resourceSharingConfiguration(QuotaShareResourceSharingConfigurationProperty.builder()
.borrowLimit(123)
.strategy("strategy")
.build())
.state("state")
.tags(Map.of(
"tagsKey", "tags"))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnQuotaShareMixinPropsstatic final classAn implementation forCfnQuotaShareMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectThe capacity limits for the quota share.default StringThe Amazon Resource Name (ARN) or name of the job queue.default ObjectReturns union: eitherIResolvableorCfnQuotaSharePropsMixin.QuotaSharePreemptionConfigurationPropertydefault StringThe name of the quota share.default ObjectReturns union: eitherIResolvableorCfnQuotaSharePropsMixin.QuotaShareResourceSharingConfigurationPropertydefault StringgetState()The state of the quota share.getTags()A key-value pair to associate with a resource.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCapacityLimits
The capacity limits for the quota share.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnQuotaSharePropsMixin.QuotaShareCapacityLimitProperty>- See Also:
-
getJobQueue
The Amazon Resource Name (ARN) or name of the job queue.- See Also:
-
getPreemptionConfiguration
Returns union: eitherIResolvableorCfnQuotaSharePropsMixin.QuotaSharePreemptionConfigurationProperty- See Also:
-
getResourceSharingConfiguration
Returns union: eitherIResolvableorCfnQuotaSharePropsMixin.QuotaShareResourceSharingConfigurationProperty- See Also:
-
getState
The state of the quota share.- See Also:
-
getTags
A key-value pair to associate with a resource.- See Also:
-
builder
- Returns:
- a
CfnQuotaShareMixinProps.BuilderofCfnQuotaShareMixinProps
-