pub struct ListDeploymentTargetsOutput {
pub next_token: Option<String>,
pub target_ids: Option<Vec<String>>,
}Fields§
§next_token: Option<String> If a large amount of information is returned, a token identifier is also returned. It can be used in a subsequent ListDeploymentTargets call to return the next set of deployment targets in the list.
target_ids: Option<Vec<String>>The unique IDs of deployment targets.
Trait Implementations§
Source§impl Clone for ListDeploymentTargetsOutput
impl Clone for ListDeploymentTargetsOutput
Source§fn clone(&self) -> ListDeploymentTargetsOutput
fn clone(&self) -> ListDeploymentTargetsOutput
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 ListDeploymentTargetsOutput
impl Debug for ListDeploymentTargetsOutput
Source§impl Default for ListDeploymentTargetsOutput
impl Default for ListDeploymentTargetsOutput
Source§fn default() -> ListDeploymentTargetsOutput
fn default() -> ListDeploymentTargetsOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListDeploymentTargetsOutput
impl<'de> Deserialize<'de> for ListDeploymentTargetsOutput
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 ListDeploymentTargetsOutput
Auto Trait Implementations§
impl Freeze for ListDeploymentTargetsOutput
impl RefUnwindSafe for ListDeploymentTargetsOutput
impl Send for ListDeploymentTargetsOutput
impl Sync for ListDeploymentTargetsOutput
impl Unpin for ListDeploymentTargetsOutput
impl UnwindSafe for ListDeploymentTargetsOutput
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