Module Values.DeleteServiceAttributesRequestSource

Deletes specific attributes associated with a service.

Sourcetype nonrec t = {
  1. serviceId : Arn.t;
    (*

    The ID or Amazon Resource Name (ARN) of the service from which the attributes will be deleted. For services created in a namespace shared with your Amazon Web Services account, specify the service ARN. For more information about shared namespaces, see Cross-account Cloud Map namespace sharing in the Cloud Map Developer Guide.

    *)
  2. attributes : ServiceAttributeKeyList.t;
    (*

    A list of keys corresponding to each attribute that you want to delete.

    *)
}
Sourceval context_ : string
Sourceval make : serviceId:Arn.t -> attributes:ServiceAttributeKeyList.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of ServiceAttributeKey.t ] list | `String of Arn.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