interface ResourceConfigurationProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.IoTAnalytics.CfnDataset.ResourceConfigurationProperty |
Java | software.amazon.awscdk.services.iotanalytics.CfnDataset.ResourceConfigurationProperty |
Python | aws_cdk.aws_iotanalytics.CfnDataset.ResourceConfigurationProperty |
TypeScript | @aws-cdk/aws-iotanalytics » CfnDataset » ResourceConfigurationProperty |
The configuration of the resource used to execute the containerAction
.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as iotanalytics from '@aws-cdk/aws-iotanalytics';
const resourceConfigurationProperty: iotanalytics.CfnDataset.ResourceConfigurationProperty = {
computeType: 'computeType',
volumeSizeInGb: 123,
};
Properties
Name | Type | Description |
---|---|---|
compute | string | The type of the compute resource used to execute the containerAction . |
volume | number | The size, in GB, of the persistent storage available to the resource instance used to execute the containerAction (min: 1, max: 50). |
computeType
Type:
string
The type of the compute resource used to execute the containerAction
.
Possible values are: ACU_1
(vCPU=4, memory=16 GiB) or ACU_2
(vCPU=8, memory=32 GiB).
volumeSizeInGb
Type:
number
The size, in GB, of the persistent storage available to the resource instance used to execute the containerAction
(min: 1, max: 50).