Class: Aws::DirectoryService::Types::Setting
- Inherits:
-
Struct
- Object
- Struct
- Aws::DirectoryService::Types::Setting
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-directoryservice/types.rb
Overview
Contains information about the configurable settings for a directory.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The name of the directory setting.
-
#value ⇒ String
The value of the directory setting for which to retrieve information.
Instance Attribute Details
#name ⇒ String
The name of the directory setting. For example:
‘TLS_1_0`
3888 3889 3890 3891 3892 3893 |
# File 'lib/aws-sdk-directoryservice/types.rb', line 3888 class Setting < Struct.new( :name, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ String
The value of the directory setting for which to retrieve information. For example, for ‘TLS_1_0`, the valid values are: `Enable` and `Disable`.
3888 3889 3890 3891 3892 3893 |
# File 'lib/aws-sdk-directoryservice/types.rb', line 3888 class Setting < Struct.new( :name, :value) SENSITIVE = [] include Aws::Structure end |