pub struct EnvironmentTier {
pub name: Option<String>,
pub type_: Option<String>,
pub version: Option<String>,
}
Expand description
Describes the properties of an environment tier
Fields§
§name: Option<String>
The name of this environment tier.
Valid values:
-
For Web server tier –
WebServer
-
For Worker tier –
Worker
type_: Option<String>
The type of this environment tier.
Valid values:
-
For Web server tier –
Standard
-
For Worker tier –
SQS/HTTP
version: Option<String>
The version of this environment tier. When you don't set a value to it, Elastic Beanstalk uses the latest compatible worker tier version.
This member is deprecated. Any specific version that you set may become out of date. We recommend leaving it unspecified.
Trait Implementations§
Source§impl Clone for EnvironmentTier
impl Clone for EnvironmentTier
Source§fn clone(&self) -> EnvironmentTier
fn clone(&self) -> EnvironmentTier
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 EnvironmentTier
impl Debug for EnvironmentTier
Source§impl Default for EnvironmentTier
impl Default for EnvironmentTier
Source§fn default() -> EnvironmentTier
fn default() -> EnvironmentTier
Returns the “default value” for a type. Read more
Source§impl PartialEq for EnvironmentTier
impl PartialEq for EnvironmentTier
impl StructuralPartialEq for EnvironmentTier
Auto Trait Implementations§
impl Freeze for EnvironmentTier
impl RefUnwindSafe for EnvironmentTier
impl Send for EnvironmentTier
impl Sync for EnvironmentTier
impl Unpin for EnvironmentTier
impl UnwindSafe for EnvironmentTier
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