interface ContextReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Sagemaker.ContextReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awssagemaker#ContextReference |
Java | software.amazon.awscdk.interfaces.sagemaker.ContextReference |
Python | aws_cdk.interfaces.aws_sagemaker.ContextReference |
TypeScript | aws-cdk-lib » interfaces » aws_sagemaker » ContextReference |
A reference to a Context 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 contextReference: interfaces_sagemaker.ContextReference = {
contextArn: 'contextArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| context | string | The Arn of the Context resource. |
contextArn
Type:
string
The Arn of the Context resource.

.NET
Go
Java
Python
TypeScript