Class: Aws::CodePipeline::Types::EnvironmentVariable
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodePipeline::Types::EnvironmentVariable
- 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
-
#name ⇒ String
The environment variable name in the key-value pair.
-
#type ⇒ String
Specifies the type of use for the environment variable value.
-
#value ⇒ String
The environment variable value in the key-value pair.
Instance Attribute Details
#name ⇒ String
The environment variable name in the key-value pair.
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 |
#type ⇒ String
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.
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 |
#value ⇒ String
The environment variable value in the key-value pair.
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 |