Module Values.CodeRepositoryDetailsSource

Details about an external code repository with which you can connect your Amazon Web Services resources. The connection is established through Amazon Inspector.

Sourcetype nonrec t = {
  1. providerType : NonEmptyString.t option;
    (*

    The type of repository provider.

    *)
  2. projectName : NonEmptyString.t option;
    (*

    The name of the project in the code repository.

    *)
  3. codeSecurityIntegrationArn : NonEmptyString.t option;
    (*

    The Amazon Resource Name (ARN) of the code security integration associated with the repository.

    *)
}
Sourceval make : ?providerType:??? -> ?projectName:??? -> ?codeSecurityIntegrationArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of NonEmptyString.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