#[non_exhaustive]pub struct UpdateSystemTemplateInput { /* private fields */ }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.
source§impl UpdateSystemTemplateInput
impl UpdateSystemTemplateInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateSystemTemplate, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation( &self, _config: &Config ) -> Result<Operation<UpdateSystemTemplate, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<UpdateSystemTemplate>
Trait Implementations§
source§impl Clone for UpdateSystemTemplateInput
impl Clone for UpdateSystemTemplateInput
source§fn clone(&self) -> UpdateSystemTemplateInput
fn clone(&self) -> UpdateSystemTemplateInput
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 Debug for UpdateSystemTemplateInput
impl Debug for UpdateSystemTemplateInput
source§impl PartialEq<UpdateSystemTemplateInput> for UpdateSystemTemplateInput
impl PartialEq<UpdateSystemTemplateInput> for UpdateSystemTemplateInput
source§fn eq(&self, other: &UpdateSystemTemplateInput) -> bool
fn eq(&self, other: &UpdateSystemTemplateInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UpdateSystemTemplateInput
Auto Trait Implementations§
impl RefUnwindSafe for UpdateSystemTemplateInput
impl Send for UpdateSystemTemplateInput
impl Sync for UpdateSystemTemplateInput
impl Unpin for UpdateSystemTemplateInput
impl UnwindSafe for UpdateSystemTemplateInput
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