Struct aws_sdk_inspector2::operation::update_ec2_deep_inspection_configuration::UpdateEc2DeepInspectionConfigurationInput
source · #[non_exhaustive]pub struct UpdateEc2DeepInspectionConfigurationInput {
pub activate_deep_inspection: Option<bool>,
pub package_paths: Option<Vec<String>>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.activate_deep_inspection: Option<bool>Specify TRUE to activate Amazon Inspector deep inspection in your account, or FALSE to deactivate. Member accounts in an organization cannot deactivate deep inspection, instead the delegated administrator for the organization can deactivate a member account using BatchUpdateMemberEc2DeepInspectionStatus.
package_paths: Option<Vec<String>>The Amazon Inspector deep inspection custom paths you are adding for your account.
Implementations§
source§impl UpdateEc2DeepInspectionConfigurationInput
impl UpdateEc2DeepInspectionConfigurationInput
sourcepub fn activate_deep_inspection(&self) -> Option<bool>
pub fn activate_deep_inspection(&self) -> Option<bool>
Specify TRUE to activate Amazon Inspector deep inspection in your account, or FALSE to deactivate. Member accounts in an organization cannot deactivate deep inspection, instead the delegated administrator for the organization can deactivate a member account using BatchUpdateMemberEc2DeepInspectionStatus.
sourcepub fn package_paths(&self) -> &[String]
pub fn package_paths(&self) -> &[String]
The Amazon Inspector deep inspection custom paths you are adding for your account.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .package_paths.is_none().
source§impl UpdateEc2DeepInspectionConfigurationInput
impl UpdateEc2DeepInspectionConfigurationInput
sourcepub fn builder() -> UpdateEc2DeepInspectionConfigurationInputBuilder
pub fn builder() -> UpdateEc2DeepInspectionConfigurationInputBuilder
Creates a new builder-style object to manufacture UpdateEc2DeepInspectionConfigurationInput.
Trait Implementations§
source§impl Clone for UpdateEc2DeepInspectionConfigurationInput
impl Clone for UpdateEc2DeepInspectionConfigurationInput
source§fn clone(&self) -> UpdateEc2DeepInspectionConfigurationInput
fn clone(&self) -> UpdateEc2DeepInspectionConfigurationInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq for UpdateEc2DeepInspectionConfigurationInput
impl PartialEq for UpdateEc2DeepInspectionConfigurationInput
source§fn eq(&self, other: &UpdateEc2DeepInspectionConfigurationInput) -> bool
fn eq(&self, other: &UpdateEc2DeepInspectionConfigurationInput) -> bool
self and other values to be equal, and is used
by ==.