#[non_exhaustive]pub struct UpdateProjectInput {
pub domain_identifier: Option<String>,
pub identifier: Option<String>,
pub name: Option<String>,
pub description: Option<String>,
pub glossary_terms: Option<Vec<String>>,
}
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.domain_identifier: Option<String>
The identifier of the Amazon DataZone domain in which a project is to be updated.
identifier: Option<String>
The identifier of the project that is to be updated.
name: Option<String>
The name to be updated as part of the UpdateProject
action.
description: Option<String>
The description to be updated as part of the UpdateProject
action.
glossary_terms: Option<Vec<String>>
The glossary terms to be updated as part of the UpdateProject
action.
Implementations§
source§impl UpdateProjectInput
impl UpdateProjectInput
sourcepub fn domain_identifier(&self) -> Option<&str>
pub fn domain_identifier(&self) -> Option<&str>
The identifier of the Amazon DataZone domain in which a project is to be updated.
sourcepub fn identifier(&self) -> Option<&str>
pub fn identifier(&self) -> Option<&str>
The identifier of the project that is to be updated.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description to be updated as part of the UpdateProject
action.
sourcepub fn glossary_terms(&self) -> &[String]
pub fn glossary_terms(&self) -> &[String]
The glossary terms to be updated as part of the UpdateProject
action.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .glossary_terms.is_none()
.
source§impl UpdateProjectInput
impl UpdateProjectInput
sourcepub fn builder() -> UpdateProjectInputBuilder
pub fn builder() -> UpdateProjectInputBuilder
Creates a new builder-style object to manufacture UpdateProjectInput
.
Trait Implementations§
source§impl Clone for UpdateProjectInput
impl Clone for UpdateProjectInput
source§fn clone(&self) -> UpdateProjectInput
fn clone(&self) -> UpdateProjectInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for UpdateProjectInput
impl Debug for UpdateProjectInput
source§impl PartialEq for UpdateProjectInput
impl PartialEq for UpdateProjectInput
source§fn eq(&self, other: &UpdateProjectInput) -> bool
fn eq(&self, other: &UpdateProjectInput) -> bool
self
and other
values to be equal, and is used
by ==
.