#[non_exhaustive]pub struct UpdatePackageInputBuilder { /* private fields */ }
Expand description
A builder for UpdatePackageInput
.
Implementations§
source§impl UpdatePackageInputBuilder
impl UpdatePackageInputBuilder
sourcepub fn package_name(self, input: impl Into<String>) -> Self
pub fn package_name(self, input: impl Into<String>) -> Self
The name of the target software package.
This field is required.sourcepub fn set_package_name(self, input: Option<String>) -> Self
pub fn set_package_name(self, input: Option<String>) -> Self
The name of the target software package.
sourcepub fn get_package_name(&self) -> &Option<String>
pub fn get_package_name(&self) -> &Option<String>
The name of the target software package.
sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
The package description.
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
The package description.
sourcepub fn get_description(&self) -> &Option<String>
pub fn get_description(&self) -> &Option<String>
The package description.
sourcepub fn default_version_name(self, input: impl Into<String>) -> Self
pub fn default_version_name(self, input: impl Into<String>) -> Self
The name of the default package version.
Note: You cannot name a defaultVersion
and set unsetDefaultVersion
equal to true
at the same time.
sourcepub fn set_default_version_name(self, input: Option<String>) -> Self
pub fn set_default_version_name(self, input: Option<String>) -> Self
The name of the default package version.
Note: You cannot name a defaultVersion
and set unsetDefaultVersion
equal to true
at the same time.
sourcepub fn get_default_version_name(&self) -> &Option<String>
pub fn get_default_version_name(&self) -> &Option<String>
The name of the default package version.
Note: You cannot name a defaultVersion
and set unsetDefaultVersion
equal to true
at the same time.
sourcepub fn unset_default_version(self, input: bool) -> Self
pub fn unset_default_version(self, input: bool) -> Self
Indicates whether you want to remove the named default package version from the software package. Set as true
to remove the default package version.
Note: You cannot name a defaultVersion
and set unsetDefaultVersion
equal to true
at the same time.
sourcepub fn set_unset_default_version(self, input: Option<bool>) -> Self
pub fn set_unset_default_version(self, input: Option<bool>) -> Self
Indicates whether you want to remove the named default package version from the software package. Set as true
to remove the default package version.
Note: You cannot name a defaultVersion
and set unsetDefaultVersion
equal to true
at the same time.
sourcepub fn get_unset_default_version(&self) -> &Option<bool>
pub fn get_unset_default_version(&self) -> &Option<bool>
Indicates whether you want to remove the named default package version from the software package. Set as true
to remove the default package version.
Note: You cannot name a defaultVersion
and set unsetDefaultVersion
equal to true
at the same time.
sourcepub fn client_token(self, input: impl Into<String>) -> Self
pub fn client_token(self, input: impl Into<String>) -> Self
A unique case-sensitive identifier that you can provide to ensure the idempotency of the request. Don't reuse this client token if a new idempotent request is required.
sourcepub fn set_client_token(self, input: Option<String>) -> Self
pub fn set_client_token(self, input: Option<String>) -> Self
A unique case-sensitive identifier that you can provide to ensure the idempotency of the request. Don't reuse this client token if a new idempotent request is required.
sourcepub fn get_client_token(&self) -> &Option<String>
pub fn get_client_token(&self) -> &Option<String>
A unique case-sensitive identifier that you can provide to ensure the idempotency of the request. Don't reuse this client token if a new idempotent request is required.
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 ==
.