aws-cdk-lib.aws_iotanalytics.CfnDataset.ContainerActionProperty

interface ContainerActionProperty

LanguageType name
.NETAmazon.CDK.AWS.IoTAnalytics.CfnDataset.ContainerActionProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsiotanalytics#CfnDataset_ContainerActionProperty
Javasoftware.amazon.awscdk.services.iotanalytics.CfnDataset.ContainerActionProperty
Pythonaws_cdk.aws_iotanalytics.CfnDataset.ContainerActionProperty
TypeScript aws-cdk-lib » aws_iotanalytics » CfnDataset » ContainerActionProperty

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 { aws_iotanalytics as iotanalytics } from 'aws-cdk-lib';
const containerActionProperty: iotanalytics.CfnDataset.ContainerActionProperty = {
  executionRoleArn: 'executionRoleArn',
  image: 'image',
  resourceConfiguration: {
    computeType: 'computeType',
    volumeSizeInGb: 123,
  },

  // the properties below are optional
  variables: [{
    variableName: 'variableName',

    // the properties below are optional
    datasetContentVersionValue: {
      datasetName: 'datasetName',
    },
    doubleValue: 123,
    outputFileUriValue: {
      fileName: 'fileName',
    },
    stringValue: 'stringValue',
  }],
};

Properties

NameTypeDescription
executionRoleArnstringThe ARN of the role which gives permission to the system to access needed resources in order to run the "containerAction".
imagestringThe ARN of the Docker container stored in your account.
resourceConfigurationIResolvable | ResourceConfigurationPropertyConfiguration of the resource which executes the "containerAction".
variables?IResolvable | IResolvable | VariableProperty[]The values of variables used within the context of the execution of the containerized application (basically, parameters passed to the application).

executionRoleArn

Type: string

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.


image

Type: string

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.


resourceConfiguration

Type: IResolvable | ResourceConfigurationProperty

Configuration of the resource which executes the "containerAction".


variables?

Type: IResolvable | IResolvable | VariableProperty[] (optional)

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