Module Values.OrganizationFeatureConfigurationResultSource

A list of features which will be configured for the organization.

Sourcetype nonrec t = {
  1. name : OrgFeature.t option;
    (*

    The name of the feature that is configured for the member accounts within the organization.

    *)
  2. autoEnable : OrgFeatureStatus.t option;
    (*

    Describes the status of the feature that is configured for the member accounts within the organization. NEW: Indicates that when a new account joins the organization, they will have the feature enabled automatically. ALL: Indicates that all accounts in the organization have the feature enabled automatically. This includes NEW accounts that join the organization and accounts that may have been suspended or removed from the organization in GuardDuty. NONE: Indicates that the feature will not be automatically enabled for any account in the organization. In this case, each account will be managed individually by the administrator.

    *)
  3. additionalConfiguration : OrganizationAdditionalConfigurationResults.t option;
    (*

    The additional configuration that is configured for the member accounts within the organization.

    *)
}
Sourceval make : ?name:??? -> ?autoEnable:??? -> ?additionalConfiguration:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Enum of string ]) list ] list ]) 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