Struct aws_sdk_ecr::operation::describe_image_scan_findings::DescribeImageScanFindingsOutput
source · #[non_exhaustive]pub struct DescribeImageScanFindingsOutput {
pub registry_id: Option<String>,
pub repository_name: Option<String>,
pub image_id: Option<ImageIdentifier>,
pub image_scan_status: Option<ImageScanStatus>,
pub image_scan_findings: Option<ImageScanFindings>,
pub next_token: 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.registry_id: Option<String>The registry ID associated with the request.
repository_name: Option<String>The repository name associated with the request.
image_id: Option<ImageIdentifier>An object with identifying information for an image in an Amazon ECR repository.
image_scan_status: Option<ImageScanStatus>The current state of the scan.
image_scan_findings: Option<ImageScanFindings>The information contained in the image scan findings.
next_token: Option<String>The nextToken value to include in a future DescribeImageScanFindings request. When the results of a DescribeImageScanFindings request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.
Implementations§
source§impl DescribeImageScanFindingsOutput
impl DescribeImageScanFindingsOutput
sourcepub fn registry_id(&self) -> Option<&str>
pub fn registry_id(&self) -> Option<&str>
The registry ID associated with the request.
sourcepub fn repository_name(&self) -> Option<&str>
pub fn repository_name(&self) -> Option<&str>
The repository name associated with the request.
sourcepub fn image_id(&self) -> Option<&ImageIdentifier>
pub fn image_id(&self) -> Option<&ImageIdentifier>
An object with identifying information for an image in an Amazon ECR repository.
sourcepub fn image_scan_status(&self) -> Option<&ImageScanStatus>
pub fn image_scan_status(&self) -> Option<&ImageScanStatus>
The current state of the scan.
sourcepub fn image_scan_findings(&self) -> Option<&ImageScanFindings>
pub fn image_scan_findings(&self) -> Option<&ImageScanFindings>
The information contained in the image scan findings.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
The nextToken value to include in a future DescribeImageScanFindings request. When the results of a DescribeImageScanFindings request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.
source§impl DescribeImageScanFindingsOutput
impl DescribeImageScanFindingsOutput
sourcepub fn builder() -> DescribeImageScanFindingsOutputBuilder
pub fn builder() -> DescribeImageScanFindingsOutputBuilder
Creates a new builder-style object to manufacture DescribeImageScanFindingsOutput.
Trait Implementations§
source§impl Clone for DescribeImageScanFindingsOutput
impl Clone for DescribeImageScanFindingsOutput
source§fn clone(&self) -> DescribeImageScanFindingsOutput
fn clone(&self) -> DescribeImageScanFindingsOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq for DescribeImageScanFindingsOutput
impl PartialEq for DescribeImageScanFindingsOutput
source§fn eq(&self, other: &DescribeImageScanFindingsOutput) -> bool
fn eq(&self, other: &DescribeImageScanFindingsOutput) -> bool
self and other values to be equal, and is used
by ==.source§impl RequestId for DescribeImageScanFindingsOutput
impl RequestId for DescribeImageScanFindingsOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None if the service could not be reached.impl StructuralPartialEq for DescribeImageScanFindingsOutput
Auto Trait Implementations§
impl Freeze for DescribeImageScanFindingsOutput
impl RefUnwindSafe for DescribeImageScanFindingsOutput
impl Send for DescribeImageScanFindingsOutput
impl Sync for DescribeImageScanFindingsOutput
impl Unpin for DescribeImageScanFindingsOutput
impl UnwindSafe for DescribeImageScanFindingsOutput
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> 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