#[non_exhaustive]pub struct GetDeploymentInput {
pub id: Option<String>,
pub environment_name: Option<String>,
pub service_name: Option<String>,
pub service_instance_name: Option<String>,
pub component_name: Option<String>,
}
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 deployment that you want to get the detailed data for.
environment_name: Option<String>
The name of a environment that you want to get the detailed data for.
service_name: Option<String>
The name of the service associated with the given deployment ID.
service_instance_name: Option<String>
The name of the service instance associated with the given deployment ID. serviceName
must be specified to identify the service instance.
component_name: Option<String>
The name of a component that you want to get the detailed data for.
Implementations§
source§impl GetDeploymentInput
impl GetDeploymentInput
sourcepub fn id(&self) -> Option<&str>
pub fn id(&self) -> Option<&str>
The ID of the deployment that you want to get the detailed data for.
sourcepub fn environment_name(&self) -> Option<&str>
pub fn environment_name(&self) -> Option<&str>
The name of a environment that you want to get the detailed data for.
sourcepub fn service_name(&self) -> Option<&str>
pub fn service_name(&self) -> Option<&str>
The name of the service associated with the given deployment ID.
sourcepub fn service_instance_name(&self) -> Option<&str>
pub fn service_instance_name(&self) -> Option<&str>
The name of the service instance associated with the given deployment ID. serviceName
must be specified to identify the service instance.
sourcepub fn component_name(&self) -> Option<&str>
pub fn component_name(&self) -> Option<&str>
The name of a component that you want to get the detailed data for.
source§impl GetDeploymentInput
impl GetDeploymentInput
sourcepub fn builder() -> GetDeploymentInputBuilder
pub fn builder() -> GetDeploymentInputBuilder
Creates a new builder-style object to manufacture GetDeploymentInput
.
Trait Implementations§
source§impl Clone for GetDeploymentInput
impl Clone for GetDeploymentInput
source§fn clone(&self) -> GetDeploymentInput
fn clone(&self) -> GetDeploymentInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for GetDeploymentInput
impl Debug for GetDeploymentInput
source§impl PartialEq for GetDeploymentInput
impl PartialEq for GetDeploymentInput
source§fn eq(&self, other: &GetDeploymentInput) -> bool
fn eq(&self, other: &GetDeploymentInput) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for GetDeploymentInput
Auto Trait Implementations§
impl Freeze for GetDeploymentInput
impl RefUnwindSafe for GetDeploymentInput
impl Send for GetDeploymentInput
impl Sync for GetDeploymentInput
impl Unpin for GetDeploymentInput
impl UnwindSafe for GetDeploymentInput
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> 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