Struct aws_sdk_opensearch::operation::get_package_version_history::GetPackageVersionHistoryInput
source · #[non_exhaustive]pub struct GetPackageVersionHistoryInput {
pub package_id: Option<String>,
pub max_results: Option<i32>,
pub next_token: Option<String>,
}Expand description
Container for the request parameters to the GetPackageVersionHistory operation.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.package_id: Option<String>The unique identifier of the package.
max_results: Option<i32>An optional parameter that specifies the maximum number of results to return. You can use nextToken to get the next page of results.
next_token: Option<String>If your initial GetPackageVersionHistory operation returns a nextToken, you can include the returned nextToken in subsequent GetPackageVersionHistory operations, which returns results in the next page.
Implementations§
source§impl GetPackageVersionHistoryInput
impl GetPackageVersionHistoryInput
sourcepub fn package_id(&self) -> Option<&str>
pub fn package_id(&self) -> Option<&str>
The unique identifier of the package.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
An optional parameter that specifies the maximum number of results to return. You can use nextToken to get the next page of results.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
If your initial GetPackageVersionHistory operation returns a nextToken, you can include the returned nextToken in subsequent GetPackageVersionHistory operations, which returns results in the next page.
source§impl GetPackageVersionHistoryInput
impl GetPackageVersionHistoryInput
sourcepub fn builder() -> GetPackageVersionHistoryInputBuilder
pub fn builder() -> GetPackageVersionHistoryInputBuilder
Creates a new builder-style object to manufacture GetPackageVersionHistoryInput.
Trait Implementations§
source§impl Clone for GetPackageVersionHistoryInput
impl Clone for GetPackageVersionHistoryInput
source§fn clone(&self) -> GetPackageVersionHistoryInput
fn clone(&self) -> GetPackageVersionHistoryInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq for GetPackageVersionHistoryInput
impl PartialEq for GetPackageVersionHistoryInput
source§fn eq(&self, other: &GetPackageVersionHistoryInput) -> bool
fn eq(&self, other: &GetPackageVersionHistoryInput) -> bool
self and other values to be equal, and is used
by ==.