Module Values.DeleteDataSourceInputSource

Deletes a data source in Amazon DataZone.

Sourcetype nonrec t = {
  1. domainIdentifier : DomainId.t;
    (*

    The ID of the Amazon DataZone domain in which the data source is deleted.

    *)
  2. identifier : DataSourceId.t;
    (*

    The identifier of the data source that is deleted.

    *)
  3. clientToken : String_.t option;
    (*

    A unique, case-sensitive identifier that is provided to ensure the idempotency of the request.

    *)
  4. retainPermissionsOnRevokeFailure : Boolean.t option;
    (*

    Specifies that the granted permissions are retained in case of a self-subscribe functionality failure for a data source.

    *)
}
Sourceval context_ : string
Sourceval make : ?clientToken:??? -> ?retainPermissionsOnRevokeFailure:??? -> domainIdentifier:DomainId.t -> identifier:DataSourceId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `String of DomainId.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