Class: Aws::IoTAnalytics::Types::ContainerDatasetAction

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-iotanalytics/types.rb

Overview

Information required to run the ‘containerAction` to produce dataset contents.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#execution_role_arnString

The ARN of the role that gives permission to the system to access required resources to run the ‘containerAction`. This includes, at minimum, permission to retrieve the dataset contents that are the input to the containerized application.

Returns:

  • (String)


379
380
381
382
383
384
385
386
# File 'lib/aws-sdk-iotanalytics/types.rb', line 379

class ContainerDatasetAction < Struct.new(
  :image,
  :execution_role_arn,
  :resource_configuration,
  :variables)
  SENSITIVE = []
  include Aws::Structure
end

#imageString

The ARN of the Docker container stored in your account. The Docker container contains an application and required support libraries and is used to generate dataset contents.

Returns:

  • (String)


379
380
381
382
383
384
385
386
# File 'lib/aws-sdk-iotanalytics/types.rb', line 379

class ContainerDatasetAction < Struct.new(
  :image,
  :execution_role_arn,
  :resource_configuration,
  :variables)
  SENSITIVE = []
  include Aws::Structure
end

#resource_configurationTypes::ResourceConfiguration

Configuration of the resource that executes the ‘containerAction`.



379
380
381
382
383
384
385
386
# File 'lib/aws-sdk-iotanalytics/types.rb', line 379

class ContainerDatasetAction < Struct.new(
  :image,
  :execution_role_arn,
  :resource_configuration,
  :variables)
  SENSITIVE = []
  include Aws::Structure
end

#variablesArray<Types::Variable>

The values of variables used in 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`.

Returns:



379
380
381
382
383
384
385
386
# File 'lib/aws-sdk-iotanalytics/types.rb', line 379

class ContainerDatasetAction < Struct.new(
  :image,
  :execution_role_arn,
  :resource_configuration,
  :variables)
  SENSITIVE = []
  include Aws::Structure
end