Module Values.ServiceAttributesSource

A complex type that contains information about attributes associated with a specific service.

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

    The ARN of the service that the attributes are associated with.

    *)
  2. resourceOwner : AWSAccountId.t option;
    (*

    The ID of the Amazon Web Services account that created the namespace with which the service is associated. If this isn't your account ID, it is the ID of the account that shared the namespace with your account. For more information about shared namespaces, see Cross-account Cloud Map namespace sharing in the Cloud Map Developer Guide.

    *)
  3. attributes : ServiceAttributesMap.t option;
    (*

    A string map that contains the following information for the service that you specify in ServiceArn: The attributes that apply to the service. For each attribute, the applicable value. You can specify a total of 30 attributes.

    *)
}
Sourceval make : ?serviceArn:??? -> ?resourceOwner:??? -> ?attributes:??? -> 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