interface StudioLifecycleConfigReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Sagemaker.StudioLifecycleConfigReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#StudioLifecycleConfigReference |
Java | software.amazon.awscdk.services.sagemaker.StudioLifecycleConfigReference |
Python | aws_cdk.aws_sagemaker.StudioLifecycleConfigReference |
TypeScript | aws-cdk-lib » aws_sagemaker » StudioLifecycleConfigReference |
A reference to a StudioLifecycleConfig 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 sagemaker } from 'aws-cdk-lib';
const studioLifecycleConfigReference: sagemaker.StudioLifecycleConfigReference = {
studioLifecycleConfigArn: 'studioLifecycleConfigArn',
studioLifecycleConfigName: 'studioLifecycleConfigName',
};
Properties
| Name | Type | Description |
|---|---|---|
| studio | string | The ARN of the StudioLifecycleConfig resource. |
| studio | string | The StudioLifecycleConfigName of the StudioLifecycleConfig resource. |
studioLifecycleConfigArn
Type:
string
The ARN of the StudioLifecycleConfig resource.
studioLifecycleConfigName
Type:
string
The StudioLifecycleConfigName of the StudioLifecycleConfig resource.

.NET
Go
Java
Python
TypeScript