pub struct DeploymentConfigInfo {
pub compute_platform: Option<String>,
pub create_time: Option<f64>,
pub deployment_config_id: Option<String>,
pub deployment_config_name: Option<String>,
pub minimum_healthy_hosts: Option<MinimumHealthyHosts>,
pub traffic_routing_config: Option<TrafficRoutingConfig>,
}
Expand description
Information about a deployment configuration.
Fields§
§compute_platform: Option<String>
The destination platform type for the deployment (Lambda
, Server
, or ECS
).
create_time: Option<f64>
The time at which the deployment configuration was created.
deployment_config_id: Option<String>
The deployment configuration ID.
deployment_config_name: Option<String>
The deployment configuration name.
minimum_healthy_hosts: Option<MinimumHealthyHosts>
Information about the number or percentage of minimum healthy instance.
traffic_routing_config: Option<TrafficRoutingConfig>
The configuration that specifies how the deployment traffic is routed. Used for deployments with a Lambda or ECS compute platform only.
Trait Implementations§
Source§impl Clone for DeploymentConfigInfo
impl Clone for DeploymentConfigInfo
Source§fn clone(&self) -> DeploymentConfigInfo
fn clone(&self) -> DeploymentConfigInfo
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 DeploymentConfigInfo
impl Debug for DeploymentConfigInfo
Source§impl Default for DeploymentConfigInfo
impl Default for DeploymentConfigInfo
Source§fn default() -> DeploymentConfigInfo
fn default() -> DeploymentConfigInfo
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DeploymentConfigInfo
impl<'de> Deserialize<'de> for DeploymentConfigInfo
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 DeploymentConfigInfo
impl PartialEq for DeploymentConfigInfo
impl StructuralPartialEq for DeploymentConfigInfo
Auto Trait Implementations§
impl Freeze for DeploymentConfigInfo
impl RefUnwindSafe for DeploymentConfigInfo
impl Send for DeploymentConfigInfo
impl Sync for DeploymentConfigInfo
impl Unpin for DeploymentConfigInfo
impl UnwindSafe for DeploymentConfigInfo
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