Class: Aws::IoTSiteWise::Types::ExecutionEnvironmentVariables
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTSiteWise::Types::ExecutionEnvironmentVariables
- Defined in:
- gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb
Overview
Environment variables provided as input for a pipeline execution.
Constant Summary collapse
- SENSITIVE =
[:global, :compute_nodes]
Instance Attribute Summary collapse
-
#compute_nodes ⇒ Hash<String,Hash<String,String>>
Per-compute-node environment variable overrides.
-
#global ⇒ Hash<String,String>
Global environment variables that apply to all compute nodes in the pipeline execution.
Instance Attribute Details
#compute_nodes ⇒ Hash<String,Hash<String,String>>
Per-compute-node environment variable overrides. Each entry maps a compute node name to its environment variable overrides.
8851 8852 8853 8854 8855 8856 |
# File 'gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb', line 8851 class ExecutionEnvironmentVariables < Struct.new( :global, :compute_nodes) SENSITIVE = [:global, :compute_nodes] include Aws::Structure end |
#global ⇒ Hash<String,String>
Global environment variables that apply to all compute nodes in the pipeline execution.
8851 8852 8853 8854 8855 8856 |
# File 'gems/aws-sdk-iotsitewise/lib/aws-sdk-iotsitewise/types.rb', line 8851 class ExecutionEnvironmentVariables < Struct.new( :global, :compute_nodes) SENSITIVE = [:global, :compute_nodes] include Aws::Structure end |