Struct aws_sdk_eks::types::builders::AddonIssueBuilder
source · #[non_exhaustive]pub struct AddonIssueBuilder { /* private fields */ }
Expand description
A builder for AddonIssue
.
Implementations§
source§impl AddonIssueBuilder
impl AddonIssueBuilder
sourcepub fn code(self, input: AddonIssueCode) -> Self
pub fn code(self, input: AddonIssueCode) -> Self
A code that describes the type of issue.
sourcepub fn set_code(self, input: Option<AddonIssueCode>) -> Self
pub fn set_code(self, input: Option<AddonIssueCode>) -> Self
A code that describes the type of issue.
sourcepub fn get_code(&self) -> &Option<AddonIssueCode>
pub fn get_code(&self) -> &Option<AddonIssueCode>
A code that describes the type of issue.
sourcepub fn message(self, input: impl Into<String>) -> Self
pub fn message(self, input: impl Into<String>) -> Self
A message that provides details about the issue and what might cause it.
sourcepub fn set_message(self, input: Option<String>) -> Self
pub fn set_message(self, input: Option<String>) -> Self
A message that provides details about the issue and what might cause it.
sourcepub fn get_message(&self) -> &Option<String>
pub fn get_message(&self) -> &Option<String>
A message that provides details about the issue and what might cause it.
sourcepub fn resource_ids(self, input: impl Into<String>) -> Self
pub fn resource_ids(self, input: impl Into<String>) -> Self
Appends an item to resource_ids
.
To override the contents of this collection use set_resource_ids
.
The resource IDs of the issue.
sourcepub fn set_resource_ids(self, input: Option<Vec<String>>) -> Self
pub fn set_resource_ids(self, input: Option<Vec<String>>) -> Self
The resource IDs of the issue.
sourcepub fn get_resource_ids(&self) -> &Option<Vec<String>>
pub fn get_resource_ids(&self) -> &Option<Vec<String>>
The resource IDs of the issue.
sourcepub fn build(self) -> AddonIssue
pub fn build(self) -> AddonIssue
Consumes the builder and constructs a AddonIssue
.
Trait Implementations§
source§impl Clone for AddonIssueBuilder
impl Clone for AddonIssueBuilder
source§fn clone(&self) -> AddonIssueBuilder
fn clone(&self) -> AddonIssueBuilder
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 AddonIssueBuilder
impl Debug for AddonIssueBuilder
source§impl Default for AddonIssueBuilder
impl Default for AddonIssueBuilder
source§fn default() -> AddonIssueBuilder
fn default() -> AddonIssueBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for AddonIssueBuilder
impl PartialEq for AddonIssueBuilder
source§fn eq(&self, other: &AddonIssueBuilder) -> bool
fn eq(&self, other: &AddonIssueBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AddonIssueBuilder
Auto Trait Implementations§
impl Freeze for AddonIssueBuilder
impl RefUnwindSafe for AddonIssueBuilder
impl Send for AddonIssueBuilder
impl Sync for AddonIssueBuilder
impl Unpin for AddonIssueBuilder
impl UnwindSafe for AddonIssueBuilder
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>
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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.