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