Struct aws_sdk_elasticsearch::operation::update_package::builders::UpdatePackageInputBuilder
source · #[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
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
Unique identifier for the package.
sourcepub fn get_package_id(&self) -> &Option<String>
pub fn get_package_id(&self) -> &Option<String>
Unique identifier for the package.
sourcepub fn package_source(self, input: PackageSource) -> Self
pub fn package_source(self, input: PackageSource) -> Self
The S3 location for importing the package specified as S3BucketName
and S3Key
sourcepub fn set_package_source(self, input: Option<PackageSource>) -> Self
pub fn set_package_source(self, input: Option<PackageSource>) -> Self
The S3 location for importing the package specified as S3BucketName
and S3Key
sourcepub fn get_package_source(&self) -> &Option<PackageSource>
pub fn get_package_source(&self) -> &Option<PackageSource>
The S3 location for importing the package specified as S3BucketName
and S3Key
sourcepub fn package_description(self, input: impl Into<String>) -> Self
pub fn package_description(self, input: impl Into<String>) -> Self
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
New description of the package.
sourcepub fn get_package_description(&self) -> &Option<String>
pub fn get_package_description(&self) -> &Option<String>
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
An info message for the new version which will be 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
An info message for the new version which will be shown as part of GetPackageVersionHistoryResponse
.
sourcepub fn get_commit_message(&self) -> &Option<String>
pub fn get_commit_message(&self) -> &Option<String>
An info message for the new version which will be 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