pub struct ListDeploymentConfigsOutput {
pub deployment_configs_list: Option<Vec<String>>,
pub next_token: Option<String>,
}
Expand description
Represents the output of a ListDeploymentConfigs
operation.
Fields§
§deployment_configs_list: Option<Vec<String>>
A list of deployment configurations, including built-in configurations such as CodeDeployDefault.OneAtATime
.
next_token: Option<String>
If a large amount of information is returned, an identifier is also returned. It can be used in a subsequent list deployment configurations call to return the next set of deployment configurations in the list.
Trait Implementations§
Source§impl Clone for ListDeploymentConfigsOutput
impl Clone for ListDeploymentConfigsOutput
Source§fn clone(&self) -> ListDeploymentConfigsOutput
fn clone(&self) -> ListDeploymentConfigsOutput
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 ListDeploymentConfigsOutput
impl Debug for ListDeploymentConfigsOutput
Source§impl Default for ListDeploymentConfigsOutput
impl Default for ListDeploymentConfigsOutput
Source§fn default() -> ListDeploymentConfigsOutput
fn default() -> ListDeploymentConfigsOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListDeploymentConfigsOutput
impl<'de> Deserialize<'de> for ListDeploymentConfigsOutput
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
impl StructuralPartialEq for ListDeploymentConfigsOutput
Auto Trait Implementations§
impl Freeze for ListDeploymentConfigsOutput
impl RefUnwindSafe for ListDeploymentConfigsOutput
impl Send for ListDeploymentConfigsOutput
impl Sync for ListDeploymentConfigsOutput
impl Unpin for ListDeploymentConfigsOutput
impl UnwindSafe for ListDeploymentConfigsOutput
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