Struct aws_sdk_migrationhub::operation::create_progress_update_stream::builders::CreateProgressUpdateStreamFluentBuilder
source · pub struct CreateProgressUpdateStreamFluentBuilder { /* private fields */ }Expand description
Fluent builder constructing a request to CreateProgressUpdateStream.
Creates a progress update stream which is an AWS resource used for access control as well as a namespace for migration task names that is implicitly linked to your AWS account. It must uniquely identify the migration tool as it is used for all updates made by the tool; however, it does not need to be unique for each AWS account because it is scoped to the AWS account.
Implementations§
source§impl CreateProgressUpdateStreamFluentBuilder
impl CreateProgressUpdateStreamFluentBuilder
sourcepub fn as_input(&self) -> &CreateProgressUpdateStreamInputBuilder
pub fn as_input(&self) -> &CreateProgressUpdateStreamInputBuilder
Access the CreateProgressUpdateStream as a reference.
sourcepub async fn send(
self
) -> Result<CreateProgressUpdateStreamOutput, SdkError<CreateProgressUpdateStreamError, HttpResponse>>
pub async fn send( self ) -> Result<CreateProgressUpdateStreamOutput, SdkError<CreateProgressUpdateStreamError, HttpResponse>>
Sends the request and returns the response.
If an error occurs, an SdkError will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn customize(
self
) -> CustomizableOperation<CreateProgressUpdateStreamOutput, CreateProgressUpdateStreamError, Self>
pub fn customize( self ) -> CustomizableOperation<CreateProgressUpdateStreamOutput, CreateProgressUpdateStreamError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn progress_update_stream_name(self, input: impl Into<String>) -> Self
pub fn progress_update_stream_name(self, input: impl Into<String>) -> Self
The name of the ProgressUpdateStream. Do not store personal data in this field.
sourcepub fn set_progress_update_stream_name(self, input: Option<String>) -> Self
pub fn set_progress_update_stream_name(self, input: Option<String>) -> Self
The name of the ProgressUpdateStream. Do not store personal data in this field.
sourcepub fn get_progress_update_stream_name(&self) -> &Option<String>
pub fn get_progress_update_stream_name(&self) -> &Option<String>
The name of the ProgressUpdateStream. Do not store personal data in this field.
sourcepub fn dry_run(self, input: bool) -> Self
pub fn dry_run(self, input: bool) -> Self
Optional boolean flag to indicate whether any effect should take place. Used to test if the caller has permission to make the call.
sourcepub fn set_dry_run(self, input: Option<bool>) -> Self
pub fn set_dry_run(self, input: Option<bool>) -> Self
Optional boolean flag to indicate whether any effect should take place. Used to test if the caller has permission to make the call.
sourcepub fn get_dry_run(&self) -> &Option<bool>
pub fn get_dry_run(&self) -> &Option<bool>
Optional boolean flag to indicate whether any effect should take place. Used to test if the caller has permission to make the call.
Trait Implementations§
source§impl Clone for CreateProgressUpdateStreamFluentBuilder
impl Clone for CreateProgressUpdateStreamFluentBuilder
source§fn clone(&self) -> CreateProgressUpdateStreamFluentBuilder
fn clone(&self) -> CreateProgressUpdateStreamFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more