aws_sdk_iam/client/get_account_properties.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 [`GetAccountProperties`](crate::operation::get_account_properties::builders::GetAccountPropertiesFluentBuilder) operation.
4 ///
5 /// - The fluent builder takes no input, just [`send`](crate::operation::get_account_properties::builders::GetAccountPropertiesFluentBuilder::send) it.
6 /// - On success, responds with [`GetAccountPropertiesOutput`](crate::operation::get_account_properties::GetAccountPropertiesOutput) with field(s):
7 /// - [`properties(Option<HashMap::<String, String>>)`](crate::operation::get_account_properties::GetAccountPropertiesOutput::properties): <p>A map of account property key-value pairs. Keys are in the format <code>Namespace/PropertyName</code>.</p>
8 /// - On failure, responds with [`SdkError<GetAccountPropertiesError>`](crate::operation::get_account_properties::GetAccountPropertiesError)
9 pub fn get_account_properties(&self) -> crate::operation::get_account_properties::builders::GetAccountPropertiesFluentBuilder {
10 crate::operation::get_account_properties::builders::GetAccountPropertiesFluentBuilder::new(self.handle.clone())
11 }
12}