Struct aws_sdk_quicksight::operation::restore_analysis::builders::RestoreAnalysisInputBuilder
source · #[non_exhaustive]pub struct RestoreAnalysisInputBuilder { /* private fields */ }Expand description
A builder for RestoreAnalysisInput.
Implementations§
source§impl RestoreAnalysisInputBuilder
impl RestoreAnalysisInputBuilder
sourcepub fn aws_account_id(self, input: impl Into<String>) -> Self
pub fn aws_account_id(self, input: impl Into<String>) -> Self
The ID of the Amazon Web Services account that contains the analysis.
This field is required.sourcepub fn set_aws_account_id(self, input: Option<String>) -> Self
pub fn set_aws_account_id(self, input: Option<String>) -> Self
The ID of the Amazon Web Services account that contains the analysis.
sourcepub fn get_aws_account_id(&self) -> &Option<String>
pub fn get_aws_account_id(&self) -> &Option<String>
The ID of the Amazon Web Services account that contains the analysis.
sourcepub fn analysis_id(self, input: impl Into<String>) -> Self
pub fn analysis_id(self, input: impl Into<String>) -> Self
The ID of the analysis that you're restoring.
This field is required.sourcepub fn set_analysis_id(self, input: Option<String>) -> Self
pub fn set_analysis_id(self, input: Option<String>) -> Self
The ID of the analysis that you're restoring.
sourcepub fn get_analysis_id(&self) -> &Option<String>
pub fn get_analysis_id(&self) -> &Option<String>
The ID of the analysis that you're restoring.
sourcepub fn build(self) -> Result<RestoreAnalysisInput, BuildError>
pub fn build(self) -> Result<RestoreAnalysisInput, BuildError>
Consumes the builder and constructs a RestoreAnalysisInput.
source§impl RestoreAnalysisInputBuilder
impl RestoreAnalysisInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<RestoreAnalysisOutput, SdkError<RestoreAnalysisError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<RestoreAnalysisOutput, SdkError<RestoreAnalysisError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for RestoreAnalysisInputBuilder
impl Clone for RestoreAnalysisInputBuilder
source§fn clone(&self) -> RestoreAnalysisInputBuilder
fn clone(&self) -> RestoreAnalysisInputBuilder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for RestoreAnalysisInputBuilder
impl Debug for RestoreAnalysisInputBuilder
source§impl Default for RestoreAnalysisInputBuilder
impl Default for RestoreAnalysisInputBuilder
source§fn default() -> RestoreAnalysisInputBuilder
fn default() -> RestoreAnalysisInputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for RestoreAnalysisInputBuilder
impl PartialEq for RestoreAnalysisInputBuilder
source§fn eq(&self, other: &RestoreAnalysisInputBuilder) -> bool
fn eq(&self, other: &RestoreAnalysisInputBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for RestoreAnalysisInputBuilder
Auto Trait Implementations§
impl Freeze for RestoreAnalysisInputBuilder
impl RefUnwindSafe for RestoreAnalysisInputBuilder
impl Send for RestoreAnalysisInputBuilder
impl Sync for RestoreAnalysisInputBuilder
impl Unpin for RestoreAnalysisInputBuilder
impl UnwindSafe for RestoreAnalysisInputBuilder
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
Mutably borrows from an owned value. Read more
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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.