@Stability(value=Stable)
public static interface CfnDataset.ContainerActionProperty
extends software.amazon.jsii.JsiiSerializable
// 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.*;
ContainerActionProperty containerActionProperty = ContainerActionProperty.builder()
.executionRoleArn("executionRoleArn")
.image("image")
.resourceConfiguration(ResourceConfigurationProperty.builder()
.computeType("computeType")
.volumeSizeInGb(123)
.build())
// the properties below are optional
.variables(List.of(VariableProperty.builder()
.variableName("variableName")
// the properties below are optional
.datasetContentVersionValue(DatasetContentVersionValueProperty.builder()
.datasetName("datasetName")
.build())
.doubleValue(123)
.outputFileUriValue(OutputFileUriValueProperty.builder()
.fileName("fileName")
.build())
.stringValue("stringValue")
.build()))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnDataset.ContainerActionProperty.Builder
A builder for
CfnDataset.ContainerActionProperty |
static class |
CfnDataset.ContainerActionProperty.Jsii$Proxy
An implementation for
CfnDataset.ContainerActionProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnDataset.ContainerActionProperty.Builder |
builder() |
String |
getExecutionRoleArn()
`CfnDataset.ContainerActionProperty.ExecutionRoleArn`.
|
String |
getImage()
`CfnDataset.ContainerActionProperty.Image`.
|
Object |
getResourceConfiguration()
`CfnDataset.ContainerActionProperty.ResourceConfiguration`.
|
default Object |
getVariables()
`CfnDataset.ContainerActionProperty.Variables`.
|
@Stability(value=Stable) @NotNull String getExecutionRoleArn()
@Stability(value=Stable) @NotNull String getImage()
@Stability(value=Stable) @NotNull Object getResourceConfiguration()
@Stability(value=Stable) @Nullable default Object getVariables()
@Stability(value=Stable) static CfnDataset.ContainerActionProperty.Builder builder()
Copyright © 2021. All rights reserved.