pub struct BatchGetDeploymentGroupsInput {
pub application_name: String,
pub deployment_group_names: Vec<String>,
}
Expand description
Represents the input of a BatchGetDeploymentGroups
operation.
Fields§
§application_name: String
The name of an AWS CodeDeploy application associated with the applicable IAM user or AWS account.
deployment_group_names: Vec<String>
The names of the deployment groups.
Trait Implementations§
Source§impl Clone for BatchGetDeploymentGroupsInput
impl Clone for BatchGetDeploymentGroupsInput
Source§fn clone(&self) -> BatchGetDeploymentGroupsInput
fn clone(&self) -> BatchGetDeploymentGroupsInput
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 BatchGetDeploymentGroupsInput
impl Default for BatchGetDeploymentGroupsInput
Source§fn default() -> BatchGetDeploymentGroupsInput
fn default() -> BatchGetDeploymentGroupsInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for BatchGetDeploymentGroupsInput
impl PartialEq for BatchGetDeploymentGroupsInput
Source§fn eq(&self, other: &BatchGetDeploymentGroupsInput) -> bool
fn eq(&self, other: &BatchGetDeploymentGroupsInput) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for BatchGetDeploymentGroupsInput
Auto Trait Implementations§
impl Freeze for BatchGetDeploymentGroupsInput
impl RefUnwindSafe for BatchGetDeploymentGroupsInput
impl Send for BatchGetDeploymentGroupsInput
impl Sync for BatchGetDeploymentGroupsInput
impl Unpin for BatchGetDeploymentGroupsInput
impl UnwindSafe for BatchGetDeploymentGroupsInput
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