Show / Hide Table of Contents

Class CfnDataset.ContainerActionProperty

Information needed to run the "containerAction" to produce data set contents.

Inheritance
System.Object
CfnDataset.ContainerActionProperty
Implements
CfnDataset.IContainerActionProperty
Namespace: Amazon.CDK.AWS.IoTAnalytics
Assembly: Amazon.CDK.AWS.IoTAnalytics.dll
Syntax (csharp)
public class ContainerActionProperty : Object, CfnDataset.IContainerActionProperty
Syntax (vb)
Public Class ContainerActionProperty
    Inherits Object
    Implements CfnDataset.IContainerActionProperty
Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-dataset-containeraction.html

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

Constructors

ContainerActionProperty()

Properties

ExecutionRoleArn

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.

ResourceConfiguration

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).

Constructors

ContainerActionProperty()

public ContainerActionProperty()

Properties

ExecutionRoleArn

The ARN of the role which gives permission to the system to access needed resources in order to run the "containerAction".

public string ExecutionRoleArn { get; set; }
Property Value

System.String

Remarks

This includes, at minimum, permission to retrieve the data set contents which are the input to the containerized application.

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-dataset-containeraction.html#cfn-iotanalytics-dataset-containeraction-executionrolearn

Image

The ARN of the Docker container stored in your account.

public string Image { get; set; }
Property Value

System.String

Remarks

The Docker container contains an application and needed support libraries and is used to generate data set contents.

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-dataset-containeraction.html#cfn-iotanalytics-dataset-containeraction-image

ResourceConfiguration

Configuration of the resource which executes the "containerAction".

public object ResourceConfiguration { get; set; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-dataset-containeraction.html#cfn-iotanalytics-dataset-containeraction-resourceconfiguration

Variables

The values of variables used within the context of the execution of the containerized application (basically, parameters passed to the application).

public object Variables { get; set; }
Property Value

System.Object

Remarks

Each variable must have a name and a value given by one of "stringValue", "datasetContentVersionValue", or "outputFileUriValue".

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-dataset-containeraction.html#cfn-iotanalytics-dataset-containeraction-variables

Implements

CfnDataset.IContainerActionProperty
Back to top Generated by DocFX