Struct aws_sdk_securityhub::operation::get_members::GetMembersInput
source · #[non_exhaustive]pub struct GetMembersInput {
pub account_ids: Option<Vec<String>>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.account_ids: Option<Vec<String>>
The list of account IDs for the Security Hub member accounts to return the details for.
Implementations§
source§impl GetMembersInput
impl GetMembersInput
sourcepub fn account_ids(&self) -> Option<&[String]>
pub fn account_ids(&self) -> Option<&[String]>
The list of account IDs for the Security Hub member accounts to return the details for.
source§impl GetMembersInput
impl GetMembersInput
sourcepub fn builder() -> GetMembersInputBuilder
pub fn builder() -> GetMembersInputBuilder
Creates a new builder-style object to manufacture GetMembersInput
.
Trait Implementations§
source§impl Clone for GetMembersInput
impl Clone for GetMembersInput
source§fn clone(&self) -> GetMembersInput
fn clone(&self) -> GetMembersInput
Returns a copy 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 GetMembersInput
impl Debug for GetMembersInput
source§impl PartialEq for GetMembersInput
impl PartialEq for GetMembersInput
source§fn eq(&self, other: &GetMembersInput) -> bool
fn eq(&self, other: &GetMembersInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for GetMembersInput
Auto Trait Implementations§
impl RefUnwindSafe for GetMembersInput
impl Send for GetMembersInput
impl Sync for GetMembersInput
impl Unpin for GetMembersInput
impl UnwindSafe for GetMembersInput
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