Struct aws_sdk_codecommit::operation::get_pull_request_override_state::builders::GetPullRequestOverrideStateOutputBuilder
source · #[non_exhaustive]pub struct GetPullRequestOverrideStateOutputBuilder { /* private fields */ }Expand description
A builder for GetPullRequestOverrideStateOutput.
Implementations§
source§impl GetPullRequestOverrideStateOutputBuilder
impl GetPullRequestOverrideStateOutputBuilder
sourcepub fn overridden(self, input: bool) -> Self
pub fn overridden(self, input: bool) -> Self
A Boolean value that indicates whether a pull request has had its rules set aside (TRUE) or whether all approval rules still apply (FALSE).
sourcepub fn set_overridden(self, input: Option<bool>) -> Self
pub fn set_overridden(self, input: Option<bool>) -> Self
A Boolean value that indicates whether a pull request has had its rules set aside (TRUE) or whether all approval rules still apply (FALSE).
sourcepub fn get_overridden(&self) -> &Option<bool>
pub fn get_overridden(&self) -> &Option<bool>
A Boolean value that indicates whether a pull request has had its rules set aside (TRUE) or whether all approval rules still apply (FALSE).
sourcepub fn overrider(self, input: impl Into<String>) -> Self
pub fn overrider(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the user or identity that overrode the rules and their requirements for the pull request.
sourcepub fn set_overrider(self, input: Option<String>) -> Self
pub fn set_overrider(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the user or identity that overrode the rules and their requirements for the pull request.
sourcepub fn get_overrider(&self) -> &Option<String>
pub fn get_overrider(&self) -> &Option<String>
The Amazon Resource Name (ARN) of the user or identity that overrode the rules and their requirements for the pull request.
sourcepub fn build(self) -> GetPullRequestOverrideStateOutput
pub fn build(self) -> GetPullRequestOverrideStateOutput
Consumes the builder and constructs a GetPullRequestOverrideStateOutput.
Trait Implementations§
source§impl Clone for GetPullRequestOverrideStateOutputBuilder
impl Clone for GetPullRequestOverrideStateOutputBuilder
source§fn clone(&self) -> GetPullRequestOverrideStateOutputBuilder
fn clone(&self) -> GetPullRequestOverrideStateOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for GetPullRequestOverrideStateOutputBuilder
impl Default for GetPullRequestOverrideStateOutputBuilder
source§fn default() -> GetPullRequestOverrideStateOutputBuilder
fn default() -> GetPullRequestOverrideStateOutputBuilder
source§impl PartialEq for GetPullRequestOverrideStateOutputBuilder
impl PartialEq for GetPullRequestOverrideStateOutputBuilder
source§fn eq(&self, other: &GetPullRequestOverrideStateOutputBuilder) -> bool
fn eq(&self, other: &GetPullRequestOverrideStateOutputBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for GetPullRequestOverrideStateOutputBuilder
Auto Trait Implementations§
impl Freeze for GetPullRequestOverrideStateOutputBuilder
impl RefUnwindSafe for GetPullRequestOverrideStateOutputBuilder
impl Send for GetPullRequestOverrideStateOutputBuilder
impl Sync for GetPullRequestOverrideStateOutputBuilder
impl Unpin for GetPullRequestOverrideStateOutputBuilder
impl UnwindSafe for GetPullRequestOverrideStateOutputBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more