Class: Aws::Pipes::Types::EcsInferenceAcceleratorOverride

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-pipes/lib/aws-sdk-pipes/types.rb

Overview

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.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#device_nameString

The Elastic Inference accelerator device name to override for the task. This parameter must match a deviceName specified in the task definition.

Returns:

  • (String)


975
976
977
978
979
980
# File 'gems/aws-sdk-pipes/lib/aws-sdk-pipes/types.rb', line 975

class EcsInferenceAcceleratorOverride < Struct.new(
  :device_name,
  :device_type)
  SENSITIVE = []
  include Aws::Structure
end

#device_typeString

The Elastic Inference accelerator type to use.

Returns:

  • (String)


975
976
977
978
979
980
# File 'gems/aws-sdk-pipes/lib/aws-sdk-pipes/types.rb', line 975

class EcsInferenceAcceleratorOverride < Struct.new(
  :device_name,
  :device_type)
  SENSITIVE = []
  include Aws::Structure
end