Struct aws_sdk_batch::types::EksPodPropertiesOverride
source · #[non_exhaustive]pub struct EksPodPropertiesOverride {
pub containers: Option<Vec<EksContainerOverride>>,
pub metadata: Option<EksMetadata>,
}
Expand description
An object that contains overrides for the Kubernetes pod properties of a job.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.containers: Option<Vec<EksContainerOverride>>
The overrides for the container that's used on the Amazon EKS pod.
metadata: Option<EksMetadata>
Metadata about the overrides for the container that's used on the Amazon EKS pod.
Implementations§
source§impl EksPodPropertiesOverride
impl EksPodPropertiesOverride
sourcepub fn containers(&self) -> Option<&[EksContainerOverride]>
pub fn containers(&self) -> Option<&[EksContainerOverride]>
The overrides for the container that's used on the Amazon EKS pod.
sourcepub fn metadata(&self) -> Option<&EksMetadata>
pub fn metadata(&self) -> Option<&EksMetadata>
Metadata about the overrides for the container that's used on the Amazon EKS pod.
source§impl EksPodPropertiesOverride
impl EksPodPropertiesOverride
sourcepub fn builder() -> EksPodPropertiesOverrideBuilder
pub fn builder() -> EksPodPropertiesOverrideBuilder
Creates a new builder-style object to manufacture EksPodPropertiesOverride
.
Trait Implementations§
source§impl Clone for EksPodPropertiesOverride
impl Clone for EksPodPropertiesOverride
source§fn clone(&self) -> EksPodPropertiesOverride
fn clone(&self) -> EksPodPropertiesOverride
Returns a copy 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 EksPodPropertiesOverride
impl Debug for EksPodPropertiesOverride
source§impl PartialEq<EksPodPropertiesOverride> for EksPodPropertiesOverride
impl PartialEq<EksPodPropertiesOverride> for EksPodPropertiesOverride
source§fn eq(&self, other: &EksPodPropertiesOverride) -> bool
fn eq(&self, other: &EksPodPropertiesOverride) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for EksPodPropertiesOverride
Auto Trait Implementations§
impl RefUnwindSafe for EksPodPropertiesOverride
impl Send for EksPodPropertiesOverride
impl Sync for EksPodPropertiesOverride
impl Unpin for EksPodPropertiesOverride
impl UnwindSafe for EksPodPropertiesOverride
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