Struct aws_sdk_inspector2::operation::get_ec2_deep_inspection_configuration::GetEc2DeepInspectionConfigurationOutput
source · #[non_exhaustive]pub struct GetEc2DeepInspectionConfigurationOutput {
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 Amazon Inspector deep inspection custom paths for your account.
org_package_paths: Option<Vec<String>>The Amazon Inspector deep inspection custom paths for your organization.
status: Option<Ec2DeepInspectionStatus>The activation status of Amazon Inspector deep inspection in your account.
error_message: Option<String>An error message explaining why Amazon Inspector deep inspection configurations could not be retrieved for your account.
Implementations§
source§impl GetEc2DeepInspectionConfigurationOutput
impl GetEc2DeepInspectionConfigurationOutput
sourcepub fn package_paths(&self) -> &[String]
pub fn package_paths(&self) -> &[String]
The 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 Amazon Inspector deep inspection custom paths for your 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 activation 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 Amazon Inspector deep inspection configurations could not be retrieved for your account.
source§impl GetEc2DeepInspectionConfigurationOutput
impl GetEc2DeepInspectionConfigurationOutput
sourcepub fn builder() -> GetEc2DeepInspectionConfigurationOutputBuilder
pub fn builder() -> GetEc2DeepInspectionConfigurationOutputBuilder
Creates a new builder-style object to manufacture GetEc2DeepInspectionConfigurationOutput.
Trait Implementations§
source§impl Clone for GetEc2DeepInspectionConfigurationOutput
impl Clone for GetEc2DeepInspectionConfigurationOutput
source§fn clone(&self) -> GetEc2DeepInspectionConfigurationOutput
fn clone(&self) -> GetEc2DeepInspectionConfigurationOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq for GetEc2DeepInspectionConfigurationOutput
impl PartialEq for GetEc2DeepInspectionConfigurationOutput
source§fn eq(&self, other: &GetEc2DeepInspectionConfigurationOutput) -> bool
fn eq(&self, other: &GetEc2DeepInspectionConfigurationOutput) -> bool
self and other values to be equal, and is used by ==.source§impl RequestId for GetEc2DeepInspectionConfigurationOutput
impl RequestId for GetEc2DeepInspectionConfigurationOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None if the service could not be reached.impl StructuralPartialEq for GetEc2DeepInspectionConfigurationOutput
Auto Trait Implementations§
impl Freeze for GetEc2DeepInspectionConfigurationOutput
impl RefUnwindSafe for GetEc2DeepInspectionConfigurationOutput
impl Send for GetEc2DeepInspectionConfigurationOutput
impl Sync for GetEc2DeepInspectionConfigurationOutput
impl Unpin for GetEc2DeepInspectionConfigurationOutput
impl UnwindSafe for GetEc2DeepInspectionConfigurationOutput
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