interface SageMakerEndpointStateChangeProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Events.SageMakerEndpointStateChange.SageMakerEndpointStateChangeProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/events#SageMakerEndpointStateChange_SageMakerEndpointStateChangeProps |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.events.SageMakerEndpointStateChange.SageMakerEndpointStateChangeProps |
Python | aws_cdk.mixins_preview.aws_sagemaker.events.SageMakerEndpointStateChange.SageMakerEndpointStateChangeProps |
TypeScript | @aws-cdk/mixins-preview ยป aws_sagemaker ยป events ยป SageMakerEndpointStateChange ยป SageMakerEndpointStateChangeProps |
Props type for aws.sagemaker@SageMakerEndpointStateChange 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 sageMakerEndpointStateChangeProps: sagemaker_events.SageMakerEndpointStateChange.SageMakerEndpointStateChangeProps = {
creationTime: ['creationTime'],
endpointArn: ['endpointArn'],
endpointConfigName: ['endpointConfigName'],
endpointName: ['endpointName'],
endpointStatus: ['endpointStatus'],
eventMetadata: {
region: ['region'],
resources: ['resources'],
version: ['version'],
},
lastModifiedTime: ['lastModifiedTime'],
tags: [{
key: ['key'],
value: ['value'],
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| creation | string[] | CreationTime property. |
| endpoint | string[] | EndpointArn property. |
| endpoint | string[] | EndpointConfigName property. |
| endpoint | string[] | EndpointName property. |
| endpoint | string[] | EndpointStatus property. |
| event | AWSEvent | EventBridge event metadata. |
| last | string[] | LastModifiedTime 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.
endpointArn?
Type:
string[]
(optional, default: Do not filter on this field)
EndpointArn property.
Specify an array of string values to match this event if the actual value of EndpointArn is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
endpointConfigName?
Type:
string[]
(optional, default: Do not filter on this field)
EndpointConfigName property.
Specify an array of string values to match this event if the actual value of EndpointConfigName is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
endpointName?
Type:
string[]
(optional, default: Do not filter on this field)
EndpointName property.
Specify an array of string values to match this event if the actual value of EndpointName is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
endpointStatus?
Type:
string[]
(optional, default: Do not filter on this field)
EndpointStatus property.
Specify an array of string values to match this event if the actual value of EndpointStatus 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.
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