#[non_exhaustive]pub struct ProviderServiceSummary {
pub provider_service_arn: String,
pub provider_name: String,
pub provider_service_display_name: String,
pub provider_service_name: String,
pub provider_service_type: ServiceType,
}
Expand description
A list of ProviderService
objects, each of which contain the fields providerName
, providerServiceArn
, providerServiceName
, and providerServiceType
.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.provider_service_arn: String
The ARN (Amazon Resource Name) that Entity Resolution generated for the providerService
.
provider_name: String
The name of the provider. This name is typically the company name.
provider_service_display_name: String
The display name of the provider service.
provider_service_name: String
The name of the product that the provider service provides.
provider_service_type: ServiceType
The type of provider service.
Implementations§
source§impl ProviderServiceSummary
impl ProviderServiceSummary
sourcepub fn provider_service_arn(&self) -> &str
pub fn provider_service_arn(&self) -> &str
The ARN (Amazon Resource Name) that Entity Resolution generated for the providerService
.
sourcepub fn provider_name(&self) -> &str
pub fn provider_name(&self) -> &str
The name of the provider. This name is typically the company name.
sourcepub fn provider_service_display_name(&self) -> &str
pub fn provider_service_display_name(&self) -> &str
The display name of the provider service.
sourcepub fn provider_service_name(&self) -> &str
pub fn provider_service_name(&self) -> &str
The name of the product that the provider service provides.
sourcepub fn provider_service_type(&self) -> &ServiceType
pub fn provider_service_type(&self) -> &ServiceType
The type of provider service.
source§impl ProviderServiceSummary
impl ProviderServiceSummary
sourcepub fn builder() -> ProviderServiceSummaryBuilder
pub fn builder() -> ProviderServiceSummaryBuilder
Creates a new builder-style object to manufacture ProviderServiceSummary
.
Trait Implementations§
source§impl Clone for ProviderServiceSummary
impl Clone for ProviderServiceSummary
source§fn clone(&self) -> ProviderServiceSummary
fn clone(&self) -> ProviderServiceSummary
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ProviderServiceSummary
impl Debug for ProviderServiceSummary
source§impl PartialEq for ProviderServiceSummary
impl PartialEq for ProviderServiceSummary
source§fn eq(&self, other: &ProviderServiceSummary) -> bool
fn eq(&self, other: &ProviderServiceSummary) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ProviderServiceSummary
Auto Trait Implementations§
impl Freeze for ProviderServiceSummary
impl RefUnwindSafe for ProviderServiceSummary
impl Send for ProviderServiceSummary
impl Sync for ProviderServiceSummary
impl Unpin for ProviderServiceSummary
impl UnwindSafe for ProviderServiceSummary
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