pub struct ListSecurityProfilesForTargetResponse {
pub next_token: Option<String>,
pub security_profile_target_mappings: Option<Vec<SecurityProfileTargetMapping>>,
}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_target_mappings: Option<Vec<SecurityProfileTargetMapping>>A list of security profiles and their associated targets.
Trait Implementations§
Source§impl Clone for ListSecurityProfilesForTargetResponse
impl Clone for ListSecurityProfilesForTargetResponse
Source§fn clone(&self) -> ListSecurityProfilesForTargetResponse
fn clone(&self) -> ListSecurityProfilesForTargetResponse
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 ListSecurityProfilesForTargetResponse
impl Default for ListSecurityProfilesForTargetResponse
Source§fn default() -> ListSecurityProfilesForTargetResponse
fn default() -> ListSecurityProfilesForTargetResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListSecurityProfilesForTargetResponse
impl<'de> Deserialize<'de> for ListSecurityProfilesForTargetResponse
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 ListSecurityProfilesForTargetResponse
impl PartialEq for ListSecurityProfilesForTargetResponse
Source§fn eq(&self, other: &ListSecurityProfilesForTargetResponse) -> bool
fn eq(&self, other: &ListSecurityProfilesForTargetResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ListSecurityProfilesForTargetResponse
Auto Trait Implementations§
impl Freeze for ListSecurityProfilesForTargetResponse
impl RefUnwindSafe for ListSecurityProfilesForTargetResponse
impl Send for ListSecurityProfilesForTargetResponse
impl Sync for ListSecurityProfilesForTargetResponse
impl Unpin for ListSecurityProfilesForTargetResponse
impl UnwindSafe for ListSecurityProfilesForTargetResponse
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