interface InitialCapacityConfigProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.EMRServerless.CfnApplication.InitialCapacityConfigProperty | 
|  Java | software.amazon.awscdk.services.emrserverless.CfnApplication.InitialCapacityConfigProperty | 
|  Python | aws_cdk.aws_emrserverless.CfnApplication.InitialCapacityConfigProperty | 
|  TypeScript | @aws-cdk/aws-emrserverless»CfnApplication»InitialCapacityConfigProperty | 
The initial capacity configuration per worker.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as emrserverless from '@aws-cdk/aws-emrserverless';
const initialCapacityConfigProperty: emrserverless.CfnApplication.InitialCapacityConfigProperty = {
  workerConfiguration: {
    cpu: 'cpu',
    memory: 'memory',
    // the properties below are optional
    disk: 'disk',
  },
  workerCount: 123,
};
Properties
| Name | Type | Description | 
|---|---|---|
| worker | IResolvable | Worker | The resource configuration of the initial capacity configuration. | 
| worker | number | The number of workers in the initial capacity configuration. | 
workerConfiguration
Type:
IResolvable | Worker
The resource configuration of the initial capacity configuration.
workerCount
Type:
number
The number of workers in the initial capacity configuration.
Minimum : 1
Maximum : 1000000
