pub struct BatchGetDeploymentsInput {
pub deployment_ids: Vec<String>,
}
Expand description
Represents the input of a BatchGetDeployments
operation.
Fields§
§deployment_ids: Vec<String>
A list of deployment IDs, separated by spaces. The maximum number of deployment IDs you can specify is 25.
Trait Implementations§
Source§impl Clone for BatchGetDeploymentsInput
impl Clone for BatchGetDeploymentsInput
Source§fn clone(&self) -> BatchGetDeploymentsInput
fn clone(&self) -> BatchGetDeploymentsInput
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 BatchGetDeploymentsInput
impl Debug for BatchGetDeploymentsInput
Source§impl Default for BatchGetDeploymentsInput
impl Default for BatchGetDeploymentsInput
Source§fn default() -> BatchGetDeploymentsInput
fn default() -> BatchGetDeploymentsInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for BatchGetDeploymentsInput
impl PartialEq for BatchGetDeploymentsInput
Source§impl Serialize for BatchGetDeploymentsInput
impl Serialize for BatchGetDeploymentsInput
impl StructuralPartialEq for BatchGetDeploymentsInput
Auto Trait Implementations§
impl Freeze for BatchGetDeploymentsInput
impl RefUnwindSafe for BatchGetDeploymentsInput
impl Send for BatchGetDeploymentsInput
impl Sync for BatchGetDeploymentsInput
impl Unpin for BatchGetDeploymentsInput
impl UnwindSafe for BatchGetDeploymentsInput
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