#[non_exhaustive]pub struct FindingSourceDetailBuilder { /* private fields */ }
Expand description
A builder for FindingSourceDetail
.
Implementations§
source§impl FindingSourceDetailBuilder
impl FindingSourceDetailBuilder
sourcepub fn access_point_arn(self, input: impl Into<String>) -> Self
pub fn access_point_arn(self, input: impl Into<String>) -> Self
The ARN of the access point that generated the finding. The ARN format depends on whether the ARN represents an access point or a multi-region access point.
sourcepub fn set_access_point_arn(self, input: Option<String>) -> Self
pub fn set_access_point_arn(self, input: Option<String>) -> Self
The ARN of the access point that generated the finding. The ARN format depends on whether the ARN represents an access point or a multi-region access point.
sourcepub fn get_access_point_arn(&self) -> &Option<String>
pub fn get_access_point_arn(&self) -> &Option<String>
The ARN of the access point that generated the finding. The ARN format depends on whether the ARN represents an access point or a multi-region access point.
sourcepub fn access_point_account(self, input: impl Into<String>) -> Self
pub fn access_point_account(self, input: impl Into<String>) -> Self
The account of the cross-account access point that generated the finding.
sourcepub fn set_access_point_account(self, input: Option<String>) -> Self
pub fn set_access_point_account(self, input: Option<String>) -> Self
The account of the cross-account access point that generated the finding.
sourcepub fn get_access_point_account(&self) -> &Option<String>
pub fn get_access_point_account(&self) -> &Option<String>
The account of the cross-account access point that generated the finding.
sourcepub fn build(self) -> FindingSourceDetail
pub fn build(self) -> FindingSourceDetail
Consumes the builder and constructs a FindingSourceDetail
.
Trait Implementations§
source§impl Clone for FindingSourceDetailBuilder
impl Clone for FindingSourceDetailBuilder
source§fn clone(&self) -> FindingSourceDetailBuilder
fn clone(&self) -> FindingSourceDetailBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for FindingSourceDetailBuilder
impl Debug for FindingSourceDetailBuilder
source§impl Default for FindingSourceDetailBuilder
impl Default for FindingSourceDetailBuilder
source§fn default() -> FindingSourceDetailBuilder
fn default() -> FindingSourceDetailBuilder
source§impl PartialEq for FindingSourceDetailBuilder
impl PartialEq for FindingSourceDetailBuilder
source§fn eq(&self, other: &FindingSourceDetailBuilder) -> bool
fn eq(&self, other: &FindingSourceDetailBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for FindingSourceDetailBuilder
Auto Trait Implementations§
impl Freeze for FindingSourceDetailBuilder
impl RefUnwindSafe for FindingSourceDetailBuilder
impl Send for FindingSourceDetailBuilder
impl Sync for FindingSourceDetailBuilder
impl Unpin for FindingSourceDetailBuilder
impl UnwindSafe for FindingSourceDetailBuilder
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