Struct aws_sdk_sagemaker::types::SubscribedWorkteam
source · #[non_exhaustive]pub struct SubscribedWorkteam {
pub workteam_arn: Option<String>,
pub marketplace_title: Option<String>,
pub seller_name: Option<String>,
pub marketplace_description: Option<String>,
pub listing_id: Option<String>,
}
Expand description
Describes a work team of a vendor that does the labelling job.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.workteam_arn: Option<String>
The Amazon Resource Name (ARN) of the vendor that you have subscribed.
marketplace_title: Option<String>
The title of the service provided by the vendor in the Amazon Marketplace.
seller_name: Option<String>
The name of the vendor in the Amazon Marketplace.
marketplace_description: Option<String>
The description of the vendor from the Amazon Marketplace.
listing_id: Option<String>
Marketplace product listing ID.
Implementations§
source§impl SubscribedWorkteam
impl SubscribedWorkteam
sourcepub fn workteam_arn(&self) -> Option<&str>
pub fn workteam_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the vendor that you have subscribed.
sourcepub fn marketplace_title(&self) -> Option<&str>
pub fn marketplace_title(&self) -> Option<&str>
The title of the service provided by the vendor in the Amazon Marketplace.
sourcepub fn seller_name(&self) -> Option<&str>
pub fn seller_name(&self) -> Option<&str>
The name of the vendor in the Amazon Marketplace.
sourcepub fn marketplace_description(&self) -> Option<&str>
pub fn marketplace_description(&self) -> Option<&str>
The description of the vendor from the Amazon Marketplace.
sourcepub fn listing_id(&self) -> Option<&str>
pub fn listing_id(&self) -> Option<&str>
Marketplace product listing ID.
source§impl SubscribedWorkteam
impl SubscribedWorkteam
sourcepub fn builder() -> SubscribedWorkteamBuilder
pub fn builder() -> SubscribedWorkteamBuilder
Creates a new builder-style object to manufacture SubscribedWorkteam
.
Trait Implementations§
source§impl Clone for SubscribedWorkteam
impl Clone for SubscribedWorkteam
source§fn clone(&self) -> SubscribedWorkteam
fn clone(&self) -> SubscribedWorkteam
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for SubscribedWorkteam
impl Debug for SubscribedWorkteam
source§impl PartialEq for SubscribedWorkteam
impl PartialEq for SubscribedWorkteam
impl StructuralPartialEq for SubscribedWorkteam
Auto Trait Implementations§
impl Freeze for SubscribedWorkteam
impl RefUnwindSafe for SubscribedWorkteam
impl Send for SubscribedWorkteam
impl Sync for SubscribedWorkteam
impl Unpin for SubscribedWorkteam
impl UnwindSafe for SubscribedWorkteam
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
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.