Struct aws_sdk_elasticsearch::operation::update_package::builders::UpdatePackageFluentBuilder
source · pub struct UpdatePackageFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to UpdatePackage
.
Updates a package for use with Amazon ES domains.
Implementations§
source§impl UpdatePackageFluentBuilder
impl UpdatePackageFluentBuilder
sourcepub fn as_input(&self) -> &UpdatePackageInputBuilder
pub fn as_input(&self) -> &UpdatePackageInputBuilder
Access the UpdatePackage as a reference.
sourcepub async fn send(
self
) -> Result<UpdatePackageOutput, SdkError<UpdatePackageError, HttpResponse>>
pub async fn send( self ) -> Result<UpdatePackageOutput, SdkError<UpdatePackageError, HttpResponse>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn customize(
self
) -> CustomizableOperation<UpdatePackageOutput, UpdatePackageError, Self>
pub fn customize( self ) -> CustomizableOperation<UpdatePackageOutput, UpdatePackageError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
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.
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
.
Trait Implementations§
source§impl Clone for UpdatePackageFluentBuilder
impl Clone for UpdatePackageFluentBuilder
source§fn clone(&self) -> UpdatePackageFluentBuilder
fn clone(&self) -> UpdatePackageFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more