aws_sdk_resourceexplorer2/client/
get_account_level_service_configuration.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 [`GetAccountLevelServiceConfiguration`](crate::operation::get_account_level_service_configuration::builders::GetAccountLevelServiceConfigurationFluentBuilder) operation.
4    ///
5    /// - The fluent builder takes no input, just [`send`](crate::operation::get_account_level_service_configuration::builders::GetAccountLevelServiceConfigurationFluentBuilder::send) it.
6    /// - On success, responds with [`GetAccountLevelServiceConfigurationOutput`](crate::operation::get_account_level_service_configuration::GetAccountLevelServiceConfigurationOutput) with field(s):
7    ///   - [`org_configuration(Option<OrgConfiguration>)`](crate::operation::get_account_level_service_configuration::GetAccountLevelServiceConfigurationOutput::org_configuration): <p>Details about the organization, and whether configuration is <code>ENABLED</code> or <code>DISABLED</code>.</p>
8    /// - On failure, responds with [`SdkError<GetAccountLevelServiceConfigurationError>`](crate::operation::get_account_level_service_configuration::GetAccountLevelServiceConfigurationError)
9    pub fn get_account_level_service_configuration(
10        &self,
11    ) -> crate::operation::get_account_level_service_configuration::builders::GetAccountLevelServiceConfigurationFluentBuilder {
12        crate::operation::get_account_level_service_configuration::builders::GetAccountLevelServiceConfigurationFluentBuilder::new(
13            self.handle.clone(),
14        )
15    }
16}