Struct aws_sdk_eks::operation::describe_addon_configuration::DescribeAddonConfigurationOutput   
source · #[non_exhaustive]pub struct DescribeAddonConfigurationOutput {
    pub addon_name: Option<String>,
    pub addon_version: Option<String>,
    pub configuration_schema: Option<String>,
    /* private fields */
}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.addon_name: Option<String>The name of the add-on.
addon_version: Option<String>The version of the add-on. The version must match one of the versions returned by  DescribeAddonVersions .
configuration_schema: Option<String>A JSON schema that's used to validate the configuration values that you provide when an addon is created or updated.
Implementations§
source§impl DescribeAddonConfigurationOutput
 
impl DescribeAddonConfigurationOutput
sourcepub fn addon_name(&self) -> Option<&str>
 
pub fn addon_name(&self) -> Option<&str>
The name of the add-on.
sourcepub fn addon_version(&self) -> Option<&str>
 
pub fn addon_version(&self) -> Option<&str>
The version of the add-on. The version must match one of the versions returned by  DescribeAddonVersions .
sourcepub fn configuration_schema(&self) -> Option<&str>
 
pub fn configuration_schema(&self) -> Option<&str>
A JSON schema that's used to validate the configuration values that you provide when an addon is created or updated.
source§impl DescribeAddonConfigurationOutput
 
impl DescribeAddonConfigurationOutput
sourcepub fn builder() -> DescribeAddonConfigurationOutputBuilder
 
pub fn builder() -> DescribeAddonConfigurationOutputBuilder
Creates a new builder-style object to manufacture DescribeAddonConfigurationOutput.
Trait Implementations§
source§impl Clone for DescribeAddonConfigurationOutput
 
impl Clone for DescribeAddonConfigurationOutput
source§fn clone(&self) -> DescribeAddonConfigurationOutput
 
fn clone(&self) -> DescribeAddonConfigurationOutput
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 PartialEq for DescribeAddonConfigurationOutput
 
impl PartialEq for DescribeAddonConfigurationOutput
source§fn eq(&self, other: &DescribeAddonConfigurationOutput) -> bool
 
fn eq(&self, other: &DescribeAddonConfigurationOutput) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.source§impl RequestId for DescribeAddonConfigurationOutput
 
impl RequestId for DescribeAddonConfigurationOutput
source§fn request_id(&self) -> Option<&str>
 
fn request_id(&self) -> Option<&str>
Returns the request ID, or 
None if the service could not be reached.impl StructuralPartialEq for DescribeAddonConfigurationOutput
Auto Trait Implementations§
impl RefUnwindSafe for DescribeAddonConfigurationOutput
impl Send for DescribeAddonConfigurationOutput
impl Sync for DescribeAddonConfigurationOutput
impl Unpin for DescribeAddonConfigurationOutput
impl UnwindSafe for DescribeAddonConfigurationOutput
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
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>
Creates a shared type from an unshared type.