aws_sdk_applicationsignals/client/
list_grouping_attribute_definitions.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 [`ListGroupingAttributeDefinitions`](crate::operation::list_grouping_attribute_definitions::builders::ListGroupingAttributeDefinitionsFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`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>The token for the next set of results. Use this token to retrieve additional pages of grouping attribute definitions when the result set is large.</p><br>
7    /// - On success, responds with [`ListGroupingAttributeDefinitionsOutput`](crate::operation::list_grouping_attribute_definitions::ListGroupingAttributeDefinitionsOutput) with field(s):
8    ///   - [`grouping_attribute_definitions(Vec::<GroupingAttributeDefinition>)`](crate::operation::list_grouping_attribute_definitions::ListGroupingAttributeDefinitionsOutput::grouping_attribute_definitions): <p>An array of available grouping attribute definitions that can be used to create grouping configurations.</p>
9    ///   - [`updated_at(Option<DateTime>)`](crate::operation::list_grouping_attribute_definitions::ListGroupingAttributeDefinitionsOutput::updated_at): <p>The timestamp when the grouping attribute definitions were last updated. Expressed as the number of milliseconds since January 1, 1970, 00:00:00 UTC.</p>
10    ///   - [`next_token(Option<String>)`](crate::operation::list_grouping_attribute_definitions::ListGroupingAttributeDefinitionsOutput::next_token): <p>The token to use for retrieving the next page of results. This value is present only if there are more results available than were returned in the current response.</p>
11    /// - On failure, responds with [`SdkError<ListGroupingAttributeDefinitionsError>`](crate::operation::list_grouping_attribute_definitions::ListGroupingAttributeDefinitionsError)
12    pub fn list_grouping_attribute_definitions(
13        &self,
14    ) -> crate::operation::list_grouping_attribute_definitions::builders::ListGroupingAttributeDefinitionsFluentBuilder {
15        crate::operation::list_grouping_attribute_definitions::builders::ListGroupingAttributeDefinitionsFluentBuilder::new(self.handle.clone())
16    }
17}