Struct aws_sdk_launchwizard::operation::get_workload_deployment_pattern::builders::GetWorkloadDeploymentPatternFluentBuilder
source · pub struct GetWorkloadDeploymentPatternFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to GetWorkloadDeploymentPattern
.
Returns details for a given workload and deployment pattern, including the available specifications. You can use the ListWorkloads operation to discover the available workload names and the ListWorkloadDeploymentPatterns operation to discover the available deployment pattern names of a given workload.
Implementations§
source§impl GetWorkloadDeploymentPatternFluentBuilder
impl GetWorkloadDeploymentPatternFluentBuilder
sourcepub fn as_input(&self) -> &GetWorkloadDeploymentPatternInputBuilder
pub fn as_input(&self) -> &GetWorkloadDeploymentPatternInputBuilder
Access the GetWorkloadDeploymentPattern as a reference.
sourcepub async fn send(
self,
) -> Result<GetWorkloadDeploymentPatternOutput, SdkError<GetWorkloadDeploymentPatternError, HttpResponse>>
pub async fn send( self, ) -> Result<GetWorkloadDeploymentPatternOutput, SdkError<GetWorkloadDeploymentPatternError, HttpResponse>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn customize(
self,
) -> CustomizableOperation<GetWorkloadDeploymentPatternOutput, GetWorkloadDeploymentPatternError, Self>
pub fn customize( self, ) -> CustomizableOperation<GetWorkloadDeploymentPatternOutput, GetWorkloadDeploymentPatternError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn workload_name(self, input: impl Into<String>) -> Self
pub fn workload_name(self, input: impl Into<String>) -> Self
The name of the workload.
sourcepub fn set_workload_name(self, input: Option<String>) -> Self
pub fn set_workload_name(self, input: Option<String>) -> Self
The name of the workload.
sourcepub fn get_workload_name(&self) -> &Option<String>
pub fn get_workload_name(&self) -> &Option<String>
The name of the workload.
sourcepub fn deployment_pattern_name(self, input: impl Into<String>) -> Self
pub fn deployment_pattern_name(self, input: impl Into<String>) -> Self
The name of the deployment pattern.
sourcepub fn set_deployment_pattern_name(self, input: Option<String>) -> Self
pub fn set_deployment_pattern_name(self, input: Option<String>) -> Self
The name of the deployment pattern.
sourcepub fn get_deployment_pattern_name(&self) -> &Option<String>
pub fn get_deployment_pattern_name(&self) -> &Option<String>
The name of the deployment pattern.
Trait Implementations§
source§impl Clone for GetWorkloadDeploymentPatternFluentBuilder
impl Clone for GetWorkloadDeploymentPatternFluentBuilder
source§fn clone(&self) -> GetWorkloadDeploymentPatternFluentBuilder
fn clone(&self) -> GetWorkloadDeploymentPatternFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreAuto Trait Implementations§
impl Freeze for GetWorkloadDeploymentPatternFluentBuilder
impl !RefUnwindSafe for GetWorkloadDeploymentPatternFluentBuilder
impl Send for GetWorkloadDeploymentPatternFluentBuilder
impl Sync for GetWorkloadDeploymentPatternFluentBuilder
impl Unpin for GetWorkloadDeploymentPatternFluentBuilder
impl !UnwindSafe for GetWorkloadDeploymentPatternFluentBuilder
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