Class: Aws::DirectoryService::Types::Setting
- Inherits:
-
Struct
- Object
- Struct
- Aws::DirectoryService::Types::Setting
- Defined in:
- gems/aws-sdk-directoryservice/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
4846 4847 4848 4849 4850 4851 |
# File 'gems/aws-sdk-directoryservice/lib/aws-sdk-directoryservice/types.rb', line 4846 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.
4846 4847 4848 4849 4850 4851 |
# File 'gems/aws-sdk-directoryservice/lib/aws-sdk-directoryservice/types.rb', line 4846 class Setting < Struct.new( :name, :value) SENSITIVE = [] include Aws::Structure end |