Class: Aws::IoTSiteWise::Types::ComputeNode

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb

Overview

A single compute node in a pipeline DAG. Each compute node references a task and can declare dependencies on other nodes.

Constant Summary collapse

SENSITIVE =
[:environment_variables]

Instance Attribute Summary collapse

Instance Attribute Details

#compute_node_nameString

The unique name for this compute node within the pipeline.

Returns:

  • (String)


3138
3139
3140
3141
3142
3143
3144
3145
# File 'gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb', line 3138

class ComputeNode < Struct.new(
  :compute_node_name,
  :task_name,
  :environment_variables,
  :depends_on)
  SENSITIVE = [:environment_variables]
  include Aws::Structure
end

#depends_onArray<String>

A list of compute node names that must complete successfully before this node can start.

Returns:

  • (Array<String>)


3138
3139
3140
3141
3142
3143
3144
3145
# File 'gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb', line 3138

class ComputeNode < Struct.new(
  :compute_node_name,
  :task_name,
  :environment_variables,
  :depends_on)
  SENSITIVE = [:environment_variables]
  include Aws::Structure
end

#environment_variablesHash<String,String>

Environment variables specific to this compute node. These override pipeline-level environment variables with the same key.

Returns:

  • (Hash<String,String>)


3138
3139
3140
3141
3142
3143
3144
3145
# File 'gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb', line 3138

class ComputeNode < Struct.new(
  :compute_node_name,
  :task_name,
  :environment_variables,
  :depends_on)
  SENSITIVE = [:environment_variables]
  include Aws::Structure
end

#task_nameString

The name of the task to execute for this compute node.

Returns:

  • (String)


3138
3139
3140
3141
3142
3143
3144
3145
# File 'gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb', line 3138

class ComputeNode < Struct.new(
  :compute_node_name,
  :task_name,
  :environment_variables,
  :depends_on)
  SENSITIVE = [:environment_variables]
  include Aws::Structure
end