#[non_exhaustive]pub struct CreateWorkspaceImageInput {
pub name: Option<String>,
pub description: Option<String>,
pub workspace_id: Option<String>,
pub tags: Option<Vec<Tag>>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.name: Option<String>
The name of the new WorkSpace image.
description: Option<String>
The description of the new WorkSpace image.
workspace_id: Option<String>
The identifier of the source WorkSpace
The tags that you want to add to the new WorkSpace image. To add tags when you're creating the image, you must create an IAM policy that grants your IAM user permission to use workspaces:CreateTags
.
Implementations§
source§impl CreateWorkspaceImageInput
impl CreateWorkspaceImageInput
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description of the new WorkSpace image.
sourcepub fn workspace_id(&self) -> Option<&str>
pub fn workspace_id(&self) -> Option<&str>
The identifier of the source WorkSpace
The tags that you want to add to the new WorkSpace image. To add tags when you're creating the image, you must create an IAM policy that grants your IAM user permission to use workspaces:CreateTags
.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .tags.is_none()
.
source§impl CreateWorkspaceImageInput
impl CreateWorkspaceImageInput
sourcepub fn builder() -> CreateWorkspaceImageInputBuilder
pub fn builder() -> CreateWorkspaceImageInputBuilder
Creates a new builder-style object to manufacture CreateWorkspaceImageInput
.
Trait Implementations§
source§impl Clone for CreateWorkspaceImageInput
impl Clone for CreateWorkspaceImageInput
source§fn clone(&self) -> CreateWorkspaceImageInput
fn clone(&self) -> CreateWorkspaceImageInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CreateWorkspaceImageInput
impl Debug for CreateWorkspaceImageInput
source§impl PartialEq for CreateWorkspaceImageInput
impl PartialEq for CreateWorkspaceImageInput
source§fn eq(&self, other: &CreateWorkspaceImageInput) -> bool
fn eq(&self, other: &CreateWorkspaceImageInput) -> bool
self
and other
values to be equal, and is used
by ==
.