Struct aws_sdk_proton::operation::list_component_outputs::builders::ListComponentOutputsInputBuilder
source · #[non_exhaustive]pub struct ListComponentOutputsInputBuilder { /* private fields */ }Expand description
A builder for ListComponentOutputsInput.
Implementations§
source§impl ListComponentOutputsInputBuilder
impl ListComponentOutputsInputBuilder
sourcepub fn component_name(self, input: impl Into<String>) -> Self
pub fn component_name(self, input: impl Into<String>) -> Self
The name of the component whose outputs you want.
This field is required.sourcepub fn set_component_name(self, input: Option<String>) -> Self
pub fn set_component_name(self, input: Option<String>) -> Self
The name of the component whose outputs you want.
sourcepub fn get_component_name(&self) -> &Option<String>
pub fn get_component_name(&self) -> &Option<String>
The name of the component whose outputs you want.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
A token that indicates the location of the next output in the array of outputs, after the list of outputs that was previously requested.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
A token that indicates the location of the next output in the array of outputs, after the list of outputs that was previously requested.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
A token that indicates the location of the next output in the array of outputs, after the list of outputs that was previously requested.
sourcepub fn deployment_id(self, input: impl Into<String>) -> Self
pub fn deployment_id(self, input: impl Into<String>) -> Self
The ID of the deployment whose outputs you want.
sourcepub fn set_deployment_id(self, input: Option<String>) -> Self
pub fn set_deployment_id(self, input: Option<String>) -> Self
The ID of the deployment whose outputs you want.
sourcepub fn get_deployment_id(&self) -> &Option<String>
pub fn get_deployment_id(&self) -> &Option<String>
The ID of the deployment whose outputs you want.
sourcepub fn build(self) -> Result<ListComponentOutputsInput, BuildError>
pub fn build(self) -> Result<ListComponentOutputsInput, BuildError>
Consumes the builder and constructs a ListComponentOutputsInput.
source§impl ListComponentOutputsInputBuilder
impl ListComponentOutputsInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<ListComponentOutputsOutput, SdkError<ListComponentOutputsError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<ListComponentOutputsOutput, SdkError<ListComponentOutputsError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for ListComponentOutputsInputBuilder
impl Clone for ListComponentOutputsInputBuilder
source§fn clone(&self) -> ListComponentOutputsInputBuilder
fn clone(&self) -> ListComponentOutputsInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for ListComponentOutputsInputBuilder
impl Default for ListComponentOutputsInputBuilder
source§fn default() -> ListComponentOutputsInputBuilder
fn default() -> ListComponentOutputsInputBuilder
source§impl PartialEq for ListComponentOutputsInputBuilder
impl PartialEq for ListComponentOutputsInputBuilder
source§fn eq(&self, other: &ListComponentOutputsInputBuilder) -> bool
fn eq(&self, other: &ListComponentOutputsInputBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ListComponentOutputsInputBuilder
Auto Trait Implementations§
impl Freeze for ListComponentOutputsInputBuilder
impl RefUnwindSafe for ListComponentOutputsInputBuilder
impl Send for ListComponentOutputsInputBuilder
impl Sync for ListComponentOutputsInputBuilder
impl Unpin for ListComponentOutputsInputBuilder
impl UnwindSafe for ListComponentOutputsInputBuilder
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