1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`UpdateEc2DeepInspectionConfiguration`](crate::operation::update_ec2_deep_inspection_configuration::builders::UpdateEc2DeepInspectionConfigurationFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`activate_deep_inspection(bool)`](crate::operation::update_ec2_deep_inspection_configuration::builders::UpdateEc2DeepInspectionConfigurationFluentBuilder::activate_deep_inspection) / [`set_activate_deep_inspection(Option<bool>)`](crate::operation::update_ec2_deep_inspection_configuration::builders::UpdateEc2DeepInspectionConfigurationFluentBuilder::set_activate_deep_inspection): <p>Specify <code>TRUE</code> to activate Amazon Inspector deep inspection in your account, or <code>FALSE</code> to deactivate. Member accounts in an organization cannot deactivate deep inspection, instead the delegated administrator for the organization can deactivate a member account using <a href="https://docs.aws.amazon.com/inspector/v2/APIReference/API_BatchUpdateMemberEc2DeepInspectionStatus.html">BatchUpdateMemberEc2DeepInspectionStatus</a>.</p>
    ///   - [`package_paths(impl Into<String>)`](crate::operation::update_ec2_deep_inspection_configuration::builders::UpdateEc2DeepInspectionConfigurationFluentBuilder::package_paths) / [`set_package_paths(Option<Vec<String>>)`](crate::operation::update_ec2_deep_inspection_configuration::builders::UpdateEc2DeepInspectionConfigurationFluentBuilder::set_package_paths): <p>The Amazon Inspector deep inspection custom paths you are adding for your account.</p>
    /// - On success, responds with [`UpdateEc2DeepInspectionConfigurationOutput`](crate::operation::update_ec2_deep_inspection_configuration::UpdateEc2DeepInspectionConfigurationOutput) with field(s):
    ///   - [`package_paths(Option<Vec<String>>)`](crate::operation::update_ec2_deep_inspection_configuration::UpdateEc2DeepInspectionConfigurationOutput::package_paths): <p>The current Amazon Inspector deep inspection custom paths for your account.</p>
    ///   - [`org_package_paths(Option<Vec<String>>)`](crate::operation::update_ec2_deep_inspection_configuration::UpdateEc2DeepInspectionConfigurationOutput::org_package_paths): <p>The current Amazon Inspector deep inspection custom paths for the organization.</p>
    ///   - [`status(Option<Ec2DeepInspectionStatus>)`](crate::operation::update_ec2_deep_inspection_configuration::UpdateEc2DeepInspectionConfigurationOutput::status): <p>The status of Amazon Inspector deep inspection in your account.</p>
    ///   - [`error_message(Option<String>)`](crate::operation::update_ec2_deep_inspection_configuration::UpdateEc2DeepInspectionConfigurationOutput::error_message): <p>An error message explaining why new Amazon Inspector deep inspection custom paths could not be added.</p>
    /// - On failure, responds with [`SdkError<UpdateEc2DeepInspectionConfigurationError>`](crate::operation::update_ec2_deep_inspection_configuration::UpdateEc2DeepInspectionConfigurationError)
    pub fn update_ec2_deep_inspection_configuration(
        &self,
    ) -> crate::operation::update_ec2_deep_inspection_configuration::builders::UpdateEc2DeepInspectionConfigurationFluentBuilder {
        crate::operation::update_ec2_deep_inspection_configuration::builders::UpdateEc2DeepInspectionConfigurationFluentBuilder::new(
            self.handle.clone(),
        )
    }
}