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)


28651
28652
28653
28654
28655
28656
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 28651

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)


28651
28652
28653
28654
28655
28656
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 28651

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