Interface CfnDatasetPropsMixin.ContainerActionProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDatasetPropsMixin.ContainerActionProperty.Jsii$Proxy
- Enclosing class:
CfnDatasetPropsMixin
@Stability(Stable)
public static interface CfnDatasetPropsMixin.ContainerActionProperty
extends software.amazon.jsii.JsiiSerializable
Information needed to run the "containerAction" to produce data set contents.
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.*;
ContainerActionProperty containerActionProperty = ContainerActionProperty.builder()
.executionRoleArn("executionRoleArn")
.image("image")
.resourceConfiguration(ResourceConfigurationProperty.builder()
.computeType("computeType")
.volumeSizeInGb(123)
.build())
.variables(List.of(VariableProperty.builder()
.datasetContentVersionValue(DatasetContentVersionValueProperty.builder()
.datasetName("datasetName")
.build())
.doubleValue(123)
.outputFileUriValue(OutputFileUriValueProperty.builder()
.fileName("fileName")
.build())
.stringValue("stringValue")
.variableName("variableName")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDatasetPropsMixin.ContainerActionPropertystatic final classAn implementation forCfnDatasetPropsMixin.ContainerActionProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe ARN of the role which gives permission to the system to access needed resources in order to run the "containerAction".default StringgetImage()The ARN of the Docker container stored in your account.default ObjectConfiguration of the resource which executes the "containerAction".default ObjectThe values of variables used within the context of the execution of the containerized application (basically, parameters passed to the application).Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getExecutionRoleArn
The ARN of the role which gives permission to the system to access needed resources in order to run the "containerAction".This includes, at minimum, permission to retrieve the data set contents which are the input to the containerized application.
- See Also:
-
getImage
The ARN of the Docker container stored in your account.The Docker container contains an application and needed support libraries and is used to generate data set contents.
- See Also:
-
getResourceConfiguration
Configuration of the resource which executes the "containerAction".Returns union: either
IResolvableorCfnDatasetPropsMixin.ResourceConfigurationProperty- See Also:
-
getVariables
The values of variables used within the context of the execution of the containerized application (basically, parameters passed to the application).Each variable must have a name and a value given by one of "stringValue", "datasetContentVersionValue", or "outputFileUriValue".
Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnDatasetPropsMixin.VariableProperty>- See Also:
-
builder
-