pub struct ListApplicationDependenciesRequest {
pub application_id: String,
pub max_items: Option<i64>,
pub next_token: Option<String>,
pub semantic_version: Option<String>,
}
Fields§
§application_id: String
The Amazon Resource Name (ARN) of the application.
max_items: Option<i64>
The total number of items to return.
next_token: Option<String>
A token to specify where to start paginating.
semantic_version: Option<String>
The semantic version of the application to get.
Trait Implementations§
Source§impl Clone for ListApplicationDependenciesRequest
impl Clone for ListApplicationDependenciesRequest
Source§fn clone(&self) -> ListApplicationDependenciesRequest
fn clone(&self) -> ListApplicationDependenciesRequest
Returns a copy 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 ListApplicationDependenciesRequest
impl Default for ListApplicationDependenciesRequest
Source§fn default() -> ListApplicationDependenciesRequest
fn default() -> ListApplicationDependenciesRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListApplicationDependenciesRequest
impl PartialEq for ListApplicationDependenciesRequest
Source§fn eq(&self, other: &ListApplicationDependenciesRequest) -> bool
fn eq(&self, other: &ListApplicationDependenciesRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ListApplicationDependenciesRequest
Auto Trait Implementations§
impl Freeze for ListApplicationDependenciesRequest
impl RefUnwindSafe for ListApplicationDependenciesRequest
impl Send for ListApplicationDependenciesRequest
impl Sync for ListApplicationDependenciesRequest
impl Unpin for ListApplicationDependenciesRequest
impl UnwindSafe for ListApplicationDependenciesRequest
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