// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`ListGroupingAttributeDefinitions`](crate::operation::list_grouping_attribute_definitions::builders::ListGroupingAttributeDefinitionsFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`next_token(impl Into<String>)`](crate::operation::list_grouping_attribute_definitions::builders::ListGroupingAttributeDefinitionsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_grouping_attribute_definitions::builders::ListGroupingAttributeDefinitionsFluentBuilder::set_next_token):<br>required: **false**<br><p>Include this value, if it was returned by the previous operation, to get the next set of grouping attribute definitions.</p><br>
/// - [`aws_account_id(impl Into<String>)`](crate::operation::list_grouping_attribute_definitions::builders::ListGroupingAttributeDefinitionsFluentBuilder::aws_account_id) / [`set_aws_account_id(Option<String>)`](crate::operation::list_grouping_attribute_definitions::builders::ListGroupingAttributeDefinitionsFluentBuilder::set_aws_account_id):<br>required: **false**<br><p>The Amazon Web Services account ID to retrieve grouping attribute definitions for. Use this when accessing grouping configurations from a different account in cross-account monitoring scenarios.</p><br>
/// - [`include_linked_accounts(bool)`](crate::operation::list_grouping_attribute_definitions::builders::ListGroupingAttributeDefinitionsFluentBuilder::include_linked_accounts) / [`set_include_linked_accounts(Option<bool>)`](crate::operation::list_grouping_attribute_definitions::builders::ListGroupingAttributeDefinitionsFluentBuilder::set_include_linked_accounts):<br>required: **false**<br><p>If you are using this operation in a monitoring account, specify <code>true</code> to include grouping attributes from source accounts in the returned data.</p><br>
/// - On success, responds with [`ListGroupingAttributeDefinitionsOutput`](crate::operation::list_grouping_attribute_definitions::ListGroupingAttributeDefinitionsOutput) with field(s):
/// - [`grouping_attribute_definitions(Vec::<GroupingAttributeDefinition>)`](crate::operation::list_grouping_attribute_definitions::ListGroupingAttributeDefinitionsOutput::grouping_attribute_definitions): <p>An array of structures, where each structure contains information about one grouping attribute definition, including the grouping name, source keys, and default values.</p>
/// - [`updated_at(Option<DateTime>)`](crate::operation::list_grouping_attribute_definitions::ListGroupingAttributeDefinitionsOutput::updated_at): <p>The timestamp when the grouping configuration was last updated. When used in a raw HTTP Query API, it is formatted as epoch time in seconds.</p>
/// - [`next_token(Option<String>)`](crate::operation::list_grouping_attribute_definitions::ListGroupingAttributeDefinitionsOutput::next_token): <p>Include this value in your next use of this API to get the next set of grouping attribute definitions.</p>
/// - On failure, responds with [`SdkError<ListGroupingAttributeDefinitionsError>`](crate::operation::list_grouping_attribute_definitions::ListGroupingAttributeDefinitionsError)
pub fn list_grouping_attribute_definitions(
&self,
) -> crate::operation::list_grouping_attribute_definitions::builders::ListGroupingAttributeDefinitionsFluentBuilder {
crate::operation::list_grouping_attribute_definitions::builders::ListGroupingAttributeDefinitionsFluentBuilder::new(self.handle.clone())
}
}