pub struct DescribeImagePermissionsRequest {
pub max_results: Option<i64>,
pub name: String,
pub next_token: Option<String>,
pub shared_aws_account_ids: Option<Vec<String>>,
}
Fields§
§max_results: Option<i64>
The maximum size of each page of results.
name: String
The name of the private image for which to describe permissions. The image must be one that you own.
next_token: Option<String>
The pagination token to use to retrieve the next page of results for this operation. If this value is null, it retrieves the first page.
The 12-digit identifier of one or more AWS accounts with which the image is shared.
Trait Implementations§
Source§impl Clone for DescribeImagePermissionsRequest
impl Clone for DescribeImagePermissionsRequest
Source§fn clone(&self) -> DescribeImagePermissionsRequest
fn clone(&self) -> DescribeImagePermissionsRequest
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Default for DescribeImagePermissionsRequest
impl Default for DescribeImagePermissionsRequest
Source§fn default() -> DescribeImagePermissionsRequest
fn default() -> DescribeImagePermissionsRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for DescribeImagePermissionsRequest
impl PartialEq for DescribeImagePermissionsRequest
Source§fn eq(&self, other: &DescribeImagePermissionsRequest) -> bool
fn eq(&self, other: &DescribeImagePermissionsRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DescribeImagePermissionsRequest
Auto Trait Implementations§
impl Freeze for DescribeImagePermissionsRequest
impl RefUnwindSafe for DescribeImagePermissionsRequest
impl Send for DescribeImagePermissionsRequest
impl Sync for DescribeImagePermissionsRequest
impl Unpin for DescribeImagePermissionsRequest
impl UnwindSafe for DescribeImagePermissionsRequest
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
Mutably borrows from an owned value. Read more