Module Values.ServiceSource

Detailed data of an Proton service resource.

Sourcetype nonrec t = {
  1. arn : ServiceArn.t option;
    (*

    The Amazon Resource Name (ARN) of the service.

    *)
  2. branchName : GitBranchName.t option;
    (*

    The name of the code repository branch that holds the code that's deployed in Proton.

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

    The time when the service was created.

    *)
  4. description : Description.t option;
    (*

    A description of the service.

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

    The time when the service was last modified.

    *)
  6. name : ResourceName.t option;
    (*

    The name of the service.

    *)
  7. pipeline : ServicePipeline.t option;
    (*

    The service pipeline detail data.

    *)
  8. repositoryConnectionArn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) of the repository connection. For more information, see Setting up an AWS CodeStar connection in the Proton User Guide.

    *)
  9. repositoryId : RepositoryId.t option;
    (*

    The ID of the source code repository.

    *)
  10. spec : SpecContents.t option;
    (*

    The formatted specification that defines the service.

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

    The status of the service.

    *)
  12. statusMessage : StatusMessage.t option;
    (*

    A service status message.

    *)
  13. templateName : ResourceName.t option;
    (*

    The name of the service template.

    *)
}
Sourceval make : ?arn:??? -> ?branchName:??? -> ?createdAt:??? -> ?description:??? -> ?lastModifiedAt:??? -> ?name:??? -> ?pipeline:??? -> ?repositoryConnectionArn:??? -> ?repositoryId:??? -> ?spec:??? -> ?status:??? -> ?statusMessage:??? -> ?templateName:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ServiceArn.t | `Structure of (string * [> `Enum of string | `String of Arn.t | `Timestamp of Timestamp.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