Module Values.GetServiceResponseSource

Retrieves information about the specified service.

Sourcetype nonrec t = {
  1. id : ServiceId.t option;
    (*

    The ID of the service.

    *)
  2. name : ServiceName.t option;
    (*

    The name of the service.

    *)
  3. arn : ServiceArn.t option;
    (*

    The Amazon Resource Name (ARN) of the service.

    *)
  4. createdAt : Timestamp.t option;
    (*

    The date and time that the service was created, in ISO-8601 format.

    *)
  5. lastUpdatedAt : Timestamp.t option;
    (*

    The date and time that the service was last updated, in ISO-8601 format.

    *)
  6. dnsEntry : DnsEntry.t option;
    (*

    The DNS name of the service.

    *)
  7. customDomainName : ServiceCustomDomainName.t option;
    (*

    The custom domain name of the service.

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

    The Amazon Resource Name (ARN) of the certificate.

    *)
  9. status : ServiceStatus.t option;
    (*

    The status of the service.

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

    The type of IAM policy.

    *)
  11. failureCode : FailureCode.t option;
    (*

    The failure code.

    *)
  12. failureMessage : FailureMessage.t option;
    (*

    The failure message.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `InternalServerException of InternalServerException.t
  3. | `ResourceNotFoundException of ResourceNotFoundException.t
  4. | `ThrottlingException of ThrottlingException.t
  5. | `ValidationException of ValidationException.t
  6. | `Unknown_operation_error of string * string option
]
Sourceval make : ?id:??? -> ?name:??? -> ?arn:??? -> ?createdAt:??? -> ?lastUpdatedAt:??? -> ?dnsEntry:??? -> ?customDomainName:??? -> ?certificateArn:??? -> ?status:??? -> ?authType:??? -> ?failureCode:??? -> ?failureMessage:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ServiceId.t | `Structure of (string * [> `String of String_.t ]) list | `Timestamp of Timestamp.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