#[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 ==
.