pub struct ListTargetsForSecurityProfileResponse {
pub next_token: Option<String>,
pub security_profile_targets: Option<Vec<SecurityProfileTarget>>,
}Fields§
§next_token: Option<String>A token that can be used to retrieve the next set of results, or null if there are no additional results.
security_profile_targets: Option<Vec<SecurityProfileTarget>>The thing groups to which the security profile is attached.
Trait Implementations§
Source§impl Clone for ListTargetsForSecurityProfileResponse
impl Clone for ListTargetsForSecurityProfileResponse
Source§fn clone(&self) -> ListTargetsForSecurityProfileResponse
fn clone(&self) -> ListTargetsForSecurityProfileResponse
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 ListTargetsForSecurityProfileResponse
impl Default for ListTargetsForSecurityProfileResponse
Source§fn default() -> ListTargetsForSecurityProfileResponse
fn default() -> ListTargetsForSecurityProfileResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListTargetsForSecurityProfileResponse
impl<'de> Deserialize<'de> for ListTargetsForSecurityProfileResponse
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
Source§impl PartialEq for ListTargetsForSecurityProfileResponse
impl PartialEq for ListTargetsForSecurityProfileResponse
Source§fn eq(&self, other: &ListTargetsForSecurityProfileResponse) -> bool
fn eq(&self, other: &ListTargetsForSecurityProfileResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ListTargetsForSecurityProfileResponse
Auto Trait Implementations§
impl Freeze for ListTargetsForSecurityProfileResponse
impl RefUnwindSafe for ListTargetsForSecurityProfileResponse
impl Send for ListTargetsForSecurityProfileResponse
impl Sync for ListTargetsForSecurityProfileResponse
impl Unpin for ListTargetsForSecurityProfileResponse
impl UnwindSafe for ListTargetsForSecurityProfileResponse
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