#[non_exhaustive]pub struct PlatformBranchSummary { /* private fields */ }
Expand description
Summary information about a platform branch.
Implementations§
source§impl PlatformBranchSummary
impl PlatformBranchSummary
sourcepub fn platform_name(&self) -> Option<&str>
pub fn platform_name(&self) -> Option<&str>
The name of the platform to which this platform branch belongs.
sourcepub fn branch_name(&self) -> Option<&str>
pub fn branch_name(&self) -> Option<&str>
The name of the platform branch.
sourcepub fn lifecycle_state(&self) -> Option<&str>
pub fn lifecycle_state(&self) -> Option<&str>
The support life cycle state of the platform branch.
Possible values: beta
| supported
| deprecated
| retired
sourcepub fn branch_order(&self) -> i32
pub fn branch_order(&self) -> i32
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.
sourcepub fn supported_tier_list(&self) -> Option<&[String]>
pub fn supported_tier_list(&self) -> Option<&[String]>
The environment tiers that platform versions in this branch support.
Possible values: WebServer/Standard
| Worker/SQS/HTTP
source§impl PlatformBranchSummary
impl PlatformBranchSummary
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture PlatformBranchSummary
.
Trait Implementations§
source§impl Clone for PlatformBranchSummary
impl Clone for PlatformBranchSummary
source§fn clone(&self) -> PlatformBranchSummary
fn clone(&self) -> PlatformBranchSummary
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for PlatformBranchSummary
impl Debug for PlatformBranchSummary
source§impl PartialEq<PlatformBranchSummary> for PlatformBranchSummary
impl PartialEq<PlatformBranchSummary> for PlatformBranchSummary
source§fn eq(&self, other: &PlatformBranchSummary) -> bool
fn eq(&self, other: &PlatformBranchSummary) -> bool
self
and other
values to be equal, and is used
by ==
.