#[non_exhaustive]pub struct UpdateSystemTemplateInput {
pub id: Option<String>,
pub definition: Option<DefinitionDocument>,
pub compatible_namespace_version: Option<i64>,
}
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.id: Option<String>
The ID of the system to be updated.
The ID should be in the following format.
urn:tdm:REGION/ACCOUNT ID/default:system:SYSTEMNAME
definition: Option<DefinitionDocument>
The DefinitionDocument
that contains the updated system definition.
compatible_namespace_version: Option<i64>
The version of the user's namespace. Defaults to the latest version of the user's namespace.
If no value is specified, the latest version is used by default.
Implementations§
source§impl UpdateSystemTemplateInput
impl UpdateSystemTemplateInput
sourcepub fn id(&self) -> Option<&str>
pub fn id(&self) -> Option<&str>
The ID of the system to be updated.
The ID should be in the following format.
urn:tdm:REGION/ACCOUNT ID/default:system:SYSTEMNAME
sourcepub fn definition(&self) -> Option<&DefinitionDocument>
pub fn definition(&self) -> Option<&DefinitionDocument>
The DefinitionDocument
that contains the updated system definition.
sourcepub fn compatible_namespace_version(&self) -> Option<i64>
pub fn compatible_namespace_version(&self) -> Option<i64>
The version of the user's namespace. Defaults to the latest version of the user's namespace.
If no value is specified, the latest version is used by default.
source§impl UpdateSystemTemplateInput
impl UpdateSystemTemplateInput
sourcepub fn builder() -> UpdateSystemTemplateInputBuilder
pub fn builder() -> UpdateSystemTemplateInputBuilder
Creates a new builder-style object to manufacture UpdateSystemTemplateInput
.
Trait Implementations§
source§impl Clone for UpdateSystemTemplateInput
impl Clone for UpdateSystemTemplateInput
source§fn clone(&self) -> UpdateSystemTemplateInput
fn clone(&self) -> UpdateSystemTemplateInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for UpdateSystemTemplateInput
impl Debug for UpdateSystemTemplateInput
source§impl PartialEq for UpdateSystemTemplateInput
impl PartialEq for UpdateSystemTemplateInput
source§fn eq(&self, other: &UpdateSystemTemplateInput) -> bool
fn eq(&self, other: &UpdateSystemTemplateInput) -> bool
self
and other
values to be equal, and is used
by ==
.