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();