Module Values.ServiceSummarySource

Provides summary information for an App Runner service. This type contains limited information about a service. It doesn't include configuration details. It's returned by the ListServices action. Complete service information is returned by the CreateService, DescribeService, and DeleteService actions using the Service type.

Sourcetype nonrec t = {
  1. serviceName : ServiceName.t option;
    (*

    The customer-provided service name.

    *)
  2. serviceId : ServiceId.t option;
    (*

    An ID that App Runner generated for this service. It's unique within the Amazon Web Services Region.

    *)
  3. serviceArn : AppRunnerResourceArn.t option;
    (*

    The Amazon Resource Name (ARN) of this service.

    *)
  4. serviceUrl : String_.t option;
    (*

    A subdomain URL that App Runner generated for this service. You can use this URL to access your service web application.

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

    The time when the App Runner service was created. It's in the Unix time stamp format.

    *)
  6. updatedAt : Timestamp.t option;
    (*

    The time when the App Runner service was last updated. It's in theUnix time stamp format.

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

    The current state of the App Runner service. These particular values mean the following. CREATE_FAILED – The service failed to create. The failed service isn't usable, and still counts towards your service quota. To troubleshoot this failure, read the failure events and logs, change any parameters that need to be fixed, and rebuild your service using UpdateService. DELETE_FAILED – The service failed to delete and can't be successfully recovered. Retry the service deletion call to ensure that all related resources are removed.

    *)
}
Sourceval make : ?serviceName:??? -> ?serviceId:??? -> ?serviceArn:??? -> ?serviceUrl:??? -> ?createdAt:??? -> ?updatedAt:??? -> ?status:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ServiceName.t | `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