pub struct ListSecurityProfilesForTargetRequest {
pub max_results: Option<i64>,
pub next_token: Option<String>,
pub recursive: Option<bool>,
pub security_profile_target_arn: String,
}Fields§
§max_results: Option<i64>The maximum number of results to return at one time.
next_token: Option<String>The token for the next set of results.
recursive: Option<bool>If true, return child groups too.
security_profile_target_arn: StringThe ARN of the target (thing group) whose attached security profiles you want to get.
Trait Implementations§
Source§impl Clone for ListSecurityProfilesForTargetRequest
impl Clone for ListSecurityProfilesForTargetRequest
Source§fn clone(&self) -> ListSecurityProfilesForTargetRequest
fn clone(&self) -> ListSecurityProfilesForTargetRequest
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 ListSecurityProfilesForTargetRequest
impl Default for ListSecurityProfilesForTargetRequest
Source§fn default() -> ListSecurityProfilesForTargetRequest
fn default() -> ListSecurityProfilesForTargetRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListSecurityProfilesForTargetRequest
impl PartialEq for ListSecurityProfilesForTargetRequest
Source§fn eq(&self, other: &ListSecurityProfilesForTargetRequest) -> bool
fn eq(&self, other: &ListSecurityProfilesForTargetRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ListSecurityProfilesForTargetRequest
Auto Trait Implementations§
impl Freeze for ListSecurityProfilesForTargetRequest
impl RefUnwindSafe for ListSecurityProfilesForTargetRequest
impl Send for ListSecurityProfilesForTargetRequest
impl Sync for ListSecurityProfilesForTargetRequest
impl Unpin for ListSecurityProfilesForTargetRequest
impl UnwindSafe for ListSecurityProfilesForTargetRequest
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