interface SageMakerNotebookInstanceStateChangeProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Events.SageMakerNotebookInstanceStateChange.SageMakerNotebookInstanceStateChangeProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/events#SageMakerNotebookInstanceStateChange_SageMakerNotebookInstanceStateChangeProps |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.events.SageMakerNotebookInstanceStateChange.SageMakerNotebookInstanceStateChangeProps |
Python | aws_cdk.mixins_preview.aws_sagemaker.events.SageMakerNotebookInstanceStateChange.SageMakerNotebookInstanceStateChangeProps |
TypeScript | @aws-cdk/mixins-preview ยป aws_sagemaker ยป events ยป SageMakerNotebookInstanceStateChange ยป SageMakerNotebookInstanceStateChangeProps |
Props type for aws.sagemaker@SageMakerNotebookInstanceStateChange 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 sageMakerNotebookInstanceStateChangeProps: sagemaker_events.SageMakerNotebookInstanceStateChange.SageMakerNotebookInstanceStateChangeProps = {
creationTime: ['creationTime'],
eventMetadata: {
region: ['region'],
resources: ['resources'],
version: ['version'],
},
instanceType: ['instanceType'],
lastModifiedTime: ['lastModifiedTime'],
notebookInstanceArn: ['notebookInstanceArn'],
notebookInstanceLifecycleConfigName: ['notebookInstanceLifecycleConfigName'],
notebookInstanceName: ['notebookInstanceName'],
notebookInstanceStatus: ['notebookInstanceStatus'],
roleArn: ['roleArn'],
tags: [{
key: ['key'],
value: ['value'],
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| creation | string[] | CreationTime property. |
| event | AWSEvent | EventBridge event metadata. |
| instance | string[] | InstanceType property. |
| last | string[] | LastModifiedTime property. |
| notebook | string[] | NotebookInstanceArn property. |
| notebook | string[] | NotebookInstanceLifecycleConfigName property. |
| notebook | string[] | NotebookInstanceName property. |
| notebook | string[] | NotebookInstanceStatus property. |
| role | string[] | RoleArn 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.
instanceType?
Type:
string[]
(optional, default: Do not filter on this field)
InstanceType property.
Specify an array of string values to match this event if the actual value of InstanceType is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
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.
notebookInstanceArn?
Type:
string[]
(optional, default: Do not filter on this field)
NotebookInstanceArn property.
Specify an array of string values to match this event if the actual value of NotebookInstanceArn 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.
notebookInstanceName?
Type:
string[]
(optional, default: Do not filter on this field)
NotebookInstanceName property.
Specify an array of string values to match this event if the actual value of NotebookInstanceName is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
notebookInstanceStatus?
Type:
string[]
(optional, default: Do not filter on this field)
NotebookInstanceStatus property.
Specify an array of string values to match this event if the actual value of NotebookInstanceStatus is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
roleArn?
Type:
string[]
(optional, default: Do not filter on this field)
RoleArn property.
Specify an array of string values to match this event if the actual value of RoleArn 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