Struct aws_sdk_inspector2::operation::update_ec2_deep_inspection_configuration::UpdateEc2DeepInspectionConfigurationOutput
source · #[non_exhaustive]pub struct UpdateEc2DeepInspectionConfigurationOutput {
pub package_paths: Option<Vec<String>>,
pub org_package_paths: Option<Vec<String>>,
pub status: Option<Ec2DeepInspectionStatus>,
pub error_message: Option<String>,
/* private fields */
}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.package_paths: Option<Vec<String>>The current Amazon Inspector deep inspection custom paths for your account.
org_package_paths: Option<Vec<String>>The current Amazon Inspector deep inspection custom paths for the organization.
status: Option<Ec2DeepInspectionStatus>The status of Amazon Inspector deep inspection in your account.
error_message: Option<String>An error message explaining why new Amazon Inspector deep inspection custom paths could not be added.
Implementations§
source§impl UpdateEc2DeepInspectionConfigurationOutput
impl UpdateEc2DeepInspectionConfigurationOutput
sourcepub fn package_paths(&self) -> &[String]
pub fn package_paths(&self) -> &[String]
The current Amazon Inspector deep inspection custom paths 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().
sourcepub fn org_package_paths(&self) -> &[String]
pub fn org_package_paths(&self) -> &[String]
The current Amazon Inspector deep inspection custom paths for the organization.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .org_package_paths.is_none().
sourcepub fn status(&self) -> Option<&Ec2DeepInspectionStatus>
pub fn status(&self) -> Option<&Ec2DeepInspectionStatus>
The status of Amazon Inspector deep inspection in your account.
sourcepub fn error_message(&self) -> Option<&str>
pub fn error_message(&self) -> Option<&str>
An error message explaining why new Amazon Inspector deep inspection custom paths could not be added.
source§impl UpdateEc2DeepInspectionConfigurationOutput
impl UpdateEc2DeepInspectionConfigurationOutput
sourcepub fn builder() -> UpdateEc2DeepInspectionConfigurationOutputBuilder
pub fn builder() -> UpdateEc2DeepInspectionConfigurationOutputBuilder
Creates a new builder-style object to manufacture UpdateEc2DeepInspectionConfigurationOutput.
Trait Implementations§
source§impl Clone for UpdateEc2DeepInspectionConfigurationOutput
impl Clone for UpdateEc2DeepInspectionConfigurationOutput
source§fn clone(&self) -> UpdateEc2DeepInspectionConfigurationOutput
fn clone(&self) -> UpdateEc2DeepInspectionConfigurationOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq for UpdateEc2DeepInspectionConfigurationOutput
impl PartialEq for UpdateEc2DeepInspectionConfigurationOutput
source§fn eq(&self, other: &UpdateEc2DeepInspectionConfigurationOutput) -> bool
fn eq(&self, other: &UpdateEc2DeepInspectionConfigurationOutput) -> bool
self and other values to be equal, and is used by ==.source§impl RequestId for UpdateEc2DeepInspectionConfigurationOutput
impl RequestId for UpdateEc2DeepInspectionConfigurationOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None if the service could not be reached.impl StructuralPartialEq for UpdateEc2DeepInspectionConfigurationOutput
Auto Trait Implementations§
impl Freeze for UpdateEc2DeepInspectionConfigurationOutput
impl RefUnwindSafe for UpdateEc2DeepInspectionConfigurationOutput
impl Send for UpdateEc2DeepInspectionConfigurationOutput
impl Sync for UpdateEc2DeepInspectionConfigurationOutput
impl Unpin for UpdateEc2DeepInspectionConfigurationOutput
impl UnwindSafe for UpdateEc2DeepInspectionConfigurationOutput
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more