Module Values.CreateIntegrationInputSource

Creates a new integration with a third-party provider, such as GitHub, for code review and remediation.

Sourcetype nonrec t = {
  1. provider : Provider.t;
    (*

    The integration provider. Currently, only GITHUB is supported.

    *)
  2. input : ProviderInput.t;
    (*

    The provider-specific input required to create the integration.

    *)
  3. integrationDisplayName : String_.t;
    (*

    The display name for the integration.

    *)
  4. kmsKeyId : KmsKeyId.t option;
    (*

    The identifier of the AWS KMS key to use for encrypting data associated with the integration.

    *)
  5. tags : TagMap.t option;
    (*

    The tags to associate with the integration.

    *)
}
Sourceval context_ : string
Sourceval make : ?kmsKeyId:??? -> ?tags:??? -> provider:Provider.t -> input:ProviderInput.t -> integrationDisplayName:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of String_.t | `Structure of (string * [> `Structure of (string * [> `String of AuthCode.t ]) 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