amazonka-ds-2.0: Amazon Directory Service SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.DirectoryService.Types.Setting

Description

 
Synopsis

Documentation

data Setting Source #

Contains information about the configurable settings for a directory.

See: newSetting smart constructor.

Constructors

Setting' 

Fields

  • name :: Text

    The name of the directory setting. For example:

    TLS_1_0
  • value :: Text

    The value of the directory setting for which to retrieve information. For example, for TLS_1_0, the valid values are: Enable and Disable.

Instances

Instances details
ToJSON Setting Source # 
Instance details

Defined in Amazonka.DirectoryService.Types.Setting

Generic Setting Source # 
Instance details

Defined in Amazonka.DirectoryService.Types.Setting

Associated Types

type Rep Setting :: Type -> Type #

Methods

from :: Setting -> Rep Setting x #

to :: Rep Setting x -> Setting #

Read Setting Source # 
Instance details

Defined in Amazonka.DirectoryService.Types.Setting

Show Setting Source # 
Instance details

Defined in Amazonka.DirectoryService.Types.Setting

NFData Setting Source # 
Instance details

Defined in Amazonka.DirectoryService.Types.Setting

Methods

rnf :: Setting -> () #

Eq Setting Source # 
Instance details

Defined in Amazonka.DirectoryService.Types.Setting

Methods

(==) :: Setting -> Setting -> Bool #

(/=) :: Setting -> Setting -> Bool #

Hashable Setting Source # 
Instance details

Defined in Amazonka.DirectoryService.Types.Setting

Methods

hashWithSalt :: Int -> Setting -> Int #

hash :: Setting -> Int #

type Rep Setting Source # 
Instance details

Defined in Amazonka.DirectoryService.Types.Setting

type Rep Setting = D1 ('MetaData "Setting" "Amazonka.DirectoryService.Types.Setting" "amazonka-ds-2.0-AgXI5fcN8ZxCoi4kNvhD3" 'False) (C1 ('MetaCons "Setting'" 'PrefixI 'True) (S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "value") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newSetting Source #

Create a value of Setting with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:name:Setting', setting_name - The name of the directory setting. For example:

TLS_1_0

$sel:value:Setting', setting_value - The value of the directory setting for which to retrieve information. For example, for TLS_1_0, the valid values are: Enable and Disable.

setting_name :: Lens' Setting Text Source #

The name of the directory setting. For example:

TLS_1_0

setting_value :: Lens' Setting Text Source #

The value of the directory setting for which to retrieve information. For example, for TLS_1_0, the valid values are: Enable and Disable.