Module Values.ImageRepositorySource

Describes a source image repository.

Sourcetype nonrec t = {
  1. imageIdentifier : ImageIdentifier.t;
    (*

    The identifier of an image. For an image in Amazon Elastic Container Registry (Amazon ECR), this is an image name. For the image name format, see Pulling an image in the Amazon ECR User Guide.

    *)
  2. imageConfiguration : ImageConfiguration.t option;
    (*

    Configuration for running the identified image.

    *)
  3. imageRepositoryType : ImageRepositoryType.t;
    (*

    The type of the image repository. This reflects the repository provider and whether the repository is private or public.

    *)
}
Sourceval context_ : string
Sourceval make : ?imageConfiguration:??? -> imageIdentifier:ImageIdentifier.t -> imageRepositoryType:ImageRepositoryType.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ImageIdentifier.t | `Structure of (string * [> `Map of ([> `String of RuntimeEnvironmentVariablesKey.t ] * [> `String of RuntimeEnvironmentVariablesValue.t ]) list | `String of StartCommand.t ]) list ]) 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