interface ContainerConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnAppImageConfigPropsMixin.ContainerConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnAppImageConfigPropsMixin_ContainerConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnAppImageConfigPropsMixin.ContainerConfigProperty |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnAppImageConfigPropsMixin.ContainerConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » CfnAppImageConfigPropsMixin » ContainerConfigProperty |
The configuration used to run the application image 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 containerConfigProperty: sagemaker_mixins.CfnAppImageConfigPropsMixin.ContainerConfigProperty = {
containerArguments: ['containerArguments'],
containerEntrypoint: ['containerEntrypoint'],
containerEnvironmentVariables: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| container | string[] | The arguments for the container when you're running the application. |
| container | string[] | The entrypoint used to run the application in the container. |
| container | IResolvable | (IResolvable | Custom)[] | The environment variables to set in the container. |
containerArguments?
Type:
string[]
(optional)
The arguments for the container when you're running the application.
containerEntrypoint?
Type:
string[]
(optional)
The entrypoint used to run the application in the container.
containerEnvironmentVariables?
Type:
IResolvable | (IResolvable | Custom)[]
(optional)
The environment variables to set in the container.

.NET
Go
Java
Python
TypeScript