pub struct BatchGetDeploymentInstancesInput {
pub deployment_id: String,
pub instance_ids: Vec<String>,
}Expand description
Represents the input of a BatchGetDeploymentInstances operation.
Fields§
§deployment_id: StringThe unique ID of a deployment.
instance_ids: Vec<String>The unique IDs of instances used in the deployment. The maximum number of instance IDs you can specify is 25.
Trait Implementations§
Source§impl Clone for BatchGetDeploymentInstancesInput
impl Clone for BatchGetDeploymentInstancesInput
Source§fn clone(&self) -> BatchGetDeploymentInstancesInput
fn clone(&self) -> BatchGetDeploymentInstancesInput
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 BatchGetDeploymentInstancesInput
impl Default for BatchGetDeploymentInstancesInput
Source§fn default() -> BatchGetDeploymentInstancesInput
fn default() -> BatchGetDeploymentInstancesInput
Returns the “default value” for a type. Read more
impl StructuralPartialEq for BatchGetDeploymentInstancesInput
Auto Trait Implementations§
impl Freeze for BatchGetDeploymentInstancesInput
impl RefUnwindSafe for BatchGetDeploymentInstancesInput
impl Send for BatchGetDeploymentInstancesInput
impl Sync for BatchGetDeploymentInstancesInput
impl Unpin for BatchGetDeploymentInstancesInput
impl UnsafeUnpin for BatchGetDeploymentInstancesInput
impl UnwindSafe for BatchGetDeploymentInstancesInput
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