aws_sdk_datazone/client/
list_environment_blueprints.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`ListEnvironmentBlueprints`](crate::operation::list_environment_blueprints::builders::ListEnvironmentBlueprintsFluentBuilder) operation.
    /// This operation supports pagination; See [`into_paginator()`](crate::operation::list_environment_blueprints::builders::ListEnvironmentBlueprintsFluentBuilder::into_paginator).
    ///
    /// - The fluent builder is configurable:
    ///   - [`domain_identifier(impl Into<String>)`](crate::operation::list_environment_blueprints::builders::ListEnvironmentBlueprintsFluentBuilder::domain_identifier) / [`set_domain_identifier(Option<String>)`](crate::operation::list_environment_blueprints::builders::ListEnvironmentBlueprintsFluentBuilder::set_domain_identifier):<br>required: **true**<br><p>The identifier of the Amazon DataZone domain.</p><br>
    ///   - [`max_results(i32)`](crate::operation::list_environment_blueprints::builders::ListEnvironmentBlueprintsFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_environment_blueprints::builders::ListEnvironmentBlueprintsFluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum number of blueprints to return in a single call to <code>ListEnvironmentBlueprints</code>. When the number of blueprints to be listed is greater than the value of <code>MaxResults</code>, the response contains a <code>NextToken</code> value that you can use in a subsequent call to <code>ListEnvironmentBlueprints</code> to list the next set of blueprints.</p><br>
    ///   - [`next_token(impl Into<String>)`](crate::operation::list_environment_blueprints::builders::ListEnvironmentBlueprintsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_environment_blueprints::builders::ListEnvironmentBlueprintsFluentBuilder::set_next_token):<br>required: **false**<br><p>When the number of blueprints in the environment is greater than the default value for the <code>MaxResults</code> parameter, or if you explicitly specify a value for <code>MaxResults</code> that is less than the number of blueprints in the environment, the response includes a pagination token named <code>NextToken</code>. You can specify this <code>NextToken</code> value in a subsequent call to <code>ListEnvironmentBlueprints</code>to list the next set of blueprints.</p><br>
    ///   - [`name(impl Into<String>)`](crate::operation::list_environment_blueprints::builders::ListEnvironmentBlueprintsFluentBuilder::name) / [`set_name(Option<String>)`](crate::operation::list_environment_blueprints::builders::ListEnvironmentBlueprintsFluentBuilder::set_name):<br>required: **false**<br><p>The name of the Amazon DataZone environment.</p><br>
    ///   - [`managed(bool)`](crate::operation::list_environment_blueprints::builders::ListEnvironmentBlueprintsFluentBuilder::managed) / [`set_managed(Option<bool>)`](crate::operation::list_environment_blueprints::builders::ListEnvironmentBlueprintsFluentBuilder::set_managed):<br>required: **false**<br><p>Specifies whether the environment blueprint is managed by Amazon DataZone.</p><br>
    /// - On success, responds with [`ListEnvironmentBlueprintsOutput`](crate::operation::list_environment_blueprints::ListEnvironmentBlueprintsOutput) with field(s):
    ///   - [`items(Vec::<EnvironmentBlueprintSummary>)`](crate::operation::list_environment_blueprints::ListEnvironmentBlueprintsOutput::items): <p>The results of the <code>ListEnvironmentBlueprints</code> action.</p>
    ///   - [`next_token(Option<String>)`](crate::operation::list_environment_blueprints::ListEnvironmentBlueprintsOutput::next_token): <p>When the number of blueprints in the environment is greater than the default value for the <code>MaxResults</code> parameter, or if you explicitly specify a value for <code>MaxResults</code> that is less than the number of blueprints in the environment, the response includes a pagination token named <code>NextToken</code>. You can specify this <code>NextToken</code> value in a subsequent call to <code>ListEnvironmentBlueprints</code>to list the next set of blueprints.</p>
    /// - On failure, responds with [`SdkError<ListEnvironmentBlueprintsError>`](crate::operation::list_environment_blueprints::ListEnvironmentBlueprintsError)
    pub fn list_environment_blueprints(&self) -> crate::operation::list_environment_blueprints::builders::ListEnvironmentBlueprintsFluentBuilder {
        crate::operation::list_environment_blueprints::builders::ListEnvironmentBlueprintsFluentBuilder::new(self.handle.clone())
    }
}