Module Values.BackendEnvironmentSource

Describes the backend environment associated with a Branch of a Gen 1 Amplify app. Amplify Gen 1 applications are created using Amplify Studio or the Amplify command line interface (CLI).

Sourcetype nonrec t = {
  1. backendEnvironmentArn : BackendEnvironmentArn.t option;
    (*

    The Amazon Resource Name (ARN) for a backend environment that is part of an Amplify app.

    *)
  2. environmentName : EnvironmentName.t option;
    (*

    The name for a backend environment that is part of an Amplify app.

    *)
  3. stackName : StackName.t option;
    (*

    The AWS CloudFormation stack name of a backend environment.

    *)
  4. deploymentArtifacts : DeploymentArtifacts.t option;
    (*

    The name of deployment artifacts.

    *)
  5. createTime : CreateTime.t option;
    (*

    The creation date and time for a backend environment that is part of an Amplify app.

    *)
  6. updateTime : UpdateTime.t option;
    (*

    The last updated date and time for a backend environment that is part of an Amplify app.

    *)
}
Sourceval make : ?backendEnvironmentArn:??? -> ?environmentName:??? -> ?stackName:??? -> ?deploymentArtifacts:??? -> ?createTime:??? -> ?updateTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of BackendEnvironmentArn.t | `Timestamp of CreateTime.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