interface MaximumAllowedResourcesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.EMRServerless.CfnApplicationPropsMixin.MaximumAllowedResourcesProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsemrserverless#CfnApplicationPropsMixin_MaximumAllowedResourcesProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.emrserverless.CfnApplicationPropsMixin.MaximumAllowedResourcesProperty |
Python | aws_cdk.cfn_property_mixins.aws_emrserverless.CfnApplicationPropsMixin.MaximumAllowedResourcesProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_emrserverless » CfnApplicationPropsMixin » MaximumAllowedResourcesProperty |
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 { aws_emrserverless as emrserverless } from '@aws-cdk/cfn-property-mixins';
const maximumAllowedResourcesProperty: emrserverless.CfnApplicationPropsMixin.MaximumAllowedResourcesProperty = {
cpu: 'cpu',
disk: 'disk',
memory: 'memory',
};
Properties
| Name | Type | Description |
|---|---|---|
| cpu? | string | The maximum allowed CPU for an application. |
| disk? | string | The maximum allowed disk for an application. |
| memory? | string | The maximum allowed resources for an application. |
cpu?
Type:
string
(optional)
The maximum allowed CPU for an application.
disk?
Type:
string
(optional)
The maximum allowed disk for an application.
memory?
Type:
string
(optional)
The maximum allowed resources for an application.

.NET
Go
Java
Python
TypeScript