namespace Amazon.Lambda.CloudWatchEvents.BatchEvents { /// /// The type and amount of a resource to assign to a container. The supported resources include GPU, MEMORY, and VCPU. /// public class ResourceRequirement { /// /// The type of resource to assign to a container. The supported resources include GPU, MEMORY, and VCPU. /// public string Type { get; set; } /// /// The quantity of the specified resource to reserve for the container. The values vary based on the type specified. /// public string Value { get; set; } } }