interface EcsInferenceAcceleratorOverrideProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.Pipes.CfnPipe.EcsInferenceAcceleratorOverrideProperty | 
  Java | software.amazon.awscdk.services.pipes.CfnPipe.EcsInferenceAcceleratorOverrideProperty | 
  Python | aws_cdk.aws_pipes.CfnPipe.EcsInferenceAcceleratorOverrideProperty | 
  TypeScript  | @aws-cdk/aws-pipes » CfnPipe » EcsInferenceAcceleratorOverrideProperty | 
Details on an Elastic Inference accelerator task override.
This parameter is used to override the Elastic Inference accelerator specified in the task definition. For more information, see Working with Amazon Elastic Inference on Amazon ECS in the Amazon Elastic Container Service Developer Guide .
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as pipes from '@aws-cdk/aws-pipes';
const ecsInferenceAcceleratorOverrideProperty: pipes.CfnPipe.EcsInferenceAcceleratorOverrideProperty = {
  deviceName: 'deviceName',
  deviceType: 'deviceType',
};
Properties
| Name | Type | Description | 
|---|---|---|
| device | string | The Elastic Inference accelerator device name to override for the task. | 
| device | string | The Elastic Inference accelerator type to use. | 
deviceName?
Type:
string
(optional)
The Elastic Inference accelerator device name to override for the task.
This parameter must match a deviceName specified in the task definition.
deviceType?
Type:
string
(optional)
The Elastic Inference accelerator type to use.

 .NET
 Java
 Python
 TypeScript