Interface CfnDataset.ResourceConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataset.ResourceConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnDataset
@Stability(Stable)
public static interface CfnDataset.ResourceConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.iotanalytics.*;
ResourceConfigurationProperty resourceConfigurationProperty = ResourceConfigurationProperty.builder()
.computeType("computeType")
.volumeSizeInGb(123)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDataset.ResourceConfigurationPropertystatic final classAn implementation forCfnDataset.ResourceConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The type of the compute resource used to execute thecontainerAction.The size, in GB, of the persistent storage available to the resource instance used to execute thecontainerAction(min: 1, max: 50).Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getComputeType
The type of the compute resource used to execute thecontainerAction.Possible values are:
ACU_1(vCPU=4, memory=16 GiB) orACU_2(vCPU=8, memory=32 GiB).- See Also:
-
getVolumeSizeInGb
The size, in GB, of the persistent storage available to the resource instance used to execute thecontainerAction(min: 1, max: 50).- See Also:
-
builder
-