Struct aws_sdk_securityhub::operation::create_finding_aggregator::builders::CreateFindingAggregatorOutputBuilder
source · #[non_exhaustive]pub struct CreateFindingAggregatorOutputBuilder { /* private fields */ }
Expand description
A builder for CreateFindingAggregatorOutput
.
Implementations§
source§impl CreateFindingAggregatorOutputBuilder
impl CreateFindingAggregatorOutputBuilder
sourcepub fn finding_aggregator_arn(self, input: impl Into<String>) -> Self
pub fn finding_aggregator_arn(self, input: impl Into<String>) -> Self
The ARN of the finding aggregator. You use the finding aggregator ARN to retrieve details for, update, and stop finding aggregation.
sourcepub fn set_finding_aggregator_arn(self, input: Option<String>) -> Self
pub fn set_finding_aggregator_arn(self, input: Option<String>) -> Self
The ARN of the finding aggregator. You use the finding aggregator ARN to retrieve details for, update, and stop finding aggregation.
sourcepub fn get_finding_aggregator_arn(&self) -> &Option<String>
pub fn get_finding_aggregator_arn(&self) -> &Option<String>
The ARN of the finding aggregator. You use the finding aggregator ARN to retrieve details for, update, and stop finding aggregation.
sourcepub fn finding_aggregation_region(self, input: impl Into<String>) -> Self
pub fn finding_aggregation_region(self, input: impl Into<String>) -> Self
The aggregation Region.
sourcepub fn set_finding_aggregation_region(self, input: Option<String>) -> Self
pub fn set_finding_aggregation_region(self, input: Option<String>) -> Self
The aggregation Region.
sourcepub fn get_finding_aggregation_region(&self) -> &Option<String>
pub fn get_finding_aggregation_region(&self) -> &Option<String>
The aggregation Region.
sourcepub fn region_linking_mode(self, input: impl Into<String>) -> Self
pub fn region_linking_mode(self, input: impl Into<String>) -> Self
Indicates whether to link all Regions, all Regions except for a list of excluded Regions, or a list of included Regions.
sourcepub fn set_region_linking_mode(self, input: Option<String>) -> Self
pub fn set_region_linking_mode(self, input: Option<String>) -> Self
Indicates whether to link all Regions, all Regions except for a list of excluded Regions, or a list of included Regions.
sourcepub fn get_region_linking_mode(&self) -> &Option<String>
pub fn get_region_linking_mode(&self) -> &Option<String>
Indicates whether to link all Regions, all Regions except for a list of excluded Regions, or a list of included Regions.
sourcepub fn regions(self, input: impl Into<String>) -> Self
pub fn regions(self, input: impl Into<String>) -> Self
Appends an item to regions
.
To override the contents of this collection use set_regions
.
The list of excluded Regions or included Regions.
sourcepub fn set_regions(self, input: Option<Vec<String>>) -> Self
pub fn set_regions(self, input: Option<Vec<String>>) -> Self
The list of excluded Regions or included Regions.
sourcepub fn get_regions(&self) -> &Option<Vec<String>>
pub fn get_regions(&self) -> &Option<Vec<String>>
The list of excluded Regions or included Regions.
sourcepub fn build(self) -> CreateFindingAggregatorOutput
pub fn build(self) -> CreateFindingAggregatorOutput
Consumes the builder and constructs a CreateFindingAggregatorOutput
.
Trait Implementations§
source§impl Clone for CreateFindingAggregatorOutputBuilder
impl Clone for CreateFindingAggregatorOutputBuilder
source§fn clone(&self) -> CreateFindingAggregatorOutputBuilder
fn clone(&self) -> CreateFindingAggregatorOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for CreateFindingAggregatorOutputBuilder
impl Default for CreateFindingAggregatorOutputBuilder
source§fn default() -> CreateFindingAggregatorOutputBuilder
fn default() -> CreateFindingAggregatorOutputBuilder
source§impl PartialEq for CreateFindingAggregatorOutputBuilder
impl PartialEq for CreateFindingAggregatorOutputBuilder
source§fn eq(&self, other: &CreateFindingAggregatorOutputBuilder) -> bool
fn eq(&self, other: &CreateFindingAggregatorOutputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CreateFindingAggregatorOutputBuilder
Auto Trait Implementations§
impl Freeze for CreateFindingAggregatorOutputBuilder
impl RefUnwindSafe for CreateFindingAggregatorOutputBuilder
impl Send for CreateFindingAggregatorOutputBuilder
impl Sync for CreateFindingAggregatorOutputBuilder
impl Unpin for CreateFindingAggregatorOutputBuilder
impl UnwindSafe for CreateFindingAggregatorOutputBuilder
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