Struct aws_sdk_proton::operation::list_service_instance_outputs::builders::ListServiceInstanceOutputsInputBuilder
source · #[non_exhaustive]pub struct ListServiceInstanceOutputsInputBuilder { /* private fields */ }Expand description
A builder for ListServiceInstanceOutputsInput.
Implementations§
source§impl ListServiceInstanceOutputsInputBuilder
impl ListServiceInstanceOutputsInputBuilder
sourcepub fn service_instance_name(self, input: impl Into<String>) -> Self
pub fn service_instance_name(self, input: impl Into<String>) -> Self
The name of the service instance whose outputs you want.
This field is required.sourcepub fn set_service_instance_name(self, input: Option<String>) -> Self
pub fn set_service_instance_name(self, input: Option<String>) -> Self
The name of the service instance whose outputs you want.
sourcepub fn get_service_instance_name(&self) -> &Option<String>
pub fn get_service_instance_name(&self) -> &Option<String>
The name of the service instance whose outputs you want.
sourcepub fn service_name(self, input: impl Into<String>) -> Self
pub fn service_name(self, input: impl Into<String>) -> Self
The name of the service that serviceInstanceName is associated to.
sourcepub fn set_service_name(self, input: Option<String>) -> Self
pub fn set_service_name(self, input: Option<String>) -> Self
The name of the service that serviceInstanceName is associated to.
sourcepub fn get_service_name(&self) -> &Option<String>
pub fn get_service_name(&self) -> &Option<String>
The name of the service that serviceInstanceName is associated to.
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<ListServiceInstanceOutputsInput, BuildError>
pub fn build(self) -> Result<ListServiceInstanceOutputsInput, BuildError>
Consumes the builder and constructs a ListServiceInstanceOutputsInput.
source§impl ListServiceInstanceOutputsInputBuilder
impl ListServiceInstanceOutputsInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<ListServiceInstanceOutputsOutput, SdkError<ListServiceInstanceOutputsError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<ListServiceInstanceOutputsOutput, SdkError<ListServiceInstanceOutputsError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for ListServiceInstanceOutputsInputBuilder
impl Clone for ListServiceInstanceOutputsInputBuilder
source§fn clone(&self) -> ListServiceInstanceOutputsInputBuilder
fn clone(&self) -> ListServiceInstanceOutputsInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for ListServiceInstanceOutputsInputBuilder
impl Default for ListServiceInstanceOutputsInputBuilder
source§fn default() -> ListServiceInstanceOutputsInputBuilder
fn default() -> ListServiceInstanceOutputsInputBuilder
source§impl PartialEq for ListServiceInstanceOutputsInputBuilder
impl PartialEq for ListServiceInstanceOutputsInputBuilder
source§fn eq(&self, other: &ListServiceInstanceOutputsInputBuilder) -> bool
fn eq(&self, other: &ListServiceInstanceOutputsInputBuilder) -> bool
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ListServiceInstanceOutputsInputBuilder
Auto Trait Implementations§
impl Freeze for ListServiceInstanceOutputsInputBuilder
impl RefUnwindSafe for ListServiceInstanceOutputsInputBuilder
impl Send for ListServiceInstanceOutputsInputBuilder
impl Sync for ListServiceInstanceOutputsInputBuilder
impl Unpin for ListServiceInstanceOutputsInputBuilder
impl UnwindSafe for ListServiceInstanceOutputsInputBuilder
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
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