pub type CodeScanningAlertFixedEventAlertInstances<'a> = AlertInstance<'a>;

Aliased Type§

struct CodeScanningAlertFixedEventAlertInstances<'a> {
    pub ref_: &'a str,
    pub analysis_key: &'a str,
    pub environment: &'a str,
    pub state: CodeScanningAlertAppearedInBranchEventAlertState,
    pub commit_sha: Option<&'a str>,
    pub message: Option<AlertInstanceMessage<'a>>,
    pub location: Option<AlertInstanceLocation<'a>>,
    pub classifications: Option<Vec<&'a str>>,
}

Fields§

§ref_: &'a str

The full Git reference, formatted as refs/heads/<branch name>.

§analysis_key: &'a str

Identifies the configuration under which the analysis was executed. For example, in GitHub Actions this includes the workflow filename and job name.

§environment: &'a str

Identifies the variable values associated with the environment in which the analysis that generated this alert instance was performed, such as the language that was analyzed.

§state: CodeScanningAlertAppearedInBranchEventAlertState

State of a code scanning alert.

§commit_sha: Option<&'a str>§message: Option<AlertInstanceMessage<'a>>§location: Option<AlertInstanceLocation<'a>>§classifications: Option<Vec<&'a str>>