aws_sdk_migrationhub/client/list_created_artifacts.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 [`ListCreatedArtifacts`](crate::operation::list_created_artifacts::builders::ListCreatedArtifactsFluentBuilder) operation.
4 /// This operation supports pagination; See [`into_paginator()`](crate::operation::list_created_artifacts::builders::ListCreatedArtifactsFluentBuilder::into_paginator).
5 ///
6 /// - The fluent builder is configurable:
7 /// - [`progress_update_stream(impl Into<String>)`](crate::operation::list_created_artifacts::builders::ListCreatedArtifactsFluentBuilder::progress_update_stream) / [`set_progress_update_stream(Option<String>)`](crate::operation::list_created_artifacts::builders::ListCreatedArtifactsFluentBuilder::set_progress_update_stream):<br>required: **true**<br><p>The name of the ProgressUpdateStream.</p><br>
8 /// - [`migration_task_name(impl Into<String>)`](crate::operation::list_created_artifacts::builders::ListCreatedArtifactsFluentBuilder::migration_task_name) / [`set_migration_task_name(Option<String>)`](crate::operation::list_created_artifacts::builders::ListCreatedArtifactsFluentBuilder::set_migration_task_name):<br>required: **true**<br><p>Unique identifier that references the migration task. <i>Do not store personal data in this field.</i></p><br>
9 /// - [`next_token(impl Into<String>)`](crate::operation::list_created_artifacts::builders::ListCreatedArtifactsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_created_artifacts::builders::ListCreatedArtifactsFluentBuilder::set_next_token):<br>required: **false**<br><p>If a <code>NextToken</code> was returned by a previous call, there are more results available. To retrieve the next page of results, make the call again using the returned token in <code>NextToken</code>.</p><br>
10 /// - [`max_results(i32)`](crate::operation::list_created_artifacts::builders::ListCreatedArtifactsFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_created_artifacts::builders::ListCreatedArtifactsFluentBuilder::set_max_results):<br>required: **false**<br><p>Maximum number of results to be returned per page.</p><br>
11 /// - On success, responds with [`ListCreatedArtifactsOutput`](crate::operation::list_created_artifacts::ListCreatedArtifactsOutput) with field(s):
12 /// - [`next_token(Option<String>)`](crate::operation::list_created_artifacts::ListCreatedArtifactsOutput::next_token): <p>If there are more created artifacts than the max result, return the next token to be passed to the next call as a bookmark of where to start from.</p>
13 /// - [`created_artifact_list(Option<Vec::<CreatedArtifact>>)`](crate::operation::list_created_artifacts::ListCreatedArtifactsOutput::created_artifact_list): <p>List of created artifacts up to the maximum number of results specified in the request.</p>
14 /// - On failure, responds with [`SdkError<ListCreatedArtifactsError>`](crate::operation::list_created_artifacts::ListCreatedArtifactsError)
15 pub fn list_created_artifacts(&self) -> crate::operation::list_created_artifacts::builders::ListCreatedArtifactsFluentBuilder {
16 crate::operation::list_created_artifacts::builders::ListCreatedArtifactsFluentBuilder::new(self.handle.clone())
17 }
18}