#[non_exhaustive]pub struct GetNetworkInsightsAccessScopeAnalysisFindingsInput { /* private fields */ }
Implementations§
source§impl GetNetworkInsightsAccessScopeAnalysisFindingsInput
impl GetNetworkInsightsAccessScopeAnalysisFindingsInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<GetNetworkInsightsAccessScopeAnalysisFindings, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<GetNetworkInsightsAccessScopeAnalysisFindings, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<GetNetworkInsightsAccessScopeAnalysisFindings
>
Examples found in repository?
src/client.rs (line 59522)
59506 59507 59508 59509 59510 59511 59512 59513 59514 59515 59516 59517 59518 59519 59520 59521 59522 59523 59524 59525 59526 59527 59528 59529 59530 59531 59532 59533 59534 59535 59536 59537 59538 59539 59540 59541 59542 59543 59544 59545 59546 59547 59548 59549 59550 59551 59552
pub async fn customize(
self,
) -> std::result::Result<
crate::operation::customize::CustomizableOperation<
crate::operation::GetNetworkInsightsAccessScopeAnalysisFindings,
aws_http::retry::AwsResponseRetryClassifier,
>,
aws_smithy_http::result::SdkError<
crate::error::GetNetworkInsightsAccessScopeAnalysisFindingsError,
>,
> {
let handle = self.handle.clone();
let operation = self
.inner
.build()
.map_err(aws_smithy_http::result::SdkError::construction_failure)?
.make_operation(&handle.conf)
.await
.map_err(aws_smithy_http::result::SdkError::construction_failure)?;
Ok(crate::operation::customize::CustomizableOperation { handle, operation })
}
/// 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](aws_smithy_types::retry::RetryConfig), which can be
/// set when configuring the client.
pub async fn send(
self,
) -> std::result::Result<
crate::output::GetNetworkInsightsAccessScopeAnalysisFindingsOutput,
aws_smithy_http::result::SdkError<
crate::error::GetNetworkInsightsAccessScopeAnalysisFindingsError,
>,
> {
let op = self
.inner
.build()
.map_err(aws_smithy_http::result::SdkError::construction_failure)?
.make_operation(&self.handle.conf)
.await
.map_err(aws_smithy_http::result::SdkError::construction_failure)?;
self.handle.client.call(op).await
}
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture GetNetworkInsightsAccessScopeAnalysisFindingsInput
.
source§impl GetNetworkInsightsAccessScopeAnalysisFindingsInput
impl GetNetworkInsightsAccessScopeAnalysisFindingsInput
sourcepub fn network_insights_access_scope_analysis_id(&self) -> Option<&str>
pub fn network_insights_access_scope_analysis_id(&self) -> Option<&str>
The ID of the Network Access Scope analysis.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken
value.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
The token for the next page of results.
Trait Implementations§
source§impl Clone for GetNetworkInsightsAccessScopeAnalysisFindingsInput
impl Clone for GetNetworkInsightsAccessScopeAnalysisFindingsInput
source§fn clone(&self) -> GetNetworkInsightsAccessScopeAnalysisFindingsInput
fn clone(&self) -> GetNetworkInsightsAccessScopeAnalysisFindingsInput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more