interface AppImageConfigReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Sagemaker.AppImageConfigReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awssagemaker#AppImageConfigReference |
Java | software.amazon.awscdk.interfaces.sagemaker.AppImageConfigReference |
Python | aws_cdk.interfaces.aws_sagemaker.AppImageConfigReference |
TypeScript | aws-cdk-lib » interfaces » aws_sagemaker » AppImageConfigReference |
A reference to a AppImageConfig resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_sagemaker as interfaces_sagemaker } from 'aws-cdk-lib/interfaces';
const appImageConfigReference: interfaces_sagemaker.AppImageConfigReference = {
appImageConfigArn: 'appImageConfigArn',
appImageConfigName: 'appImageConfigName',
};
Properties
| Name | Type | Description |
|---|---|---|
| app | string | The ARN of the AppImageConfig resource. |
| app | string | The AppImageConfigName of the AppImageConfig resource. |
appImageConfigArn
Type:
string
The ARN of the AppImageConfig resource.
appImageConfigName
Type:
string
The AppImageConfigName of the AppImageConfig resource.

.NET
Go
Java
Python
TypeScript