aws-sdk-backup 1.109.0

AWS SDK for AWS Backup
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DescribeGlobalSettings`](crate::operation::describe_global_settings::builders::DescribeGlobalSettingsFluentBuilder) operation.
    ///
    /// - The fluent builder takes no input, just [`send`](crate::operation::describe_global_settings::builders::DescribeGlobalSettingsFluentBuilder::send) it.
    /// - On success, responds with [`DescribeGlobalSettingsOutput`](crate::operation::describe_global_settings::DescribeGlobalSettingsOutput) with field(s):
    ///   - [`global_settings(Option<HashMap::<String, String>>)`](crate::operation::describe_global_settings::DescribeGlobalSettingsOutput::global_settings): <p>The status of the flags <code>isCrossAccountBackupEnabled</code>, <code>isMpaEnabled</code> ('Mpa' refers to multi-party approval), and <code>isDelegatedAdministratorEnabled</code>.</p> <ul>  <li>   <p><code>isCrossAccountBackupEnabled</code>: Allow accounts in your organization to copy backups to other accounts.</p></li>  <li>   <p><code>isMpaEnabled</code>: Add cross-account access to your organization with the option to assign a Multi-party approval team to a logically air-gapped vault.</p></li>  <li>   <p><code>isDelegatedAdministratorEnabled</code>: Allow Backup to automatically synchronize delegated administrator permissions with Organizations.</p></li> </ul>
    ///   - [`last_update_time(Option<DateTime>)`](crate::operation::describe_global_settings::DescribeGlobalSettingsOutput::last_update_time): <p>The date and time that the supported flags were last updated. This update is in Unix format and Coordinated Universal Time (UTC). The value of <code>LastUpdateTime</code> is accurate to milliseconds. For example, the value 1516925490.087 represents Friday, January 26, 2018 12:11:30.087 AM.</p>
    /// - On failure, responds with [`SdkError<DescribeGlobalSettingsError>`](crate::operation::describe_global_settings::DescribeGlobalSettingsError)
    pub fn describe_global_settings(&self) -> crate::operation::describe_global_settings::builders::DescribeGlobalSettingsFluentBuilder {
        crate::operation::describe_global_settings::builders::DescribeGlobalSettingsFluentBuilder::new(self.handle.clone())
    }
}