pub struct DescribeApplicationVersionsMessage {
pub application_name: Option<String>,
pub max_records: Option<i64>,
pub next_token: Option<String>,
pub version_labels: Option<Vec<String>>,
}
Expand description
Request to describe application versions.
Fields§
§application_name: Option<String>
Specify an application name to show only application versions for that application.
max_records: Option<i64>
For a paginated request. Specify a maximum number of application versions to include in each response.
If no MaxRecords
is specified, all available application versions are retrieved in a single response.
next_token: Option<String>
For a paginated request. Specify a token from a previous response page to retrieve the next response page. All other parameter values must be identical to the ones specified in the initial request.
If no NextToken
is specified, the first page is retrieved.
version_labels: Option<Vec<String>>
Specify a version label to show a specific application version.
Trait Implementations§
Source§impl Clone for DescribeApplicationVersionsMessage
impl Clone for DescribeApplicationVersionsMessage
Source§fn clone(&self) -> DescribeApplicationVersionsMessage
fn clone(&self) -> DescribeApplicationVersionsMessage
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Default for DescribeApplicationVersionsMessage
impl Default for DescribeApplicationVersionsMessage
Source§fn default() -> DescribeApplicationVersionsMessage
fn default() -> DescribeApplicationVersionsMessage
Returns the “default value” for a type. Read more
Source§impl PartialEq for DescribeApplicationVersionsMessage
impl PartialEq for DescribeApplicationVersionsMessage
Source§fn eq(&self, other: &DescribeApplicationVersionsMessage) -> bool
fn eq(&self, other: &DescribeApplicationVersionsMessage) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DescribeApplicationVersionsMessage
Auto Trait Implementations§
impl Freeze for DescribeApplicationVersionsMessage
impl RefUnwindSafe for DescribeApplicationVersionsMessage
impl Send for DescribeApplicationVersionsMessage
impl Sync for DescribeApplicationVersionsMessage
impl Unpin for DescribeApplicationVersionsMessage
impl UnwindSafe for DescribeApplicationVersionsMessage
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more