Module Values.UpdateServiceAttributesRequestSource

Submits a request to update a specified service to add service-level attributes.

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

    The ID or Amazon Resource Name (ARN) of the service that you want to update. For services created in a namespace shared with your Amazon Web Services account, specify the service ARN.

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

    A string map that contains attribute key-value pairs.

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