interface CfnStudioLifecycleConfigMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnStudioLifecycleConfigMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnStudioLifecycleConfigMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnStudioLifecycleConfigMixinProps |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnStudioLifecycleConfigMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » CfnStudioLifecycleConfigMixinProps |
Properties for CfnStudioLifecycleConfigPropsMixin.
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 cfnStudioLifecycleConfigMixinProps: sagemaker_mixins.CfnStudioLifecycleConfigMixinProps = {
studioLifecycleConfigAppType: 'studioLifecycleConfigAppType',
studioLifecycleConfigContent: 'studioLifecycleConfigContent',
studioLifecycleConfigName: 'studioLifecycleConfigName',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| studio | string | The App type to which the Lifecycle Configuration is attached. |
| studio | string | The content of your Amazon SageMaker Studio Lifecycle Configuration script. |
| studio | string | The name of the Amazon SageMaker AI Studio Lifecycle Configuration. |
| tags? | Cfn[] | Tags to be associated with the Lifecycle Configuration. |
studioLifecycleConfigAppType?
Type:
string
(optional)
The App type to which the Lifecycle Configuration is attached.
studioLifecycleConfigContent?
Type:
string
(optional)
The content of your Amazon SageMaker Studio Lifecycle Configuration script.
This content must be base64 encoded.
studioLifecycleConfigName?
Type:
string
(optional)
The name of the Amazon SageMaker AI Studio Lifecycle Configuration.
tags?
Type:
Cfn[]
(optional)
Tags to be associated with the Lifecycle Configuration.
Each tag consists of a key and an optional value. Tag keys must be unique per resource. Tags are searchable using the Search API.

.NET
Go
Java
Python
TypeScript