Module Values.SourceConfigurationSource

Describes the source deployed to an App Runner service. It can be a code or an image repository.

Sourcetype nonrec t = {
  1. codeRepository : CodeRepository.t option;
    (*

    The description of a source code repository. You must provide either this member or ImageRepository (but not both).

    *)
  2. imageRepository : ImageRepository.t option;
    (*

    The description of a source image repository. You must provide either this member or CodeRepository (but not both).

    *)
  3. autoDeploymentsEnabled : NullableBoolean.t option;
    (*

    If true, continuous integration from the source repository is enabled for the App Runner service. Each repository change (including any source code commit or new image version) starts a deployment. Default: App Runner sets to false for a source image that uses an ECR Public repository or an ECR repository that's in an Amazon Web Services account other than the one that the service is in. App Runner sets to true in all other cases (which currently include a source code repository or a source image using a same-account ECR repository).

    *)
  4. authenticationConfiguration : AuthenticationConfiguration.t option;
    (*

    Describes the resources that are needed to authenticate access to some source repositories.

    *)
}
Sourceval make : ?codeRepository:??? -> ?imageRepository:??? -> ?autoDeploymentsEnabled:??? -> ?authenticationConfiguration:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of NullableBoolean.t | `Structure of (string * [> `Enum of string | `String of String_.t | `Structure of (string * [> `Enum of string | `Map of ([> `String of RuntimeEnvironmentVariablesKey.t ] * [> `String of RuntimeEnvironmentVariablesValue.t ]) list | `String of String_.t | `Structure of (string * [> `Enum of string | `Map of ([> `String of RuntimeEnvironmentVariablesKey.t ] * [> `String of RuntimeEnvironmentVariablesValue.t ]) list | `String of BuildCommand.t ]) list ]) list ]) 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