#[non_exhaustive]pub struct UpdateServiceTemplateVersionInput { /* private fields */ }
Implementations
sourceimpl UpdateServiceTemplateVersionInput
impl UpdateServiceTemplateVersionInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateServiceTemplateVersion, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateServiceTemplateVersion, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<UpdateServiceTemplateVersion
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture UpdateServiceTemplateVersionInput
.
sourceimpl UpdateServiceTemplateVersionInput
impl UpdateServiceTemplateVersionInput
sourcepub fn template_name(&self) -> Option<&str>
pub fn template_name(&self) -> Option<&str>
The name of the service template.
sourcepub fn major_version(&self) -> Option<&str>
pub fn major_version(&self) -> Option<&str>
To update a major version of a service template, include major Version
.
sourcepub fn minor_version(&self) -> Option<&str>
pub fn minor_version(&self) -> Option<&str>
To update a minor version of a service template, include minorVersion
.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
A description of a service template version to update.
sourcepub fn status(&self) -> Option<&TemplateVersionStatus>
pub fn status(&self) -> Option<&TemplateVersionStatus>
The status of the service template minor version to update.
sourcepub fn compatible_environment_templates(
&self
) -> Option<&[CompatibleEnvironmentTemplateInput]>
pub fn compatible_environment_templates(
&self
) -> Option<&[CompatibleEnvironmentTemplateInput]>
An array of environment template objects that are compatible with this service template version. A service instance based on this service template version can run in environments based on compatible templates.
sourcepub fn supported_component_sources(
&self
) -> Option<&[ServiceTemplateSupportedComponentSourceType]>
pub fn supported_component_sources(
&self
) -> Option<&[ServiceTemplateSupportedComponentSourceType]>
An array of supported component sources. Components with supported sources can be attached to service instances based on this service template version.
A change to supportedComponentSources
doesn't impact existing component attachments to instances based on this template version. A change only affects later associations.
For more information about components, see Proton components in the Proton Administrator Guide.
Trait Implementations
sourceimpl Clone for UpdateServiceTemplateVersionInput
impl Clone for UpdateServiceTemplateVersionInput
sourcefn clone(&self) -> UpdateServiceTemplateVersionInput
fn clone(&self) -> UpdateServiceTemplateVersionInput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl PartialEq<UpdateServiceTemplateVersionInput> for UpdateServiceTemplateVersionInput
impl PartialEq<UpdateServiceTemplateVersionInput> for UpdateServiceTemplateVersionInput
sourcefn eq(&self, other: &UpdateServiceTemplateVersionInput) -> bool
fn eq(&self, other: &UpdateServiceTemplateVersionInput) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &UpdateServiceTemplateVersionInput) -> bool
fn ne(&self, other: &UpdateServiceTemplateVersionInput) -> bool
This method tests for !=
.
impl StructuralPartialEq for UpdateServiceTemplateVersionInput
Auto Trait Implementations
impl RefUnwindSafe for UpdateServiceTemplateVersionInput
impl Send for UpdateServiceTemplateVersionInput
impl Sync for UpdateServiceTemplateVersionInput
impl Unpin for UpdateServiceTemplateVersionInput
impl UnwindSafe for UpdateServiceTemplateVersionInput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more