interface SageMakerNotebookLifecycleConfigStateChangeProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Events.SageMakerNotebookLifecycleConfigStateChange.SageMakerNotebookLifecycleConfigStateChangeProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/events#SageMakerNotebookLifecycleConfigStateChange_SageMakerNotebookLifecycleConfigStateChangeProps |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.events.SageMakerNotebookLifecycleConfigStateChange.SageMakerNotebookLifecycleConfigStateChangeProps |
Python | aws_cdk.mixins_preview.aws_sagemaker.events.SageMakerNotebookLifecycleConfigStateChange.SageMakerNotebookLifecycleConfigStateChangeProps |
TypeScript | @aws-cdk/mixins-preview ยป aws_sagemaker ยป events ยป SageMakerNotebookLifecycleConfigStateChange ยป SageMakerNotebookLifecycleConfigStateChangeProps |
Props type for aws.sagemaker@SageMakerNotebookLifecycleConfigStateChange event.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { events as sagemaker_events } from '@aws-cdk/mixins-preview/aws-sagemaker';
const sageMakerNotebookLifecycleConfigStateChangeProps: sagemaker_events.SageMakerNotebookLifecycleConfigStateChange.SageMakerNotebookLifecycleConfigStateChangeProps = {
creationTime: ['creationTime'],
eventMetadata: {
region: ['region'],
resources: ['resources'],
version: ['version'],
},
lastModifiedTime: ['lastModifiedTime'],
notebookInstanceLifecycleConfigArn: ['notebookInstanceLifecycleConfigArn'],
notebookInstanceLifecycleConfigName: ['notebookInstanceLifecycleConfigName'],
tags: [{
key: ['key'],
value: ['value'],
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| creation | string[] | CreationTime property. |
| event | AWSEvent | EventBridge event metadata. |
| last | string[] | LastModifiedTime property. |
| notebook | string[] | NotebookInstanceLifecycleConfigArn property. |
| notebook | string[] | NotebookInstanceLifecycleConfigName property. |
| tags? | Tags[] | Tags property. |
creationTime?
Type:
string[]
(optional, default: Do not filter on this field)
CreationTime property.
Specify an array of string values to match this event if the actual value of CreationTime is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
eventMetadata?
Type:
AWSEvent
(optional, default: -)
EventBridge event metadata.
lastModifiedTime?
Type:
string[]
(optional, default: Do not filter on this field)
LastModifiedTime property.
Specify an array of string values to match this event if the actual value of LastModifiedTime is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
notebookInstanceLifecycleConfigArn?
Type:
string[]
(optional, default: Do not filter on this field)
NotebookInstanceLifecycleConfigArn property.
Specify an array of string values to match this event if the actual value of NotebookInstanceLifecycleConfigArn is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
notebookInstanceLifecycleConfigName?
Type:
string[]
(optional, default: Do not filter on this field)
NotebookInstanceLifecycleConfigName property.
Specify an array of string values to match this event if the actual value of NotebookInstanceLifecycleConfigName is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
tags?
Type:
Tags[]
(optional, default: Do not filter on this field)
Tags property.
Specify an array of string values to match this event if the actual value of Tags is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

.NET
Go
Java
Python
TypeScript