Class: Aws::DeviceFarm::Types::EnvironmentVariable

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

Overview

Information about an environment variable for a project or a run.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

The name of the environment variable.

Returns:

  • (String)


1647
1648
1649
1650
1651
1652
# File 'lib/aws-sdk-devicefarm/types.rb', line 1647

class EnvironmentVariable < Struct.new(
  :name,
  :value)
  SENSITIVE = []
  include Aws::Structure
end

#valueString

The value of the environment variable.

Returns:

  • (String)


1647
1648
1649
1650
1651
1652
# File 'lib/aws-sdk-devicefarm/types.rb', line 1647

class EnvironmentVariable < Struct.new(
  :name,
  :value)
  SENSITIVE = []
  include Aws::Structure
end