Struct aws_sdk_elasticbeanstalk::model::PlatformFilter
source · #[non_exhaustive]pub struct PlatformFilter { /* private fields */ }
Expand description
Describes criteria to restrict the results when listing platform versions.
The filter is evaluated as follows: Type Operator Values[1]
Implementations§
source§impl PlatformFilter
impl PlatformFilter
sourcepub fn type(&self) -> Option<&str>
pub fn type(&self) -> Option<&str>
The platform version attribute to which the filter values are applied.
Valid values: PlatformName
| PlatformVersion
| PlatformStatus
| PlatformBranchName
| PlatformLifecycleState
| PlatformOwner
| SupportedTier
| SupportedAddon
| ProgrammingLanguageName
| OperatingSystemName
sourcepub fn operator(&self) -> Option<&str>
pub fn operator(&self) -> Option<&str>
The operator to apply to the Type
with each of the Values
.
Valid values: =
| !=
| <
| <=
| >
| >=
| contains
| begins_with
| ends_with
sourcepub fn values(&self) -> Option<&[String]>
pub fn values(&self) -> Option<&[String]>
The list of values applied to the filtering platform version attribute. Only one value is supported for all current operators.
The following list shows valid filter values for some filter attributes.
-
PlatformStatus
:Creating
|Failed
|Ready
|Deleting
|Deleted
-
PlatformLifecycleState
:recommended
-
SupportedTier
:WebServer/Standard
|Worker/SQS/HTTP
-
SupportedAddon
:Log/S3
|Monitoring/Healthd
|WorkerDaemon/SQSD
source§impl PlatformFilter
impl PlatformFilter
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture PlatformFilter
.
Trait Implementations§
source§impl Clone for PlatformFilter
impl Clone for PlatformFilter
source§fn clone(&self) -> PlatformFilter
fn clone(&self) -> PlatformFilter
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for PlatformFilter
impl Debug for PlatformFilter
source§impl PartialEq<PlatformFilter> for PlatformFilter
impl PartialEq<PlatformFilter> for PlatformFilter
source§fn eq(&self, other: &PlatformFilter) -> bool
fn eq(&self, other: &PlatformFilter) -> bool
self
and other
values to be equal, and is used
by ==
.