interface ContainerActionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoTAnalytics.Mixins.CfnDatasetPropsMixin.ContainerActionProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiotanalytics/mixins#CfnDatasetPropsMixin_ContainerActionProperty |
Java | software.amazon.awscdk.mixins.preview.services.iotanalytics.mixins.CfnDatasetPropsMixin.ContainerActionProperty |
Python | aws_cdk.mixins_preview.aws_iotanalytics.mixins.CfnDatasetPropsMixin.ContainerActionProperty |
TypeScript | @aws-cdk/mixins-preview » aws_iotanalytics » mixins » CfnDatasetPropsMixin » 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 { mixins as iotanalytics_mixins } from '@aws-cdk/mixins-preview/aws-iotanalytics';
const containerActionProperty: iotanalytics_mixins.CfnDatasetPropsMixin.ContainerActionProperty = {
executionRoleArn: 'executionRoleArn',
image: 'image',
resourceConfiguration: {
computeType: 'computeType',
volumeSizeInGb: 123,
},
variables: [{
datasetContentVersionValue: {
datasetName: 'datasetName',
},
doubleValue: 123,
outputFileUriValue: {
fileName: 'fileName',
},
stringValue: 'stringValue',
variableName: 'variableName',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| execution | string | The ARN of the role which gives permission to the system to access needed resources in order to run the "containerAction". |
| image? | string | The ARN of the Docker container stored in your account. |
| resource | IResolvable | Resource | Configuration of the resource which executes the "containerAction". |
| variables? | IResolvable | (IResolvable | Variable)[] | The values of variables used within the context of the execution of the containerized application (basically, parameters passed to the application). |
executionRoleArn?
Type:
string
(optional)
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
(optional)
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 | Resource
(optional)
Configuration of the resource which executes the "containerAction".
variables?
Type:
IResolvable | (IResolvable | Variable)[]
(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".

.NET
Go
Java
Python
TypeScript