Struct aws_sdk_sagemaker::operation::describe_workteam::builders::DescribeWorkteamFluentBuilder
source · pub struct DescribeWorkteamFluentBuilder { /* private fields */ }Expand description
Fluent builder constructing a request to DescribeWorkteam.
Gets information about a specific work team. You can see information such as the create date, the last updated date, membership information, and the work team's Amazon Resource Name (ARN).
Implementations§
source§impl DescribeWorkteamFluentBuilder
impl DescribeWorkteamFluentBuilder
sourcepub fn as_input(&self) -> &DescribeWorkteamInputBuilder
pub fn as_input(&self) -> &DescribeWorkteamInputBuilder
Access the DescribeWorkteam as a reference.
sourcepub async fn send(
self
) -> Result<DescribeWorkteamOutput, SdkError<DescribeWorkteamError, HttpResponse>>
pub async fn send( self ) -> Result<DescribeWorkteamOutput, SdkError<DescribeWorkteamError, 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<DescribeWorkteamOutput, DescribeWorkteamError, Self>
pub fn customize( self ) -> CustomizableOperation<DescribeWorkteamOutput, DescribeWorkteamError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn workteam_name(self, input: impl Into<String>) -> Self
pub fn workteam_name(self, input: impl Into<String>) -> Self
The name of the work team to return a description of.
sourcepub fn set_workteam_name(self, input: Option<String>) -> Self
pub fn set_workteam_name(self, input: Option<String>) -> Self
The name of the work team to return a description of.
sourcepub fn get_workteam_name(&self) -> &Option<String>
pub fn get_workteam_name(&self) -> &Option<String>
The name of the work team to return a description of.
Trait Implementations§
source§impl Clone for DescribeWorkteamFluentBuilder
impl Clone for DescribeWorkteamFluentBuilder
source§fn clone(&self) -> DescribeWorkteamFluentBuilder
fn clone(&self) -> DescribeWorkteamFluentBuilder
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 DescribeWorkteamFluentBuilder
impl !RefUnwindSafe for DescribeWorkteamFluentBuilder
impl Send for DescribeWorkteamFluentBuilder
impl Sync for DescribeWorkteamFluentBuilder
impl Unpin for DescribeWorkteamFluentBuilder
impl !UnwindSafe for DescribeWorkteamFluentBuilder
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