#[non_exhaustive]pub struct ExportBundleInputBuilder { /* private fields */ }Expand description
A builder for ExportBundleInput.
Implementations§
source§impl ExportBundleInputBuilder
impl ExportBundleInputBuilder
sourcepub fn bundle_id(self, input: impl Into<String>) -> Self
pub fn bundle_id(self, input: impl Into<String>) -> Self
Unique bundle identifier.
This field is required.sourcepub fn set_bundle_id(self, input: Option<String>) -> Self
pub fn set_bundle_id(self, input: Option<String>) -> Self
Unique bundle identifier.
sourcepub fn get_bundle_id(&self) -> &Option<String>
pub fn get_bundle_id(&self) -> &Option<String>
Unique bundle identifier.
sourcepub fn project_id(self, input: impl Into<String>) -> Self
pub fn project_id(self, input: impl Into<String>) -> Self
Unique project identifier.
sourcepub fn set_project_id(self, input: Option<String>) -> Self
pub fn set_project_id(self, input: Option<String>) -> Self
Unique project identifier.
sourcepub fn get_project_id(&self) -> &Option<String>
pub fn get_project_id(&self) -> &Option<String>
Unique project identifier.
sourcepub fn platform(self, input: Platform) -> Self
pub fn platform(self, input: Platform) -> Self
Developer desktop or target application platform.
sourcepub fn set_platform(self, input: Option<Platform>) -> Self
pub fn set_platform(self, input: Option<Platform>) -> Self
Developer desktop or target application platform.
sourcepub fn get_platform(&self) -> &Option<Platform>
pub fn get_platform(&self) -> &Option<Platform>
Developer desktop or target application platform.
sourcepub fn build(self) -> Result<ExportBundleInput, BuildError>
pub fn build(self) -> Result<ExportBundleInput, BuildError>
Consumes the builder and constructs a ExportBundleInput.
source§impl ExportBundleInputBuilder
impl ExportBundleInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<ExportBundleOutput, SdkError<ExportBundleError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<ExportBundleOutput, SdkError<ExportBundleError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for ExportBundleInputBuilder
impl Clone for ExportBundleInputBuilder
source§fn clone(&self) -> ExportBundleInputBuilder
fn clone(&self) -> ExportBundleInputBuilder
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 ExportBundleInputBuilder
impl Debug for ExportBundleInputBuilder
source§impl Default for ExportBundleInputBuilder
impl Default for ExportBundleInputBuilder
source§fn default() -> ExportBundleInputBuilder
fn default() -> ExportBundleInputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for ExportBundleInputBuilder
impl PartialEq for ExportBundleInputBuilder
source§fn eq(&self, other: &ExportBundleInputBuilder) -> bool
fn eq(&self, other: &ExportBundleInputBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ExportBundleInputBuilder
Auto Trait Implementations§
impl Freeze for ExportBundleInputBuilder
impl RefUnwindSafe for ExportBundleInputBuilder
impl Send for ExportBundleInputBuilder
impl Sync for ExportBundleInputBuilder
impl Unpin for ExportBundleInputBuilder
impl UnwindSafe for ExportBundleInputBuilder
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.