[][src]Struct rusoto_codecommit::OverridePullRequestApprovalRulesInput

pub struct OverridePullRequestApprovalRulesInput {
    pub override_status: String,
    pub pull_request_id: String,
    pub revision_id: String,
}

Fields

override_status: String

Whether you want to set aside approval rule requirements for the pull request (OVERRIDE) or revoke a previous override and apply approval rule requirements (REVOKE). REVOKE status is not stored.

pull_request_id: String

The system-generated ID of the pull request for which you want to override all approval rule requirements. To get this information, use GetPullRequest.

revision_id: String

The system-generated ID of the most recent revision of the pull request. You cannot override approval rules for anything but the most recent revision of a pull request. To get the revision ID, use GetPullRequest.

Trait Implementations

impl Clone for OverridePullRequestApprovalRulesInput[src]

impl Debug for OverridePullRequestApprovalRulesInput[src]

impl Default for OverridePullRequestApprovalRulesInput[src]

impl PartialEq<OverridePullRequestApprovalRulesInput> for OverridePullRequestApprovalRulesInput[src]

impl Serialize for OverridePullRequestApprovalRulesInput[src]

impl StructuralPartialEq for OverridePullRequestApprovalRulesInput[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.