interface CgroupCustomSettingProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.PCS.CfnClusterPropsMixin.CgroupCustomSettingProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awspcs#CfnClusterPropsMixin_CgroupCustomSettingProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.pcs.CfnClusterPropsMixin.CgroupCustomSettingProperty |
Python | aws_cdk.cfn_property_mixins.aws_pcs.CfnClusterPropsMixin.CgroupCustomSettingProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_pcs » CfnClusterPropsMixin » CgroupCustomSettingProperty |
Additional cgroup configuration settings.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_pcs as pcs } from '@aws-cdk/cfn-property-mixins';
const cgroupCustomSettingProperty: pcs.CfnClusterPropsMixin.CgroupCustomSettingProperty = {
parameterName: 'parameterName',
parameterValue: 'parameterValue',
};
Properties
| Name | Type | Description |
|---|---|---|
| parameter | string | The cgroup.conf parameter name. |
| parameter | string | The value for the cgroup.conf parameter. |
parameterName?
Type:
string
(optional)
The cgroup.conf parameter name.
parameterValue?
Type:
string
(optional)
The value for the cgroup.conf parameter.

.NET
Go
Java
Python
TypeScript