#[non_exhaustive]pub struct EksSourceClusterNamespace {
pub eks_cluster_arn: String,
pub namespace: String,
}Expand description
The input source of the namespace that is located on your Amazon Elastic Kubernetes Service cluster.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.eks_cluster_arn: StringAmazon Resource Name (ARN) of the Amazon Elastic Kubernetes Service cluster. The format for this ARN is: arn:aws:eks:region:account-id:cluster/cluster-name. For more information about ARNs, see Amazon Resource Names (ARNs) in the Amazon Web Services General Reference guide.
namespace: StringName of the namespace that is located on your Amazon Elastic Kubernetes Service cluster.
Implementations§
source§impl EksSourceClusterNamespace
impl EksSourceClusterNamespace
sourcepub fn eks_cluster_arn(&self) -> &str
pub fn eks_cluster_arn(&self) -> &str
Amazon Resource Name (ARN) of the Amazon Elastic Kubernetes Service cluster. The format for this ARN is: arn:aws:eks:region:account-id:cluster/cluster-name. For more information about ARNs, see Amazon Resource Names (ARNs) in the Amazon Web Services General Reference guide.
source§impl EksSourceClusterNamespace
impl EksSourceClusterNamespace
sourcepub fn builder() -> EksSourceClusterNamespaceBuilder
pub fn builder() -> EksSourceClusterNamespaceBuilder
Creates a new builder-style object to manufacture EksSourceClusterNamespace.
Trait Implementations§
source§impl Clone for EksSourceClusterNamespace
impl Clone for EksSourceClusterNamespace
source§fn clone(&self) -> EksSourceClusterNamespace
fn clone(&self) -> EksSourceClusterNamespace
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for EksSourceClusterNamespace
impl Debug for EksSourceClusterNamespace
source§impl PartialEq for EksSourceClusterNamespace
impl PartialEq for EksSourceClusterNamespace
source§fn eq(&self, other: &EksSourceClusterNamespace) -> bool
fn eq(&self, other: &EksSourceClusterNamespace) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for EksSourceClusterNamespace
Auto Trait Implementations§
impl Freeze for EksSourceClusterNamespace
impl RefUnwindSafe for EksSourceClusterNamespace
impl Send for EksSourceClusterNamespace
impl Sync for EksSourceClusterNamespace
impl Unpin for EksSourceClusterNamespace
impl UnwindSafe for EksSourceClusterNamespace
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more