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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnApplication.MaximumAllowedResourcesPropertystatic final classAn 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.- See Also:
-
getMemory
The maximum allowed resources for an application.- See Also:
-
getDisk
The maximum allowed disk for an application.- See Also:
-
builder
-