interface ResourceConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoTAnalytics.Mixins.CfnDatasetPropsMixin.ResourceConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiotanalytics/mixins#CfnDatasetPropsMixin_ResourceConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.iotanalytics.mixins.CfnDatasetPropsMixin.ResourceConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_iotanalytics.mixins.CfnDatasetPropsMixin.ResourceConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_iotanalytics » mixins » CfnDatasetPropsMixin » 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 { mixins as iotanalytics_mixins } from '@aws-cdk/mixins-preview/aws-iotanalytics';
const resourceConfigurationProperty: iotanalytics_mixins.CfnDatasetPropsMixin.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
(optional)
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
(optional)
The size, in GB, of the persistent storage available to the resource instance used to execute the containerAction (min: 1, max: 50).

.NET
Go
Java
Python
TypeScript