Struct aws_sdk_opensearch::client::fluent_builders::UpdatePackage
source · pub struct UpdatePackage { /* 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 UpdatePackage
impl UpdatePackage
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<UpdatePackage, AwsResponseRetryClassifier>, SdkError<UpdatePackageError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<UpdatePackage, AwsResponseRetryClassifier>, SdkError<UpdatePackageError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub async fn send(
self
) -> Result<UpdatePackageOutput, SdkError<UpdatePackageError>>
pub async fn send(
self
) -> Result<UpdatePackageOutput, SdkError<UpdatePackageError>>
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 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 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 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 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
.
Trait Implementations§
source§impl Clone for UpdatePackage
impl Clone for UpdatePackage
source§fn clone(&self) -> UpdatePackage
fn clone(&self) -> UpdatePackage
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more