Interface CfnDatasetPropsMixin.ResourceConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDatasetPropsMixin.ResourceConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnDatasetPropsMixin
@Stability(Stable)
public static interface CfnDatasetPropsMixin.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.cfnpropertymixins.services.iotanalytics.*;
ResourceConfigurationProperty resourceConfigurationProperty = ResourceConfigurationProperty.builder()
.computeType("computeType")
.volumeSizeInGb(123)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDatasetPropsMixin.ResourceConfigurationPropertystatic final classAn implementation forCfnDatasetPropsMixin.ResourceConfigurationProperty -
Method Summary
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
-