Struct aws_sdk_proton::operation::list_component_provisioned_resources::builders::ListComponentProvisionedResourcesInputBuilder
source · #[non_exhaustive]pub struct ListComponentProvisionedResourcesInputBuilder { /* private fields */ }Expand description
A builder for ListComponentProvisionedResourcesInput.
Implementations§
source§impl ListComponentProvisionedResourcesInputBuilder
impl ListComponentProvisionedResourcesInputBuilder
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 provisioned resources 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 provisioned resources you want.
sourcepub fn get_component_name(&self) -> &Option<String>
pub fn get_component_name(&self) -> &Option<String>
The name of the component whose provisioned resources 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 provisioned resource in the array of provisioned resources, after the list of provisioned resources 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 provisioned resource in the array of provisioned resources, after the list of provisioned resources 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 provisioned resource in the array of provisioned resources, after the list of provisioned resources that was previously requested.
sourcepub fn build(self) -> Result<ListComponentProvisionedResourcesInput, BuildError>
pub fn build(self) -> Result<ListComponentProvisionedResourcesInput, BuildError>
Consumes the builder and constructs a ListComponentProvisionedResourcesInput.
source§impl ListComponentProvisionedResourcesInputBuilder
impl ListComponentProvisionedResourcesInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<ListComponentProvisionedResourcesOutput, SdkError<ListComponentProvisionedResourcesError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<ListComponentProvisionedResourcesOutput, SdkError<ListComponentProvisionedResourcesError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for ListComponentProvisionedResourcesInputBuilder
impl Clone for ListComponentProvisionedResourcesInputBuilder
source§fn clone(&self) -> ListComponentProvisionedResourcesInputBuilder
fn clone(&self) -> ListComponentProvisionedResourcesInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for ListComponentProvisionedResourcesInputBuilder
impl Default for ListComponentProvisionedResourcesInputBuilder
source§fn default() -> ListComponentProvisionedResourcesInputBuilder
fn default() -> ListComponentProvisionedResourcesInputBuilder
source§impl PartialEq for ListComponentProvisionedResourcesInputBuilder
impl PartialEq for ListComponentProvisionedResourcesInputBuilder
source§fn eq(&self, other: &ListComponentProvisionedResourcesInputBuilder) -> bool
fn eq(&self, other: &ListComponentProvisionedResourcesInputBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ListComponentProvisionedResourcesInputBuilder
Auto Trait Implementations§
impl Freeze for ListComponentProvisionedResourcesInputBuilder
impl RefUnwindSafe for ListComponentProvisionedResourcesInputBuilder
impl Send for ListComponentProvisionedResourcesInputBuilder
impl Sync for ListComponentProvisionedResourcesInputBuilder
impl Unpin for ListComponentProvisionedResourcesInputBuilder
impl UnwindSafe for ListComponentProvisionedResourcesInputBuilder
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