Class: Aws::CodePipeline::Types::EnvironmentVariable

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

Overview

The environment variables for the action.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

The environment variable name in the key-value pair.

Returns:

  • (String)


1831
1832
1833
1834
1835
1836
1837
# File 'lib/aws-sdk-codepipeline/types.rb', line 1831

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

#typeString

Specifies the type of use for the environment variable value. The value can be either ‘PLAINTEXT` or `SECRETS_MANAGER`. If the value is `SECRETS_MANAGER`, provide the Secrets reference in the EnvironmentVariable value.

Returns:

  • (String)


1831
1832
1833
1834
1835
1836
1837
# File 'lib/aws-sdk-codepipeline/types.rb', line 1831

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

#valueString

The environment variable value in the key-value pair.

Returns:

  • (String)


1831
1832
1833
1834
1835
1836
1837
# File 'lib/aws-sdk-codepipeline/types.rb', line 1831

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