interface ActionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoTAnalytics.Mixins.CfnDatasetPropsMixin.ActionProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiotanalytics/mixins#CfnDatasetPropsMixin_ActionProperty |
Java | software.amazon.awscdk.mixins.preview.services.iotanalytics.mixins.CfnDatasetPropsMixin.ActionProperty |
Python | aws_cdk.mixins_preview.aws_iotanalytics.mixins.CfnDatasetPropsMixin.ActionProperty |
TypeScript | @aws-cdk/mixins-preview » aws_iotanalytics » mixins » CfnDatasetPropsMixin » ActionProperty |
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 actionProperty: iotanalytics_mixins.CfnDatasetPropsMixin.ActionProperty = {
actionName: 'actionName',
containerAction: {
executionRoleArn: 'executionRoleArn',
image: 'image',
resourceConfiguration: {
computeType: 'computeType',
volumeSizeInGb: 123,
},
variables: [{
datasetContentVersionValue: {
datasetName: 'datasetName',
},
doubleValue: 123,
outputFileUriValue: {
fileName: 'fileName',
},
stringValue: 'stringValue',
variableName: 'variableName',
}],
},
queryAction: {
filters: [{
deltaTime: {
offsetSeconds: 123,
timeExpression: 'timeExpression',
},
}],
sqlQuery: 'sqlQuery',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| action | string | The name of the data set action by which data set contents are automatically created. |
| container | IResolvable | Container | Information which allows the system to run a containerized application in order to create the data set contents. |
| query | IResolvable | Query | An "SqlQueryDatasetAction" object that uses an SQL query to automatically create data set contents. |
actionName?
Type:
string
(optional)
The name of the data set action by which data set contents are automatically created.
containerAction?
Type:
IResolvable | Container
(optional)
Information which allows the system to run a containerized application in order to create the data set contents.
The application must be in a Docker container along with any needed support libraries.
queryAction?
Type:
IResolvable | Query
(optional)
An "SqlQueryDatasetAction" object that uses an SQL query to automatically create data set contents.

.NET
Go
Java
Python
TypeScript