// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`Enable`](crate::operation::enable::builders::EnableFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`account_ids(impl Into<String>)`](crate::operation::enable::builders::EnableFluentBuilder::account_ids) / [`set_account_ids(Option<Vec<String>>)`](crate::operation::enable::builders::EnableFluentBuilder::set_account_ids): <p>A list of account IDs you want to enable Amazon Inspector scans for.</p>
/// - [`resource_types(ResourceScanType)`](crate::operation::enable::builders::EnableFluentBuilder::resource_types) / [`set_resource_types(Option<Vec<ResourceScanType>>)`](crate::operation::enable::builders::EnableFluentBuilder::set_resource_types): <p>The resource scan types you want to enable.</p>
/// - [`client_token(impl Into<String>)`](crate::operation::enable::builders::EnableFluentBuilder::client_token) / [`set_client_token(Option<String>)`](crate::operation::enable::builders::EnableFluentBuilder::set_client_token): <p>The idempotency token for the request.</p>
/// - On success, responds with [`EnableOutput`](crate::operation::enable::EnableOutput) with field(s):
/// - [`accounts(Option<Vec<Account>>)`](crate::operation::enable::EnableOutput::accounts): <p>Information on the accounts that have had Amazon Inspector scans successfully enabled. Details are provided for each account.</p>
/// - [`failed_accounts(Option<Vec<FailedAccount>>)`](crate::operation::enable::EnableOutput::failed_accounts): <p>Information on any accounts for which Amazon Inspector scans could not be enabled. Details are provided for each account.</p>
/// - On failure, responds with [`SdkError<EnableError>`](crate::operation::enable::EnableError)
pub fn enable(&self) -> crate::operation::enable::builders::EnableFluentBuilder {
crate::operation::enable::builders::EnableFluentBuilder::new(self.handle.clone())
}
}