Module Values.ContainerServiceRegistryLoginSource

Describes the sign-in credentials for the container image registry of an Amazon Lightsail account.

Sourcetype nonrec t = {
  1. username : String_.t option;
    (*

    The container service registry username to use to push container images to the container image registry of a Lightsail account.

    *)
  2. password : String_.t option;
    (*

    The container service registry password to use to push container images to the container image registry of a Lightsail account

    *)
  3. expiresAt : IsoDate.t option;
    (*

    The timestamp of when the container image registry sign-in credentials expire. The log in credentials expire 12 hours after they are created, at which point you will need to create a new set of log in credentials using the CreateContainerServiceRegistryLogin action.

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

    The address to use to push container images to the container image registry of a Lightsail account.

    *)
}
Sourceval make : ?username:??? -> ?password:??? -> ?expiresAt:??? -> ?registry:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.t | `Timestamp of IsoDate.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