Struct aws_sdk_proton::types::ServicePipelineState
source · #[non_exhaustive]pub struct ServicePipelineState {
pub spec: Option<String>,
pub template_name: String,
pub template_major_version: String,
pub template_minor_version: String,
}
Expand description
The detailed data about the current state of the service pipeline.
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.spec: Option<String>
The service spec that was used to create the service pipeline.
template_name: String
The name of the service template that was used to create the service pipeline.
template_major_version: String
The major version of the service template that was used to create the service pipeline.
template_minor_version: String
The minor version of the service template that was used to create the service pipeline.
Implementations§
source§impl ServicePipelineState
impl ServicePipelineState
sourcepub fn spec(&self) -> Option<&str>
pub fn spec(&self) -> Option<&str>
The service spec that was used to create the service pipeline.
sourcepub fn template_name(&self) -> &str
pub fn template_name(&self) -> &str
The name of the service template that was used to create the service pipeline.
sourcepub fn template_major_version(&self) -> &str
pub fn template_major_version(&self) -> &str
The major version of the service template that was used to create the service pipeline.
sourcepub fn template_minor_version(&self) -> &str
pub fn template_minor_version(&self) -> &str
The minor version of the service template that was used to create the service pipeline.
source§impl ServicePipelineState
impl ServicePipelineState
sourcepub fn builder() -> ServicePipelineStateBuilder
pub fn builder() -> ServicePipelineStateBuilder
Creates a new builder-style object to manufacture ServicePipelineState
.
Trait Implementations§
source§impl Clone for ServicePipelineState
impl Clone for ServicePipelineState
source§fn clone(&self) -> ServicePipelineState
fn clone(&self) -> ServicePipelineState
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ServicePipelineState
impl Debug for ServicePipelineState
source§impl PartialEq for ServicePipelineState
impl PartialEq for ServicePipelineState
source§fn eq(&self, other: &ServicePipelineState) -> bool
fn eq(&self, other: &ServicePipelineState) -> bool
self
and other
values to be equal, and is used
by ==
.