Class: Aws::ECS::Types::BaselineEbsBandwidthMbpsRequest

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

Overview

The minimum and maximum baseline Amazon EBS bandwidth in megabits per second (Mbps) for instance type selection. This is important for workloads with high storage I/O requirements.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#maxInteger

The maximum baseline Amazon EBS bandwidth in Mbps. Instance types with higher Amazon EBS bandwidth are excluded from selection.

Returns:

  • (Integer)


398
399
400
401
402
403
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 398

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

#minInteger

The minimum baseline Amazon EBS bandwidth in Mbps. Instance types with lower Amazon EBS bandwidth are excluded from selection.

Returns:

  • (Integer)


398
399
400
401
402
403
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 398

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