Module Values.SettingsSource

The settings object that holds all supported Audit Manager settings.

Sourcetype nonrec t = {
  1. isAwsOrgEnabled : Boolean.t option;
    (*

    Specifies whether Organizations is enabled.

    *)
  2. snsTopic : SNSTopic.t option;
    (*

    The designated Amazon Simple Notification Service (Amazon SNS) topic.

    *)
  3. defaultAssessmentReportsDestination : AssessmentReportsDestination.t option;
    (*

    The default S3 destination bucket for storing assessment reports.

    *)
  4. defaultProcessOwners : Roles.t option;
    (*

    The designated default audit owners.

    *)
  5. kmsKey : KmsKey.t option;
    (*

    The KMS key details.

    *)
  6. evidenceFinderEnablement : EvidenceFinderEnablement.t option;
    (*

    The current evidence finder status and event data store details.

    *)
  7. deregistrationPolicy : DeregistrationPolicy.t option;
    (*

    The deregistration policy for your Audit Manager data. You can use this attribute to determine how your data is handled when you deregister Audit Manager.

    *)
  8. defaultExportDestination : DefaultExportDestination.t option;
    (*

    The default S3 destination bucket for storing evidence finder exports.

    *)
}
Sourceval make : ?isAwsOrgEnabled:??? -> ?snsTopic:??? -> ?defaultAssessmentReportsDestination:??? -> ?defaultProcessOwners:??? -> ?kmsKey:??? -> ?evidenceFinderEnablement:??? -> ?deregistrationPolicy:??? -> ?defaultExportDestination:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `List of [> `Structure of (string * [> `Enum of string | `String of IamArn.t ]) list ] list | `String of SNSTopic.t | `Structure of (string * [> `Enum of string | `String of S3Url.t ]) 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