Interface CfnPipe.EcsInferenceAcceleratorOverrideProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnPipe.EcsInferenceAcceleratorOverrideProperty.Jsii$Proxy
Enclosing class:
CfnPipe

@Stability(Stable) public static interface CfnPipe.EcsInferenceAcceleratorOverrideProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.pipes.*;
 EcsInferenceAcceleratorOverrideProperty ecsInferenceAcceleratorOverrideProperty = EcsInferenceAcceleratorOverrideProperty.builder()
         .deviceName("deviceName")
         .deviceType("deviceType")
         .build();
 

See Also: