Struct aws_sdk_securityhub::operation::batch_import_findings::builders::BatchImportFindingsFluentBuilder
source · pub struct BatchImportFindingsFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to BatchImportFindings
.
Imports security findings generated by a finding provider into Security Hub. This action is requested by the finding provider to import its findings into Security Hub.
BatchImportFindings
must be called by one of the following:
-
The Amazon Web Services account that is associated with a finding if you are using the default product ARN or are a partner sending findings from within a customer's Amazon Web Services account. In these cases, the identifier of the account that you are calling
BatchImportFindings
from needs to be the same as theAwsAccountId
attribute for the finding. -
An Amazon Web Services account that Security Hub has allow-listed for an official partner integration. In this case, you can call
BatchImportFindings
from the allow-listed account and send findings from different customer accounts in the same batch.
The maximum allowed size for a finding is 240 Kb. An error is returned for any finding larger than 240 Kb.
After a finding is created, BatchImportFindings
cannot be used to update the following finding fields and objects, which Security Hub customers use to manage their investigation workflow.
-
Note
-
UserDefinedFields
-
VerificationState
-
Workflow
Finding providers also should not use BatchImportFindings
to update the following attributes.
-
Confidence
-
Criticality
-
RelatedFindings
-
Severity
-
Types
Instead, finding providers use FindingProviderFields
to provide values for these attributes.
Implementations§
source§impl BatchImportFindingsFluentBuilder
impl BatchImportFindingsFluentBuilder
sourcepub fn as_input(&self) -> &BatchImportFindingsInputBuilder
pub fn as_input(&self) -> &BatchImportFindingsInputBuilder
Access the BatchImportFindings as a reference.
sourcepub async fn send(
self
) -> Result<BatchImportFindingsOutput, SdkError<BatchImportFindingsError, HttpResponse>>
pub async fn send( self ) -> Result<BatchImportFindingsOutput, SdkError<BatchImportFindingsError, HttpResponse>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn customize(
self
) -> CustomizableOperation<BatchImportFindingsOutput, BatchImportFindingsError, Self>
pub fn customize( self ) -> CustomizableOperation<BatchImportFindingsOutput, BatchImportFindingsError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn findings(self, input: AwsSecurityFinding) -> Self
pub fn findings(self, input: AwsSecurityFinding) -> Self
Appends an item to Findings
.
To override the contents of this collection use set_findings
.
A list of findings to import. To successfully import a finding, it must follow the Amazon Web Services Security Finding Format. Maximum of 100 findings per request.
sourcepub fn set_findings(self, input: Option<Vec<AwsSecurityFinding>>) -> Self
pub fn set_findings(self, input: Option<Vec<AwsSecurityFinding>>) -> Self
A list of findings to import. To successfully import a finding, it must follow the Amazon Web Services Security Finding Format. Maximum of 100 findings per request.
sourcepub fn get_findings(&self) -> &Option<Vec<AwsSecurityFinding>>
pub fn get_findings(&self) -> &Option<Vec<AwsSecurityFinding>>
A list of findings to import. To successfully import a finding, it must follow the Amazon Web Services Security Finding Format. Maximum of 100 findings per request.
Trait Implementations§
source§impl Clone for BatchImportFindingsFluentBuilder
impl Clone for BatchImportFindingsFluentBuilder
source§fn clone(&self) -> BatchImportFindingsFluentBuilder
fn clone(&self) -> BatchImportFindingsFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreAuto Trait Implementations§
impl Freeze for BatchImportFindingsFluentBuilder
impl !RefUnwindSafe for BatchImportFindingsFluentBuilder
impl Send for BatchImportFindingsFluentBuilder
impl Sync for BatchImportFindingsFluentBuilder
impl Unpin for BatchImportFindingsFluentBuilder
impl !UnwindSafe for BatchImportFindingsFluentBuilder
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