#[non_exhaustive]pub struct UpdatePackageInputBuilder { /* private fields */ }
Expand description
A builder for UpdatePackageInput
.
Implementations§
source§impl UpdatePackageInputBuilder
impl UpdatePackageInputBuilder
sourcepub fn package_id(self, input: impl Into<String>) -> Self
pub fn package_id(self, input: impl Into<String>) -> Self
The unique identifier for the package.
This field is required.sourcepub fn set_package_id(self, input: Option<String>) -> Self
pub fn set_package_id(self, input: Option<String>) -> Self
The unique identifier for the package.
sourcepub fn get_package_id(&self) -> &Option<String>
pub fn get_package_id(&self) -> &Option<String>
The unique identifier for the package.
sourcepub fn package_source(self, input: PackageSource) -> Self
pub fn package_source(self, input: PackageSource) -> Self
Amazon S3 bucket and key for the package.
This field is required.sourcepub fn set_package_source(self, input: Option<PackageSource>) -> Self
pub fn set_package_source(self, input: Option<PackageSource>) -> Self
Amazon S3 bucket and key for the package.
sourcepub fn get_package_source(&self) -> &Option<PackageSource>
pub fn get_package_source(&self) -> &Option<PackageSource>
Amazon S3 bucket and key for the package.
sourcepub fn package_description(self, input: impl Into<String>) -> Self
pub fn package_description(self, input: impl Into<String>) -> Self
A new description of the package.
sourcepub fn set_package_description(self, input: Option<String>) -> Self
pub fn set_package_description(self, input: Option<String>) -> Self
A new description of the package.
sourcepub fn get_package_description(&self) -> &Option<String>
pub fn get_package_description(&self) -> &Option<String>
A new description of the package.
sourcepub fn commit_message(self, input: impl Into<String>) -> Self
pub fn commit_message(self, input: impl Into<String>) -> Self
Commit message for the updated file, which is shown as part of GetPackageVersionHistoryResponse
.
sourcepub fn set_commit_message(self, input: Option<String>) -> Self
pub fn set_commit_message(self, input: Option<String>) -> Self
Commit message for the updated file, which is shown as part of GetPackageVersionHistoryResponse
.
sourcepub fn get_commit_message(&self) -> &Option<String>
pub fn get_commit_message(&self) -> &Option<String>
Commit message for the updated file, which is shown as part of GetPackageVersionHistoryResponse
.
sourcepub fn build(self) -> Result<UpdatePackageInput, BuildError>
pub fn build(self) -> Result<UpdatePackageInput, BuildError>
Consumes the builder and constructs a UpdatePackageInput
.
source§impl UpdatePackageInputBuilder
impl UpdatePackageInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<UpdatePackageOutput, SdkError<UpdatePackageError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<UpdatePackageOutput, SdkError<UpdatePackageError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for UpdatePackageInputBuilder
impl Clone for UpdatePackageInputBuilder
source§fn clone(&self) -> UpdatePackageInputBuilder
fn clone(&self) -> UpdatePackageInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for UpdatePackageInputBuilder
impl Debug for UpdatePackageInputBuilder
source§impl Default for UpdatePackageInputBuilder
impl Default for UpdatePackageInputBuilder
source§fn default() -> UpdatePackageInputBuilder
fn default() -> UpdatePackageInputBuilder
source§impl PartialEq for UpdatePackageInputBuilder
impl PartialEq for UpdatePackageInputBuilder
source§fn eq(&self, other: &UpdatePackageInputBuilder) -> bool
fn eq(&self, other: &UpdatePackageInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for UpdatePackageInputBuilder
Auto Trait Implementations§
impl Freeze for UpdatePackageInputBuilder
impl RefUnwindSafe for UpdatePackageInputBuilder
impl Send for UpdatePackageInputBuilder
impl Sync for UpdatePackageInputBuilder
impl Unpin for UpdatePackageInputBuilder
impl UnwindSafe for UpdatePackageInputBuilder
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