Struct aws_sdk_applicationinsights::operation::describe_component::builders::DescribeComponentOutputBuilder
source · #[non_exhaustive]pub struct DescribeComponentOutputBuilder { /* private fields */ }
Expand description
A builder for DescribeComponentOutput
.
Implementations§
source§impl DescribeComponentOutputBuilder
impl DescribeComponentOutputBuilder
sourcepub fn application_component(self, input: ApplicationComponent) -> Self
pub fn application_component(self, input: ApplicationComponent) -> Self
Describes a standalone resource or similarly grouped resources that the application is made up of.
sourcepub fn set_application_component(
self,
input: Option<ApplicationComponent>
) -> Self
pub fn set_application_component( self, input: Option<ApplicationComponent> ) -> Self
Describes a standalone resource or similarly grouped resources that the application is made up of.
sourcepub fn get_application_component(&self) -> &Option<ApplicationComponent>
pub fn get_application_component(&self) -> &Option<ApplicationComponent>
Describes a standalone resource or similarly grouped resources that the application is made up of.
sourcepub fn resource_list(self, input: impl Into<String>) -> Self
pub fn resource_list(self, input: impl Into<String>) -> Self
Appends an item to resource_list
.
To override the contents of this collection use set_resource_list
.
The list of resource ARNs that belong to the component.
sourcepub fn set_resource_list(self, input: Option<Vec<String>>) -> Self
pub fn set_resource_list(self, input: Option<Vec<String>>) -> Self
The list of resource ARNs that belong to the component.
sourcepub fn get_resource_list(&self) -> &Option<Vec<String>>
pub fn get_resource_list(&self) -> &Option<Vec<String>>
The list of resource ARNs that belong to the component.
sourcepub fn build(self) -> DescribeComponentOutput
pub fn build(self) -> DescribeComponentOutput
Consumes the builder and constructs a DescribeComponentOutput
.
Trait Implementations§
source§impl Clone for DescribeComponentOutputBuilder
impl Clone for DescribeComponentOutputBuilder
source§fn clone(&self) -> DescribeComponentOutputBuilder
fn clone(&self) -> DescribeComponentOutputBuilder
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 Default for DescribeComponentOutputBuilder
impl Default for DescribeComponentOutputBuilder
source§fn default() -> DescribeComponentOutputBuilder
fn default() -> DescribeComponentOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for DescribeComponentOutputBuilder
impl PartialEq for DescribeComponentOutputBuilder
source§fn eq(&self, other: &DescribeComponentOutputBuilder) -> bool
fn eq(&self, other: &DescribeComponentOutputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DescribeComponentOutputBuilder
Auto Trait Implementations§
impl Freeze for DescribeComponentOutputBuilder
impl RefUnwindSafe for DescribeComponentOutputBuilder
impl Send for DescribeComponentOutputBuilder
impl Sync for DescribeComponentOutputBuilder
impl Unpin for DescribeComponentOutputBuilder
impl UnwindSafe for DescribeComponentOutputBuilder
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.