Module Values.SourceAuthSource

Information about the authorization settings for CodeBuild to access the source code to be built.

Sourcetype nonrec t = {
  1. type_ : SourceAuthType.t;
    (*

    The authorization type to use. Valid options are OAUTH, CODECONNECTIONS, or SECRETS_MANAGER.

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

    The resource value that applies to the specified authorization type.

    *)
}
Sourceval context_ : string
Sourceval make : ?resource:??? -> type_:SourceAuthType.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of String_.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