aws_sdk_inspector2/client/
batch_get_member_ec2_deep_inspection_status.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3    /// Constructs a fluent builder for the [`BatchGetMemberEc2DeepInspectionStatus`](crate::operation::batch_get_member_ec2_deep_inspection_status::builders::BatchGetMemberEc2DeepInspectionStatusFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`account_ids(impl Into<String>)`](crate::operation::batch_get_member_ec2_deep_inspection_status::builders::BatchGetMemberEc2DeepInspectionStatusFluentBuilder::account_ids) / [`set_account_ids(Option<Vec::<String>>)`](crate::operation::batch_get_member_ec2_deep_inspection_status::builders::BatchGetMemberEc2DeepInspectionStatusFluentBuilder::set_account_ids):<br>required: **false**<br><p>The unique identifiers for the Amazon Web Services accounts to retrieve Amazon Inspector deep inspection activation status for.</p><br>
7    /// - On success, responds with [`BatchGetMemberEc2DeepInspectionStatusOutput`](crate::operation::batch_get_member_ec2_deep_inspection_status::BatchGetMemberEc2DeepInspectionStatusOutput) with field(s):
8    ///   - [`account_ids(Option<Vec::<MemberAccountEc2DeepInspectionStatusState>>)`](crate::operation::batch_get_member_ec2_deep_inspection_status::BatchGetMemberEc2DeepInspectionStatusOutput::account_ids): <p>An array of objects that provide details on the activation status of Amazon Inspector deep inspection for each of the requested accounts.</p>
9    ///   - [`failed_account_ids(Option<Vec::<FailedMemberAccountEc2DeepInspectionStatusState>>)`](crate::operation::batch_get_member_ec2_deep_inspection_status::BatchGetMemberEc2DeepInspectionStatusOutput::failed_account_ids): <p>An array of objects that provide details on any accounts that failed to activate Amazon Inspector deep inspection and why.</p>
10    /// - On failure, responds with [`SdkError<BatchGetMemberEc2DeepInspectionStatusError>`](crate::operation::batch_get_member_ec2_deep_inspection_status::BatchGetMemberEc2DeepInspectionStatusError)
11    pub fn batch_get_member_ec2_deep_inspection_status(
12        &self,
13    ) -> crate::operation::batch_get_member_ec2_deep_inspection_status::builders::BatchGetMemberEc2DeepInspectionStatusFluentBuilder {
14        crate::operation::batch_get_member_ec2_deep_inspection_status::builders::BatchGetMemberEc2DeepInspectionStatusFluentBuilder::new(
15            self.handle.clone(),
16        )
17    }
18}