pub struct ListDeploymentGroupsInput {
pub application_name: String,
pub next_token: Option<String>,
}
Expand description
Represents the input of a ListDeploymentGroups
operation.
Fields§
§application_name: String
The name of an AWS CodeDeploy application associated with the IAM user or AWS account.
next_token: Option<String>
An identifier returned from the previous list deployment groups call. It can be used to return the next set of deployment groups in the list.
Trait Implementations§
Source§impl Clone for ListDeploymentGroupsInput
impl Clone for ListDeploymentGroupsInput
Source§fn clone(&self) -> ListDeploymentGroupsInput
fn clone(&self) -> ListDeploymentGroupsInput
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 Debug for ListDeploymentGroupsInput
impl Debug for ListDeploymentGroupsInput
Source§impl Default for ListDeploymentGroupsInput
impl Default for ListDeploymentGroupsInput
Source§fn default() -> ListDeploymentGroupsInput
fn default() -> ListDeploymentGroupsInput
Returns the “default value” for a type. Read more
impl StructuralPartialEq for ListDeploymentGroupsInput
Auto Trait Implementations§
impl Freeze for ListDeploymentGroupsInput
impl RefUnwindSafe for ListDeploymentGroupsInput
impl Send for ListDeploymentGroupsInput
impl Sync for ListDeploymentGroupsInput
impl Unpin for ListDeploymentGroupsInput
impl UnwindSafe for ListDeploymentGroupsInput
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