Module Values.ConnectionSummarySource

Provides summary information about an App Runner connection resource.

Sourcetype nonrec t = {
  1. connectionName : ConnectionName.t option;
    (*

    The customer-provided connection name.

    *)
  2. connectionArn : AppRunnerResourceArn.t option;
    (*

    The Amazon Resource Name (ARN) of this connection.

    *)
  3. providerType : ProviderType.t option;
    (*

    The source repository provider.

    *)
  4. status : ConnectionStatus.t option;
    (*

    The current state of the App Runner connection. When the state is AVAILABLE, you can use the connection to create an App Runner service.

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

    The App Runner connection creation time, expressed as a Unix time stamp.

    *)
}
Sourceval make : ?connectionName:??? -> ?connectionArn:??? -> ?providerType:??? -> ?status:??? -> ?createdAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ConnectionName.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