aws-sdk-greengrass 0.26.0

AWS SDK for AWS Greengrass
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`ListResourceDefinitionVersions`](crate::operation::list_resource_definition_versions::builders::ListResourceDefinitionVersionsFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`max_results(impl Into<String>)`](crate::operation::list_resource_definition_versions::builders::ListResourceDefinitionVersionsFluentBuilder::max_results) / [`set_max_results(Option<String>)`](crate::operation::list_resource_definition_versions::builders::ListResourceDefinitionVersionsFluentBuilder::set_max_results): The maximum number of results to be returned per request.
    ///   - [`next_token(impl Into<String>)`](crate::operation::list_resource_definition_versions::builders::ListResourceDefinitionVersionsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_resource_definition_versions::builders::ListResourceDefinitionVersionsFluentBuilder::set_next_token): The token for the next set of results, or ''null'' if there are no additional results.
    ///   - [`resource_definition_id(impl Into<String>)`](crate::operation::list_resource_definition_versions::builders::ListResourceDefinitionVersionsFluentBuilder::resource_definition_id) / [`set_resource_definition_id(Option<String>)`](crate::operation::list_resource_definition_versions::builders::ListResourceDefinitionVersionsFluentBuilder::set_resource_definition_id): The ID of the resource definition.
    /// - On success, responds with [`ListResourceDefinitionVersionsOutput`](crate::operation::list_resource_definition_versions::ListResourceDefinitionVersionsOutput) with field(s):
    ///   - [`next_token(Option<String>)`](crate::operation::list_resource_definition_versions::ListResourceDefinitionVersionsOutput::next_token): The token for the next set of results, or ''null'' if there are no additional results.
    ///   - [`versions(Option<Vec<VersionInformation>>)`](crate::operation::list_resource_definition_versions::ListResourceDefinitionVersionsOutput::versions): Information about a version.
    /// - On failure, responds with [`SdkError<ListResourceDefinitionVersionsError>`](crate::operation::list_resource_definition_versions::ListResourceDefinitionVersionsError)
    pub fn list_resource_definition_versions(&self) -> crate::operation::list_resource_definition_versions::builders::ListResourceDefinitionVersionsFluentBuilder{
        crate::operation::list_resource_definition_versions::builders::ListResourceDefinitionVersionsFluentBuilder::new(self.handle.clone())
    }
}