Struct aws_sdk_ecrpublic::input::DescribeImagesInput
source · #[non_exhaustive]pub struct DescribeImagesInput { /* private fields */ }Implementations§
source§impl DescribeImagesInput
impl DescribeImagesInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DescribeImages, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DescribeImages, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<DescribeImages>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DescribeImagesInput.
source§impl DescribeImagesInput
impl DescribeImagesInput
sourcepub fn registry_id(&self) -> Option<&str>
pub fn registry_id(&self) -> Option<&str>
The Amazon Web Services account ID that's associated with the public registry that contains the repository where images are described. If you do not specify a registry, the default public registry is assumed.
sourcepub fn repository_name(&self) -> Option<&str>
pub fn repository_name(&self) -> Option<&str>
The repository that contains the images to describe.
sourcepub fn image_ids(&self) -> Option<&[ImageIdentifier]>
pub fn image_ids(&self) -> Option<&[ImageIdentifier]>
The list of image IDs for the requested repository.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
The nextToken value that's returned from a previous paginated DescribeImages request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. If there are no more results to return, this value is null. If you specify images with imageIds, you can't use this option.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of repository results that's returned by DescribeImages in paginated output. When this parameter is used, DescribeImages only returns maxResults results in a single page along with a nextToken response element. You can see the remaining results of the initial request by sending another DescribeImages request with the returned nextToken value. This value can be between 1 and 1000. If this parameter isn't used, then DescribeImages returns up to 100 results and a nextToken value, if applicable. If you specify images with imageIds, you can't use this option.
Trait Implementations§
source§impl Clone for DescribeImagesInput
impl Clone for DescribeImagesInput
source§fn clone(&self) -> DescribeImagesInput
fn clone(&self) -> DescribeImagesInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for DescribeImagesInput
impl Debug for DescribeImagesInput
source§impl PartialEq<DescribeImagesInput> for DescribeImagesInput
impl PartialEq<DescribeImagesInput> for DescribeImagesInput
source§fn eq(&self, other: &DescribeImagesInput) -> bool
fn eq(&self, other: &DescribeImagesInput) -> bool
self and other values to be equal, and is used
by ==.