Module Values.DeleteComponentRequestSource

Deletes a component from an Amplify app.

Sourcetype nonrec t = {
  1. appId : String_.t;
    (*

    The unique ID of the Amplify app associated with the component to delete.

    *)
  2. environmentName : String_.t;
    (*

    The name of the backend environment that is a part of the Amplify app.

    *)
  3. id : Uuid.t;
    (*

    The unique ID of the component to delete.

    *)
}
Sourceval context_ : string
Sourceval make : appId:String_.t -> environmentName:String_.t -> id:Uuid.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `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