Class: Aws::ConnectCases::Types::FieldOption
- Inherits:
-
Struct
- Object
- Struct
- Aws::ConnectCases::Types::FieldOption
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-connectcases/types.rb
Overview
Object for field Options information.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#active ⇒ Boolean
Describes whether the ‘FieldOption` is active (displayed) or inactive.
-
#name ⇒ String
‘FieldOptionName` has max length 100 and disallows trailing spaces.
-
#value ⇒ String
‘FieldOptionValue` has max length 100 and must be alphanumeric with hyphens and underscores.
Instance Attribute Details
#active ⇒ Boolean
Describes whether the ‘FieldOption` is active (displayed) or inactive.
1501 1502 1503 1504 1505 1506 1507 |
# File 'lib/aws-sdk-connectcases/types.rb', line 1501 class FieldOption < Struct.new( :name, :value, :active) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
‘FieldOptionName` has max length 100 and disallows trailing spaces.
1501 1502 1503 1504 1505 1506 1507 |
# File 'lib/aws-sdk-connectcases/types.rb', line 1501 class FieldOption < Struct.new( :name, :value, :active) SENSITIVE = [] include Aws::Structure end |
#value ⇒ String
‘FieldOptionValue` has max length 100 and must be alphanumeric with hyphens and underscores.
1501 1502 1503 1504 1505 1506 1507 |
# File 'lib/aws-sdk-connectcases/types.rb', line 1501 class FieldOption < Struct.new( :name, :value, :active) SENSITIVE = [] include Aws::Structure end |