pub struct CreateDeploymentConfigOutput {
pub deployment_config_id: Option<String>,
}
Expand description
Represents the output of a CreateDeploymentConfig
operation.
Fields§
§deployment_config_id: Option<String>
A unique deployment configuration ID.
Trait Implementations§
Source§impl Clone for CreateDeploymentConfigOutput
impl Clone for CreateDeploymentConfigOutput
Source§fn clone(&self) -> CreateDeploymentConfigOutput
fn clone(&self) -> CreateDeploymentConfigOutput
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for CreateDeploymentConfigOutput
impl Debug for CreateDeploymentConfigOutput
Source§impl Default for CreateDeploymentConfigOutput
impl Default for CreateDeploymentConfigOutput
Source§fn default() -> CreateDeploymentConfigOutput
fn default() -> CreateDeploymentConfigOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CreateDeploymentConfigOutput
impl<'de> Deserialize<'de> for CreateDeploymentConfigOutput
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for CreateDeploymentConfigOutput
impl PartialEq for CreateDeploymentConfigOutput
Source§fn eq(&self, other: &CreateDeploymentConfigOutput) -> bool
fn eq(&self, other: &CreateDeploymentConfigOutput) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for CreateDeploymentConfigOutput
Auto Trait Implementations§
impl Freeze for CreateDeploymentConfigOutput
impl RefUnwindSafe for CreateDeploymentConfigOutput
impl Send for CreateDeploymentConfigOutput
impl Sync for CreateDeploymentConfigOutput
impl Unpin for CreateDeploymentConfigOutput
impl UnwindSafe for CreateDeploymentConfigOutput
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
Mutably borrows from an owned value. Read more