@Stability(value=Stable)
public static interface CfnDataset.ResourceConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnDataset.ResourceConfigurationProperty.Builder
A builder for
CfnDataset.ResourceConfigurationProperty |
static class |
CfnDataset.ResourceConfigurationProperty.Jsii$Proxy
An implementation for
CfnDataset.ResourceConfigurationProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnDataset.ResourceConfigurationProperty.Builder |
builder() |
String |
getComputeType()
The type of the compute resource used to execute the `containerAction` .
|
Number |
getVolumeSizeInGb()
The size, in GB, of the persistent storage available to the resource instance used to execute the `containerAction` (min: 1, max: 50).
|
@Stability(value=Stable) @NotNull String getComputeType()
Possible values are: ACU_1 (vCPU=4, memory=16 GiB) or ACU_2 (vCPU=8, memory=32 GiB).
@Stability(value=Stable) @NotNull Number getVolumeSizeInGb()
@Stability(value=Stable) static CfnDataset.ResourceConfigurationProperty.Builder builder()
Copyright © 2022. All rights reserved.