interface StudioLifecycleConfigReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Sagemaker.StudioLifecycleConfigReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awssagemaker#StudioLifecycleConfigReference |
Java | software.amazon.awscdk.interfaces.sagemaker.StudioLifecycleConfigReference |
Python | aws_cdk.interfaces.aws_sagemaker.StudioLifecycleConfigReference |
TypeScript | aws-cdk-lib » interfaces » 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 interfaces_aws_sagemaker } from 'aws-cdk-lib/interfaces';
const studioLifecycleConfigReference: interfaces_aws_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