Module Values.AuthenticationConfigurationSource

Describes resources needed to authenticate access to some source repositories. The specific resource depends on the repository provider.

Sourcetype nonrec t = {
  1. connectionArn : AppRunnerResourceArn.t option;
    (*

    The Amazon Resource Name (ARN) of the App Runner connection that enables the App Runner service to connect to a source repository. It's required for GitHub code repositories.

    *)
  2. accessRoleArn : RoleArn.t option;
    (*

    The Amazon Resource Name (ARN) of the IAM role that grants the App Runner service access to a source repository. It's required for ECR image repositories (but not for ECR Public repositories).

    *)
}
Sourceval make : ?connectionArn:??? -> ?accessRoleArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of AppRunnerResourceArn.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