using System; using System.Collections.Generic; using System.Text; namespace Amazon.Lambda.CloudWatchEvents.ECSEvents { /// /// Details on a Elastic Inference accelerator. /// https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_InferenceAccelerator.html /// public class InferenceAccelerator { /// /// The Elastic Inference accelerator device name. /// public string DeviceName { get; set; } /// /// The Elastic Inference accelerator type to use. /// public string DeviceType { get; set; } } }