aws-cdk-lib.aws_iotanalytics.CfnDataset.ResourceConfigurationProperty

interface ResourceConfigurationProperty

LanguageType name
.NETAmazon.CDK.AWS.IoTAnalytics.CfnDataset.ResourceConfigurationProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsiotanalytics#CfnDataset_ResourceConfigurationProperty
Javasoftware.amazon.awscdk.services.iotanalytics.CfnDataset.ResourceConfigurationProperty
Pythonaws_cdk.aws_iotanalytics.CfnDataset.ResourceConfigurationProperty
TypeScript aws-cdk-lib » 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 { aws_iotanalytics as iotanalytics } from 'aws-cdk-lib';
const resourceConfigurationProperty: iotanalytics.CfnDataset.ResourceConfigurationProperty = {
  computeType: 'computeType',
  volumeSizeInGb: 123,
};

Properties

NameTypeDescription
computeTypestringThe type of the compute resource used to execute the containerAction .
volumeSizeInGbnumberThe 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).