Module Values.RegisterInstanceResponseSource

Creates or updates one or more records and, optionally, creates a health check based on the settings in a specified service. When you submit a RegisterInstance request, the following occurs: For each DNS record that you define in the service that's specified by ServiceId, a record is created or updated in the hosted zone that's associated with the corresponding namespace. If the service includes HealthCheckConfig, a health check is created based on the settings in the health check configuration. The health check, if any, is associated with each of the new or updated records. One RegisterInstance request must complete before you can submit another request and specify the same service ID and instance ID. For more information, see CreateService. When Cloud Map receives a DNS query for the specified DNS name, it returns the applicable value: If the health check is healthy: returns all the records If the health check is unhealthy: returns the applicable value for the last healthy instance If you didn't specify a health check configuration: returns all the records For the current quota on the number of instances that you can register using the same namespace and using the same service, see Cloud Map quotas in the Cloud Map Developer Guide.

Sourcetype nonrec t = {
  1. operationId : OperationId.t option;
    (*

    A value that you can use to determine whether the request completed successfully. To get the status of the operation, see GetOperation.

    *)
}
Sourcetype nonrec error = [
  1. | `DuplicateRequest of DuplicateRequest.t
  2. | `InvalidInput of InvalidInput.t
  3. | `ResourceInUse of ResourceInUse.t
  4. | `ResourceLimitExceeded of ResourceLimitExceeded.t
  5. | `ServiceNotFound of ServiceNotFound.t
  6. | `Unknown_operation_error of string * string option
]
Sourceval make : ?operationId:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `DuplicateRequest of DuplicateRequest.t | `InvalidInput of InvalidInput.t | `ResourceInUse of ResourceInUse.t | `ResourceLimitExceeded of ResourceLimitExceeded.t | `ServiceNotFound of ServiceNotFound.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `DuplicateRequest of DuplicateRequest.t | `InvalidInput of InvalidInput.t | `ResourceInUse of ResourceInUse.t | `ResourceLimitExceeded of ResourceLimitExceeded.t | `ServiceNotFound of ServiceNotFound.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `String of OperationId.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