pub struct ListDeploymentGroupsOutput {
pub application_name: Option<String>,
pub deployment_groups: Option<Vec<String>>,
pub next_token: Option<String>,
}
Expand description
Represents the output of a ListDeploymentGroups
operation.
Fields§
§application_name: Option<String>
The application name.
deployment_groups: Option<Vec<String>>
A list of deployment group names.
next_token: Option<String>
If a large amount of information is returned, an identifier is also returned. It can be used in a subsequent list deployment groups call to return the next set of deployment groups in the list.
Trait Implementations§
Source§impl Clone for ListDeploymentGroupsOutput
impl Clone for ListDeploymentGroupsOutput
Source§fn clone(&self) -> ListDeploymentGroupsOutput
fn clone(&self) -> ListDeploymentGroupsOutput
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 ListDeploymentGroupsOutput
impl Debug for ListDeploymentGroupsOutput
Source§impl Default for ListDeploymentGroupsOutput
impl Default for ListDeploymentGroupsOutput
Source§fn default() -> ListDeploymentGroupsOutput
fn default() -> ListDeploymentGroupsOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListDeploymentGroupsOutput
impl<'de> Deserialize<'de> for ListDeploymentGroupsOutput
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for ListDeploymentGroupsOutput
Auto Trait Implementations§
impl Freeze for ListDeploymentGroupsOutput
impl RefUnwindSafe for ListDeploymentGroupsOutput
impl Send for ListDeploymentGroupsOutput
impl Sync for ListDeploymentGroupsOutput
impl Unpin for ListDeploymentGroupsOutput
impl UnwindSafe for ListDeploymentGroupsOutput
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