Class: Aws::ECS::Types::NetworkBandwidthGbpsRequest

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

Overview

The minimum and maximum network bandwidth in gigabits per second (Gbps) for instance type selection. This is important for network-intensive workloads.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#maxFloat

The maximum network bandwidth in Gbps. Instance types with higher network bandwidth are excluded from selection.

Returns:

  • (Float)


8338
8339
8340
8341
8342
8343
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 8338

class NetworkBandwidthGbpsRequest < Struct.new(
  :min,
  :max)
  SENSITIVE = []
  include Aws::Structure
end

#minFloat

The minimum network bandwidth in Gbps. Instance types with lower network bandwidth are excluded from selection.

Returns:

  • (Float)


8338
8339
8340
8341
8342
8343
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 8338

class NetworkBandwidthGbpsRequest < Struct.new(
  :min,
  :max)
  SENSITIVE = []
  include Aws::Structure
end