pub struct EnableSecurityHubRequest {
pub enable_default_standards: Option<bool>,
pub tags: Option<HashMap<String, String>>,
}
Fields§
§enable_default_standards: Option<bool>
Whether to enable the security standards that Security Hub has designated as automatically enabled. If you do not provide a value for EnableDefaultStandards
, it is set to true
. To not enable the automatically enabled standards, set EnableDefaultStandards
to false
.
The tags to add to the hub resource when you enable Security Hub.
Trait Implementations§
Source§impl Clone for EnableSecurityHubRequest
impl Clone for EnableSecurityHubRequest
Source§fn clone(&self) -> EnableSecurityHubRequest
fn clone(&self) -> EnableSecurityHubRequest
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 EnableSecurityHubRequest
impl Debug for EnableSecurityHubRequest
Source§impl Default for EnableSecurityHubRequest
impl Default for EnableSecurityHubRequest
Source§fn default() -> EnableSecurityHubRequest
fn default() -> EnableSecurityHubRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for EnableSecurityHubRequest
impl PartialEq for EnableSecurityHubRequest
Source§impl Serialize for EnableSecurityHubRequest
impl Serialize for EnableSecurityHubRequest
impl StructuralPartialEq for EnableSecurityHubRequest
Auto Trait Implementations§
impl Freeze for EnableSecurityHubRequest
impl RefUnwindSafe for EnableSecurityHubRequest
impl Send for EnableSecurityHubRequest
impl Sync for EnableSecurityHubRequest
impl Unpin for EnableSecurityHubRequest
impl UnwindSafe for EnableSecurityHubRequest
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