#[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 ==
.