Module Values.UpdateServiceRequestSource

Updates the specified service.

Sourcetype nonrec t = {
  1. serviceIdentifier : ServiceIdentifier.t;
    (*

    The ID or ARN of the service.

    *)
  2. certificateArn : CertificateArn.t option;
    (*

    The Amazon Resource Name (ARN) of the certificate.

    *)
  3. authType : AuthType.t option;
    (*

    The type of IAM policy. NONE: The resource does not use an IAM policy. This is the default. AWS_IAM: The resource uses an IAM policy. When this type is used, auth is enabled and an auth policy is required.

    *)
}
Sourceval context_ : string
Sourceval make : ?certificateArn:??? -> ?authType:??? -> serviceIdentifier:ServiceIdentifier.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ServiceIdentifier.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