interface TotalLocalStorageGBRequestProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ECS.CfnCapacityProvider.TotalLocalStorageGBRequestProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsecs#CfnCapacityProvider_TotalLocalStorageGBRequestProperty |
Java | software.amazon.awscdk.services.ecs.CfnCapacityProvider.TotalLocalStorageGBRequestProperty |
Python | aws_cdk.aws_ecs.CfnCapacityProvider.TotalLocalStorageGBRequestProperty |
TypeScript | aws-cdk-lib » aws_ecs » CfnCapacityProvider » TotalLocalStorageGBRequestProperty |
The minimum and maximum total local storage in gigabytes (GB) for instance types with local storage.
This is useful for workloads that require local storage for temporary data or caching.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ecs as ecs } from 'aws-cdk-lib';
const totalLocalStorageGBRequestProperty: ecs.CfnCapacityProvider.TotalLocalStorageGBRequestProperty = {
max: 123,
min: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| max? | number | The maximum total local storage in GB. |
| min? | number | The minimum total local storage in GB. |
max?
Type:
number
(optional)
The maximum total local storage in GB.
Instance types with more local storage are excluded from selection.
min?
Type:
number
(optional)
The minimum total local storage in GB.
Instance types with less local storage are excluded from selection.

.NET
Go
Java
Python
TypeScript