Struct rusoto_ecr::DeleteRepositoryRequest [] [src]

pub struct DeleteRepositoryRequest {
    pub force: Option<bool>,
    pub registry_id: Option<String>,
    pub repository_name: String,
}

Fields

Force the deletion of the repository if it contains images.

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

The name of the repository to delete.

Trait Implementations

impl Default for DeleteRepositoryRequest
[src]

[src]

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

impl Debug for DeleteRepositoryRequest
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for DeleteRepositoryRequest
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations