pub struct UpdatePackageFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to UpdatePackage
.
Updates a package for use with Amazon OpenSearch Service domains. For more information, see Custom packages for Amazon OpenSearch Service.
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
The 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
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.
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
.
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