Class: Aws::Connect::Types::Range

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

Overview

An Object to define the minimum and maximum proficiency levels.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#max_proficiency_levelFloat

The maximum proficiency level of the range.

Returns:

  • (Float)


17772
17773
17774
17775
17776
17777
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 17772

class Range < Struct.new(
  :min_proficiency_level,
  :max_proficiency_level)
  SENSITIVE = []
  include Aws::Structure
end

#min_proficiency_levelFloat

The minimum proficiency level of the range.

Returns:

  • (Float)


17772
17773
17774
17775
17776
17777
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 17772

class Range < Struct.new(
  :min_proficiency_level,
  :max_proficiency_level)
  SENSITIVE = []
  include Aws::Structure
end