Module Values.StandardsManagedBySource

Provides details about the management of a security standard.

Sourcetype nonrec t = {
  1. company : NonEmptyString.t option;
    (*

    An identifier for the company that manages a specific security standard. For existing standards, the value is equal to Amazon Web Services.

    *)
  2. product : NonEmptyString.t option;
    (*

    An identifier for the product that manages a specific security standard. For existing standards, the value is equal to the Amazon Web Services service that manages the standard.

    *)
}
Sourceval make : ?company:??? -> ?product:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of NonEmptyString.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