Struct rusoto_ecr::BatchGetImageRequest [] [src]

pub struct BatchGetImageRequest {
    pub accepted_media_types: Option<Vec<String>>,
    pub image_ids: Vec<ImageIdentifier>,
    pub registry_id: Option<String>,
    pub repository_name: String,
}

Fields

The accepted media types for the request.

Valid values: application/vnd.docker.distribution.manifest.v1+json | application/vnd.docker.distribution.manifest.v2+json | application/vnd.oci.image.manifest.v1+json

A list of image ID references that correspond to images to describe. The format of the imageIds reference is imageTag=tag or imageDigest=digest.

The AWS account ID associated with the registry that contains the images to describe. If you do not specify a registry, the default registry is assumed.

The repository that contains the images to describe.

Trait Implementations

impl Default for BatchGetImageRequest
[src]

[src]

Returns the "default value" for a type. Read more

impl Debug for BatchGetImageRequest
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for BatchGetImageRequest
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations