#[non_exhaustive]pub struct ListCreatedArtifactsInput {
pub progress_update_stream: Option<String>,
pub migration_task_name: Option<String>,
pub next_token: Option<String>,
pub max_results: Option<i32>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.progress_update_stream: Option<String>The name of the ProgressUpdateStream.
migration_task_name: Option<String>Unique identifier that references the migration task. Do not store personal data in this field.
next_token: Option<String>If a NextToken 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 NextToken.
max_results: Option<i32>Maximum number of results to be returned per page.
Implementations§
source§impl ListCreatedArtifactsInput
impl ListCreatedArtifactsInput
sourcepub fn progress_update_stream(&self) -> Option<&str>
pub fn progress_update_stream(&self) -> Option<&str>
The name of the ProgressUpdateStream.
sourcepub fn migration_task_name(&self) -> Option<&str>
pub fn migration_task_name(&self) -> Option<&str>
Unique identifier that references the migration task. Do not store personal data in this field.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
If a NextToken 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 NextToken.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
Maximum number of results to be returned per page.
source§impl ListCreatedArtifactsInput
impl ListCreatedArtifactsInput
sourcepub fn builder() -> ListCreatedArtifactsInputBuilder
pub fn builder() -> ListCreatedArtifactsInputBuilder
Creates a new builder-style object to manufacture ListCreatedArtifactsInput.
Trait Implementations§
source§impl Clone for ListCreatedArtifactsInput
impl Clone for ListCreatedArtifactsInput
source§fn clone(&self) -> ListCreatedArtifactsInput
fn clone(&self) -> ListCreatedArtifactsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ListCreatedArtifactsInput
impl Debug for ListCreatedArtifactsInput
source§impl PartialEq for ListCreatedArtifactsInput
impl PartialEq for ListCreatedArtifactsInput
source§fn eq(&self, other: &ListCreatedArtifactsInput) -> bool
fn eq(&self, other: &ListCreatedArtifactsInput) -> bool
self and other values to be equal, and is used
by ==.