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
impl StructuralPartialEq for ServicePipelineState
Auto Trait Implementations§
impl Freeze for ServicePipelineState
impl RefUnwindSafe for ServicePipelineState
impl Send for ServicePipelineState
impl Sync for ServicePipelineState
impl Unpin for ServicePipelineState
impl UnwindSafe for ServicePipelineState
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more