[][src]Struct rusoto_workspaces::UpdateWorkspaceImagePermissionRequest

pub struct UpdateWorkspaceImagePermissionRequest {
    pub allow_copy_image: bool,
    pub image_id: String,
    pub shared_account_id: String,
}

Fields

allow_copy_image: bool

The permission to copy the image. This permission can be revoked only after an image has been shared.

image_id: String

The identifier of the image.

shared_account_id: String

The identifier of the AWS account to share or unshare the image with.

Before sharing the image, confirm that you are sharing to the correct AWS account ID.

Trait Implementations

impl Clone for UpdateWorkspaceImagePermissionRequest[src]

impl Debug for UpdateWorkspaceImagePermissionRequest[src]

impl Default for UpdateWorkspaceImagePermissionRequest[src]

impl PartialEq<UpdateWorkspaceImagePermissionRequest> for UpdateWorkspaceImagePermissionRequest[src]

impl Serialize for UpdateWorkspaceImagePermissionRequest[src]

impl StructuralPartialEq for UpdateWorkspaceImagePermissionRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.