Interface CfnApplication.MaximumAllowedResourcesProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnApplication.MaximumAllowedResourcesProperty.Jsii$Proxy
- Enclosing class:
CfnApplication
@Stability(Stable)
public static interface CfnApplication.MaximumAllowedResourcesProperty
extends software.amazon.jsii.JsiiSerializable
The maximum allowed cumulative resources for an application.
No new resources will be created once the limit is hit.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.emrserverless.*; MaximumAllowedResourcesProperty maximumAllowedResourcesProperty = MaximumAllowedResourcesProperty.builder() .cpu("cpu") .memory("memory") // the properties below are optional .disk("disk") .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnApplication.MaximumAllowedResourcesProperty
static final class
An implementation forCfnApplication.MaximumAllowedResourcesProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCpu
The maximum allowed CPU for an application.Minimum : 1
Maximum : 15
Pattern :
^[1-9][0-9]*(\\s)?(vCPU|vcpu|VCPU)?$
-
getMemory
The maximum allowed resources for an application.Minimum : 1
Maximum : 15
Pattern :
^[1-9][0-9]*(\\s)?(GB|gb|gB|Gb)?$
-
getDisk
The maximum allowed disk for an application.Minimum : 1
Maximum : 15
Pattern :
^[1-9][0-9]*(\\s)?(GB|gb|gB|Gb)$"
-
builder
-