Struct aws_sdk_migrationhub::operation::create_progress_update_stream::builders::CreateProgressUpdateStreamInputBuilder
source · #[non_exhaustive]pub struct CreateProgressUpdateStreamInputBuilder { /* private fields */ }Expand description
A builder for CreateProgressUpdateStreamInput.
Implementations§
source§impl CreateProgressUpdateStreamInputBuilder
impl CreateProgressUpdateStreamInputBuilder
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.
This field is required.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.
sourcepub fn build(self) -> Result<CreateProgressUpdateStreamInput, BuildError>
pub fn build(self) -> Result<CreateProgressUpdateStreamInput, BuildError>
Consumes the builder and constructs a CreateProgressUpdateStreamInput.
source§impl CreateProgressUpdateStreamInputBuilder
impl CreateProgressUpdateStreamInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<CreateProgressUpdateStreamOutput, SdkError<CreateProgressUpdateStreamError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<CreateProgressUpdateStreamOutput, SdkError<CreateProgressUpdateStreamError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for CreateProgressUpdateStreamInputBuilder
impl Clone for CreateProgressUpdateStreamInputBuilder
source§fn clone(&self) -> CreateProgressUpdateStreamInputBuilder
fn clone(&self) -> CreateProgressUpdateStreamInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for CreateProgressUpdateStreamInputBuilder
impl Default for CreateProgressUpdateStreamInputBuilder
source§fn default() -> CreateProgressUpdateStreamInputBuilder
fn default() -> CreateProgressUpdateStreamInputBuilder
source§impl PartialEq for CreateProgressUpdateStreamInputBuilder
impl PartialEq for CreateProgressUpdateStreamInputBuilder
source§fn eq(&self, other: &CreateProgressUpdateStreamInputBuilder) -> bool
fn eq(&self, other: &CreateProgressUpdateStreamInputBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for CreateProgressUpdateStreamInputBuilder
Auto Trait Implementations§
impl Freeze for CreateProgressUpdateStreamInputBuilder
impl RefUnwindSafe for CreateProgressUpdateStreamInputBuilder
impl Send for CreateProgressUpdateStreamInputBuilder
impl Sync for CreateProgressUpdateStreamInputBuilder
impl Unpin for CreateProgressUpdateStreamInputBuilder
impl UnwindSafe for CreateProgressUpdateStreamInputBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more