interface EnvironmentVariableProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CodePipeline.Mixins.CfnPipelinePropsMixin.EnvironmentVariableProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscodepipeline/mixins#CfnPipelinePropsMixin_EnvironmentVariableProperty |
Java | software.amazon.awscdk.mixins.preview.services.codepipeline.mixins.CfnPipelinePropsMixin.EnvironmentVariableProperty |
Python | aws_cdk.mixins_preview.aws_codepipeline.mixins.CfnPipelinePropsMixin.EnvironmentVariableProperty |
TypeScript | @aws-cdk/mixins-preview » aws_codepipeline » mixins » CfnPipelinePropsMixin » EnvironmentVariableProperty |
The environment variables for the action.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as codepipeline_mixins } from '@aws-cdk/mixins-preview/aws-codepipeline';
const environmentVariableProperty: codepipeline_mixins.CfnPipelinePropsMixin.EnvironmentVariableProperty = {
name: 'name',
type: 'type',
value: 'value',
};
Properties
| Name | Type | Description |
|---|---|---|
| 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. |
name?
Type:
string
(optional)
The environment variable name in the key-value pair.
type?
Type:
string
(optional)
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.
value?
Type:
string
(optional)
The environment variable value in the key-value pair.

.NET
Go
Java
Python
TypeScript