Interface CfnDataset.IContainerActionProperty
Information needed to run the "containerAction" to produce data set contents.
Namespace: Amazon.CDK.AWS.IoTAnalytics
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IContainerActionProperty
Syntax (vb)
Public Interface IContainerActionProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.IoTAnalytics;
var containerActionProperty = new ContainerActionProperty {
ExecutionRoleArn = "executionRoleArn",
Image = "image",
ResourceConfiguration = new ResourceConfigurationProperty {
ComputeType = "computeType",
VolumeSizeInGb = 123
},
// the properties below are optional
Variables = new [] { new VariableProperty {
VariableName = "variableName",
// the properties below are optional
DatasetContentVersionValue = new DatasetContentVersionValueProperty {
DatasetName = "datasetName"
},
DoubleValue = 123,
OutputFileUriValue = new OutputFileUriValueProperty {
FileName = "fileName"
},
StringValue = "stringValue"
} }
};
Synopsis
Properties
Execution |
The ARN of the role which gives permission to the system to access needed resources in order to run the "containerAction". |
Image | The ARN of the Docker container stored in your account. |
Resource |
Configuration of the resource which executes the "containerAction". |
Variables | The values of variables used within the context of the execution of the containerized application (basically, parameters passed to the application). |
Properties
ExecutionRoleArn
The ARN of the role which gives permission to the system to access needed resources in order to run the "containerAction".
string ExecutionRoleArn { get; }
Property Value
System.
Remarks
This includes, at minimum, permission to retrieve the data set contents which are the input to the containerized application.
Image
The ARN of the Docker container stored in your account.
string Image { get; }
Property Value
System.
Remarks
The Docker container contains an application and needed support libraries and is used to generate data set contents.
ResourceConfiguration
Configuration of the resource which executes the "containerAction".
object ResourceConfiguration { get; }
Property Value
System.
Remarks
Variables
The values of variables used within the context of the execution of the containerized application (basically, parameters passed to the application).
virtual object Variables { get; }
Property Value
System.
Remarks
Each variable must have a name and a value given by one of "stringValue", "datasetContentVersionValue", or "outputFileUriValue".