Module Values.FargateProfileIssueSource

An issue that is associated with the Fargate profile.

Sourcetype nonrec t = {
  1. code : FargateProfileIssueCode.t option;
    (*

    A brief description of the error.

    *)
  2. message : String_.t option;
    (*

    The error message associated with the issue.

    *)
  3. resourceIds : StringList.t option;
    (*

    The Amazon Web Services resources that are affected by this issue.

    *)
}
Sourceval make : ?code:??? -> ?message:??? -> ?resourceIds:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of String_.t ] list | `String of String_.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