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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-devicefarm/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)


1636
1637
1638
1639
1640
1641
# File 'gems/aws-sdk-devicefarm/lib/aws-sdk-devicefarm/types.rb', line 1636

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

#valueString

The value of the environment variable.

Returns:

  • (String)


1636
1637
1638
1639
1640
1641
# File 'gems/aws-sdk-devicefarm/lib/aws-sdk-devicefarm/types.rb', line 1636

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