interface ResponseElements
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Events.ModelEvents.AWSAPICallViaCloudTrail.ResponseElements |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/events#ModelEvents_AWSAPICallViaCloudTrail_ResponseElements |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.events.ModelEvents.AWSAPICallViaCloudTrail.ResponseElements |
Python | aws_cdk.mixins_preview.aws_sagemaker.events.ModelEvents.AWSAPICallViaCloudTrail.ResponseElements |
TypeScript | @aws-cdk/mixins-preview ยป aws_sagemaker ยป events ยป ModelEvents ยป AWSAPICallViaCloudTrail ยป ResponseElements |
Type definition for ResponseElements.
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 responseElements: sagemaker_events.ModelEvents.AWSAPICallViaCloudTrail.ResponseElements = {
endpointConfigArn: ['endpointConfigArn'],
modelArn: ['modelArn'],
trainingJobArn: ['trainingJobArn'],
transformJobArn: ['transformJobArn'],
};
Properties
| Name | Type | Description |
|---|---|---|
| endpoint | string[] | endpointConfigArn property. |
| model | string[] | modelArn property. |
| training | string[] | trainingJobArn property. |
| transform | string[] | transformJobArn property. |
endpointConfigArn?
Type:
string[]
(optional, default: Do not filter on this field)
endpointConfigArn property.
Specify an array of string values to match this event if the actual value of endpointConfigArn is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
modelArn?
Type:
string[]
(optional, default: Do not filter on this field)
modelArn property.
Specify an array of string values to match this event if the actual value of modelArn is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
trainingJobArn?
Type:
string[]
(optional, default: Do not filter on this field)
trainingJobArn property.
Specify an array of string values to match this event if the actual value of trainingJobArn is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
transformJobArn?
Type:
string[]
(optional, default: Do not filter on this field)
transformJobArn property.
Specify an array of string values to match this event if the actual value of transformJobArn 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