Module Values.SettingEntrySource

Contains information about the specified configurable setting for a directory.

Sourcetype nonrec t = {
  1. type_ : DirectoryConfigurationSettingType.t option;
    (*

    The type, or category, of a directory setting. Similar settings have the same type. For example, Protocol, Cipher, or Certificate-Based Authentication.

    *)
  2. name : DirectoryConfigurationSettingName.t option;
    (*

    The name of the directory setting. For example: TLS_1_0

    *)
  3. allowedValues : DirectoryConfigurationSettingAllowedValues.t option;
    (*

    The valid range of values for the directory setting. These values depend on the DataType of your directory.

    *)
  4. appliedValue : DirectoryConfigurationSettingValue.t option;
    (*

    The value of the directory setting that is applied to the directory.

    *)
  5. requestedValue : DirectoryConfigurationSettingValue.t option;
    (*

    The value that was last requested for the directory setting.

    *)
  6. requestStatus : DirectoryConfigurationStatus.t option;
    (*

    The overall status of the request to update the directory setting request. If the directory setting is deployed in more than one region, and the request fails in any region, the overall status is Failed.

    *)
  7. requestDetailedStatus : DirectoryConfigurationSettingRequestDetailedStatus.t option;
    (*

    Details about the status of the request to update the directory setting. If the directory setting is deployed in more than one region, status is returned for the request in each region where the setting is deployed.

    *)
  8. requestStatusMessage : DirectoryConfigurationSettingRequestStatusMessage.t option;
    (*

    The last status message for the directory status request.

    *)
  9. lastUpdatedDateTime : DirectoryConfigurationSettingLastUpdatedDateTime.t option;
    (*

    The date and time when the directory setting was last updated.

    *)
  10. lastRequestedDateTime : DirectoryConfigurationSettingLastRequestedDateTime.t option;
    (*

    The date and time when the request to update a directory setting was last submitted.

    *)
  11. dataType : DirectoryConfigurationSettingDataType.t option;
    (*

    The data type of a directory setting. This is used to define the AllowedValues of a setting. For example a data type can be Boolean, DurationInSeconds, or Enum.

    *)
}
Sourceval make : ?type_:??? -> ?name:??? -> ?allowedValues:??? -> ?appliedValue:??? -> ?requestedValue:??? -> ?requestStatus:??? -> ?requestDetailedStatus:??? -> ?requestStatusMessage:??? -> ?lastUpdatedDateTime:??? -> ?lastRequestedDateTime:??? -> ?dataType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Map of ([> `String of RegionName.t ] * [> `Enum of string ]) list | `String of DirectoryConfigurationSettingType.t | `Timestamp of DirectoryConfigurationSettingLastUpdatedDateTime.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t