Struct aws_sdk_eks::operation::describe_addon_configuration::builders::DescribeAddonConfigurationInputBuilder
source · #[non_exhaustive]pub struct DescribeAddonConfigurationInputBuilder { /* private fields */ }Expand description
A builder for DescribeAddonConfigurationInput.
Implementations§
source§impl DescribeAddonConfigurationInputBuilder
impl DescribeAddonConfigurationInputBuilder
sourcepub fn addon_name(self, input: impl Into<String>) -> Self
pub fn addon_name(self, input: impl Into<String>) -> Self
The name of the add-on. The name must match one of the names returned by DescribeAddonVersions.
sourcepub fn set_addon_name(self, input: Option<String>) -> Self
pub fn set_addon_name(self, input: Option<String>) -> Self
The name of the add-on. The name must match one of the names returned by DescribeAddonVersions.
sourcepub fn get_addon_name(&self) -> &Option<String>
pub fn get_addon_name(&self) -> &Option<String>
The name of the add-on. The name must match one of the names returned by DescribeAddonVersions.
sourcepub fn addon_version(self, input: impl Into<String>) -> Self
pub fn addon_version(self, input: impl Into<String>) -> Self
The version of the add-on. The version must match one of the versions returned by DescribeAddonVersions .
sourcepub fn set_addon_version(self, input: Option<String>) -> Self
pub fn set_addon_version(self, input: Option<String>) -> Self
The version of the add-on. The version must match one of the versions returned by DescribeAddonVersions .
sourcepub fn get_addon_version(&self) -> &Option<String>
pub fn get_addon_version(&self) -> &Option<String>
The version of the add-on. The version must match one of the versions returned by DescribeAddonVersions .
sourcepub fn build(self) -> Result<DescribeAddonConfigurationInput, BuildError>
pub fn build(self) -> Result<DescribeAddonConfigurationInput, BuildError>
Consumes the builder and constructs a DescribeAddonConfigurationInput.
source§impl DescribeAddonConfigurationInputBuilder
impl DescribeAddonConfigurationInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<DescribeAddonConfigurationOutput, SdkError<DescribeAddonConfigurationError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<DescribeAddonConfigurationOutput, SdkError<DescribeAddonConfigurationError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for DescribeAddonConfigurationInputBuilder
impl Clone for DescribeAddonConfigurationInputBuilder
source§fn clone(&self) -> DescribeAddonConfigurationInputBuilder
fn clone(&self) -> DescribeAddonConfigurationInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for DescribeAddonConfigurationInputBuilder
impl Default for DescribeAddonConfigurationInputBuilder
source§fn default() -> DescribeAddonConfigurationInputBuilder
fn default() -> DescribeAddonConfigurationInputBuilder
source§impl PartialEq for DescribeAddonConfigurationInputBuilder
impl PartialEq for DescribeAddonConfigurationInputBuilder
source§fn eq(&self, other: &DescribeAddonConfigurationInputBuilder) -> bool
fn eq(&self, other: &DescribeAddonConfigurationInputBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DescribeAddonConfigurationInputBuilder
Auto Trait Implementations§
impl Freeze for DescribeAddonConfigurationInputBuilder
impl RefUnwindSafe for DescribeAddonConfigurationInputBuilder
impl Send for DescribeAddonConfigurationInputBuilder
impl Sync for DescribeAddonConfigurationInputBuilder
impl Unpin for DescribeAddonConfigurationInputBuilder
impl UnwindSafe for DescribeAddonConfigurationInputBuilder
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)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