Class: Aws::DataSync::Types::IOPS

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

Overview

The IOPS peaks for an on-premises storage system resource. Each data point represents the 95th percentile peak value during a 1-hour interval.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#otherFloat

Peak IOPS unrelated to read and write operations.

Returns:

  • (Float)


3225
3226
3227
3228
3229
3230
3231
3232
# File 'gems/aws-sdk-datasync/lib/aws-sdk-datasync/types.rb', line 3225

class IOPS < Struct.new(
  :read,
  :write,
  :other,
  :total)
  SENSITIVE = []
  include Aws::Structure
end

#readFloat

Peak IOPS related to read operations.

Returns:

  • (Float)


3225
3226
3227
3228
3229
3230
3231
3232
# File 'gems/aws-sdk-datasync/lib/aws-sdk-datasync/types.rb', line 3225

class IOPS < Struct.new(
  :read,
  :write,
  :other,
  :total)
  SENSITIVE = []
  include Aws::Structure
end

#totalFloat

Peak total IOPS on your on-premises storage system resource.

Returns:

  • (Float)


3225
3226
3227
3228
3229
3230
3231
3232
# File 'gems/aws-sdk-datasync/lib/aws-sdk-datasync/types.rb', line 3225

class IOPS < Struct.new(
  :read,
  :write,
  :other,
  :total)
  SENSITIVE = []
  include Aws::Structure
end

#writeFloat

Peak IOPS related to write operations.

Returns:

  • (Float)


3225
3226
3227
3228
3229
3230
3231
3232
# File 'gems/aws-sdk-datasync/lib/aws-sdk-datasync/types.rb', line 3225

class IOPS < Struct.new(
  :read,
  :write,
  :other,
  :total)
  SENSITIVE = []
  include Aws::Structure
end