1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`ListMobileDeviceAccessRules`](crate::operation::list_mobile_device_access_rules::builders::ListMobileDeviceAccessRulesFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`organization_id(impl Into<String>)`](crate::operation::list_mobile_device_access_rules::builders::ListMobileDeviceAccessRulesFluentBuilder::organization_id) / [`set_organization_id(Option<String>)`](crate::operation::list_mobile_device_access_rules::builders::ListMobileDeviceAccessRulesFluentBuilder::set_organization_id):<br>required: **true**<br><p>The WorkMail organization for which to list the rules.</p><br>
    /// - On success, responds with [`ListMobileDeviceAccessRulesOutput`](crate::operation::list_mobile_device_access_rules::ListMobileDeviceAccessRulesOutput) with field(s):
    ///   - [`rules(Option<Vec::<MobileDeviceAccessRule>>)`](crate::operation::list_mobile_device_access_rules::ListMobileDeviceAccessRulesOutput::rules): <p>The list of mobile device access rules that exist under the specified WorkMail organization.</p>
    /// - On failure, responds with [`SdkError<ListMobileDeviceAccessRulesError>`](crate::operation::list_mobile_device_access_rules::ListMobileDeviceAccessRulesError)
    pub fn list_mobile_device_access_rules(
        &self,
    ) -> crate::operation::list_mobile_device_access_rules::builders::ListMobileDeviceAccessRulesFluentBuilder {
        crate::operation::list_mobile_device_access_rules::builders::ListMobileDeviceAccessRulesFluentBuilder::new(self.handle.clone())
    }
}