interface CustomImageContainerEnvironmentVariableProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnAppImageConfigPropsMixin.CustomImageContainerEnvironmentVariableProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnAppImageConfigPropsMixin_CustomImageContainerEnvironmentVariableProperty |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnAppImageConfigPropsMixin.CustomImageContainerEnvironmentVariableProperty |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnAppImageConfigPropsMixin.CustomImageContainerEnvironmentVariableProperty |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » CfnAppImageConfigPropsMixin » CustomImageContainerEnvironmentVariableProperty |
The environment variables to set in the container.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as sagemaker_mixins } from '@aws-cdk/mixins-preview/aws-sagemaker';
const customImageContainerEnvironmentVariableProperty: sagemaker_mixins.CfnAppImageConfigPropsMixin.CustomImageContainerEnvironmentVariableProperty = {
key: 'key',
value: 'value',
};
Properties
| Name | Type | Description |
|---|---|---|
| key? | string | The key that identifies a container environment variable. |
| value? | string | The value of the container environment variable. |
key?
Type:
string
(optional)
The key that identifies a container environment variable.
value?
Type:
string
(optional)
The value of the container environment variable.

.NET
Go
Java
Python
TypeScript