interface ManagedInstancesStorageConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ECS.Mixins.CfnCapacityProviderPropsMixin.ManagedInstancesStorageConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsecs/mixins#CfnCapacityProviderPropsMixin_ManagedInstancesStorageConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.ecs.mixins.CfnCapacityProviderPropsMixin.ManagedInstancesStorageConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_ecs.mixins.CfnCapacityProviderPropsMixin.ManagedInstancesStorageConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_ecs » mixins » CfnCapacityProviderPropsMixin » ManagedInstancesStorageConfigurationProperty |
The storage configuration for Amazon ECS Managed Instances.
This defines the root volume configuration for the instances.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as ecs_mixins } from '@aws-cdk/mixins-preview/aws-ecs';
const managedInstancesStorageConfigurationProperty: ecs_mixins.CfnCapacityProviderPropsMixin.ManagedInstancesStorageConfigurationProperty = {
storageSizeGiB: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| storage | number | The size of the tasks volume. |
storageSizeGiB?
Type:
number
(optional)
The size of the tasks volume.

.NET
Go
Java
Python
TypeScript