Class: Aws::Wickr::Types::Setting
- Inherits:
-
Struct
- Object
- Struct
- Aws::Wickr::Types::Setting
- Defined in:
- gems/aws-sdk-wickr/lib/aws-sdk-wickr/types.rb
Overview
Represents a single network-level configuration setting with its name, value, and data type. Settings control network-wide behaviors and features.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#option_name ⇒ String
The name of the network setting (e.g., 'enableClientMetrics', 'dataRetention').
-
#type ⇒ String
The data type of the setting value (e.g., 'boolean', 'string', 'number').
-
#value ⇒ String
The current value of the setting as a string.
Instance Attribute Details
#option_name ⇒ String
The name of the network setting (e.g., 'enableClientMetrics', 'dataRetention').
3161 3162 3163 3164 3165 3166 3167 |
# File 'gems/aws-sdk-wickr/lib/aws-sdk-wickr/types.rb', line 3161 class Setting < Struct.new( :option_name, :value, :type) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The data type of the setting value (e.g., 'boolean', 'string', 'number').
3161 3162 3163 3164 3165 3166 3167 |
# File 'gems/aws-sdk-wickr/lib/aws-sdk-wickr/types.rb', line 3161 class Setting < Struct.new( :option_name, :value, :type) SENSITIVE = [] include Aws::Structure end |
#value ⇒ String
The current value of the setting as a string. Boolean values are represented as 'true' or 'false'.
3161 3162 3163 3164 3165 3166 3167 |
# File 'gems/aws-sdk-wickr/lib/aws-sdk-wickr/types.rb', line 3161 class Setting < Struct.new( :option_name, :value, :type) SENSITIVE = [] include Aws::Structure end |