#[non_exhaustive]pub struct ProviderServiceSummaryBuilder { /* private fields */ }
Expand description
A builder for ProviderServiceSummary
.
Implementations§
source§impl ProviderServiceSummaryBuilder
impl ProviderServiceSummaryBuilder
sourcepub fn provider_service_arn(self, input: impl Into<String>) -> Self
pub fn provider_service_arn(self, input: impl Into<String>) -> Self
The ARN (Amazon Resource Name) that Entity Resolution generated for the providerService
.
sourcepub fn set_provider_service_arn(self, input: Option<String>) -> Self
pub fn set_provider_service_arn(self, input: Option<String>) -> Self
The ARN (Amazon Resource Name) that Entity Resolution generated for the providerService
.
sourcepub fn get_provider_service_arn(&self) -> &Option<String>
pub fn get_provider_service_arn(&self) -> &Option<String>
The ARN (Amazon Resource Name) that Entity Resolution generated for the providerService
.
sourcepub fn provider_name(self, input: impl Into<String>) -> Self
pub fn provider_name(self, input: impl Into<String>) -> Self
The name of the provider. This name is typically the company name.
This field is required.sourcepub fn set_provider_name(self, input: Option<String>) -> Self
pub fn set_provider_name(self, input: Option<String>) -> Self
The name of the provider. This name is typically the company name.
sourcepub fn get_provider_name(&self) -> &Option<String>
pub fn get_provider_name(&self) -> &Option<String>
The name of the provider. This name is typically the company name.
sourcepub fn provider_service_display_name(self, input: impl Into<String>) -> Self
pub fn provider_service_display_name(self, input: impl Into<String>) -> Self
The display name of the provider service.
This field is required.sourcepub fn set_provider_service_display_name(self, input: Option<String>) -> Self
pub fn set_provider_service_display_name(self, input: Option<String>) -> Self
The display name of the provider service.
sourcepub fn get_provider_service_display_name(&self) -> &Option<String>
pub fn get_provider_service_display_name(&self) -> &Option<String>
The display name of the provider service.
sourcepub fn provider_service_name(self, input: impl Into<String>) -> Self
pub fn provider_service_name(self, input: impl Into<String>) -> Self
The name of the product that the provider service provides.
This field is required.sourcepub fn set_provider_service_name(self, input: Option<String>) -> Self
pub fn set_provider_service_name(self, input: Option<String>) -> Self
The name of the product that the provider service provides.
sourcepub fn get_provider_service_name(&self) -> &Option<String>
pub fn get_provider_service_name(&self) -> &Option<String>
The name of the product that the provider service provides.
sourcepub fn provider_service_type(self, input: ServiceType) -> Self
pub fn provider_service_type(self, input: ServiceType) -> Self
The type of provider service.
This field is required.sourcepub fn set_provider_service_type(self, input: Option<ServiceType>) -> Self
pub fn set_provider_service_type(self, input: Option<ServiceType>) -> Self
The type of provider service.
sourcepub fn get_provider_service_type(&self) -> &Option<ServiceType>
pub fn get_provider_service_type(&self) -> &Option<ServiceType>
The type of provider service.
sourcepub fn build(self) -> Result<ProviderServiceSummary, BuildError>
pub fn build(self) -> Result<ProviderServiceSummary, BuildError>
Consumes the builder and constructs a ProviderServiceSummary
.
This method will fail if any of the following fields are not set:
Trait Implementations§
source§impl Clone for ProviderServiceSummaryBuilder
impl Clone for ProviderServiceSummaryBuilder
source§fn clone(&self) -> ProviderServiceSummaryBuilder
fn clone(&self) -> ProviderServiceSummaryBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for ProviderServiceSummaryBuilder
impl Default for ProviderServiceSummaryBuilder
source§fn default() -> ProviderServiceSummaryBuilder
fn default() -> ProviderServiceSummaryBuilder
source§impl PartialEq for ProviderServiceSummaryBuilder
impl PartialEq for ProviderServiceSummaryBuilder
source§fn eq(&self, other: &ProviderServiceSummaryBuilder) -> bool
fn eq(&self, other: &ProviderServiceSummaryBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ProviderServiceSummaryBuilder
Auto Trait Implementations§
impl Freeze for ProviderServiceSummaryBuilder
impl RefUnwindSafe for ProviderServiceSummaryBuilder
impl Send for ProviderServiceSummaryBuilder
impl Sync for ProviderServiceSummaryBuilder
impl Unpin for ProviderServiceSummaryBuilder
impl UnwindSafe for ProviderServiceSummaryBuilder
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