interface InitialCapacityConfigKeyValuePairProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EMRServerless.Mixins.CfnApplicationPropsMixin.InitialCapacityConfigKeyValuePairProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsemrserverless/mixins#CfnApplicationPropsMixin_InitialCapacityConfigKeyValuePairProperty |
Java | software.amazon.awscdk.mixins.preview.services.emrserverless.mixins.CfnApplicationPropsMixin.InitialCapacityConfigKeyValuePairProperty |
Python | aws_cdk.mixins_preview.aws_emrserverless.mixins.CfnApplicationPropsMixin.InitialCapacityConfigKeyValuePairProperty |
TypeScript | @aws-cdk/mixins-preview » aws_emrserverless » mixins » CfnApplicationPropsMixin » InitialCapacityConfigKeyValuePairProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as emrserverless_mixins } from '@aws-cdk/mixins-preview/aws-emrserverless';
const initialCapacityConfigKeyValuePairProperty: emrserverless_mixins.CfnApplicationPropsMixin.InitialCapacityConfigKeyValuePairProperty = {
key: 'key',
value: {
workerConfiguration: {
cpu: 'cpu',
disk: 'disk',
diskType: 'diskType',
memory: 'memory',
},
workerCount: 123,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| key? | string | Worker type for an analytics framework. |
| value? | IResolvable | Initial |
key?
Type:
string
(optional)
Worker type for an analytics framework.
value?
Type:
IResolvable | Initial
(optional)

.NET
Go
Java
Python
TypeScript