pub struct PlatformBranchSummary {
pub branch_name: Option<String>,
pub branch_order: Option<i64>,
pub lifecycle_state: Option<String>,
pub platform_name: Option<String>,
pub supported_tier_list: Option<Vec<String>>,
}
Expand description
Summary information about a platform branch.
Fields§
§branch_name: Option<String>
The name of the platform branch.
branch_order: Option<i64>
An ordinal number that designates the order in which platform branches have been added to a platform. This can be helpful, for example, if your code calls the ListPlatformBranches
action and then displays a list of platform branches.
A larger BranchOrder
value designates a newer platform branch within the platform.
lifecycle_state: Option<String>
The support life cycle state of the platform branch.
Possible values: beta
| supported
| deprecated
| retired
platform_name: Option<String>
The name of the platform to which this platform branch belongs.
supported_tier_list: Option<Vec<String>>
The environment tiers that platform versions in this branch support.
Possible values: WebServer/Standard
| Worker/SQS/HTTP
Trait Implementations§
Source§impl Clone for PlatformBranchSummary
impl Clone for PlatformBranchSummary
Source§fn clone(&self) -> PlatformBranchSummary
fn clone(&self) -> PlatformBranchSummary
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 PlatformBranchSummary
impl Debug for PlatformBranchSummary
Source§impl Default for PlatformBranchSummary
impl Default for PlatformBranchSummary
Source§fn default() -> PlatformBranchSummary
fn default() -> PlatformBranchSummary
Returns the “default value” for a type. Read more
Source§impl PartialEq for PlatformBranchSummary
impl PartialEq for PlatformBranchSummary
impl StructuralPartialEq for PlatformBranchSummary
Auto Trait Implementations§
impl Freeze for PlatformBranchSummary
impl RefUnwindSafe for PlatformBranchSummary
impl Send for PlatformBranchSummary
impl Sync for PlatformBranchSummary
impl Unpin for PlatformBranchSummary
impl UnwindSafe for PlatformBranchSummary
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