#[non_exhaustive]pub struct GetProviderServiceInput {
pub provider_name: Option<String>,
pub provider_service_name: Option<String>,
}
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.provider_name: Option<String>
The name of the provider. This name is typically the company name.
provider_service_name: Option<String>
The ARN (Amazon Resource Name) of the product that the provider service provides.
Implementations§
source§impl GetProviderServiceInput
impl GetProviderServiceInput
sourcepub fn provider_name(&self) -> Option<&str>
pub fn provider_name(&self) -> Option<&str>
The name of the provider. This name is typically the company name.
sourcepub fn provider_service_name(&self) -> Option<&str>
pub fn provider_service_name(&self) -> Option<&str>
The ARN (Amazon Resource Name) of the product that the provider service provides.
source§impl GetProviderServiceInput
impl GetProviderServiceInput
sourcepub fn builder() -> GetProviderServiceInputBuilder
pub fn builder() -> GetProviderServiceInputBuilder
Creates a new builder-style object to manufacture GetProviderServiceInput
.
Trait Implementations§
source§impl Clone for GetProviderServiceInput
impl Clone for GetProviderServiceInput
source§fn clone(&self) -> GetProviderServiceInput
fn clone(&self) -> GetProviderServiceInput
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 GetProviderServiceInput
impl Debug for GetProviderServiceInput
source§impl PartialEq for GetProviderServiceInput
impl PartialEq for GetProviderServiceInput
source§fn eq(&self, other: &GetProviderServiceInput) -> bool
fn eq(&self, other: &GetProviderServiceInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for GetProviderServiceInput
Auto Trait Implementations§
impl RefUnwindSafe for GetProviderServiceInput
impl Send for GetProviderServiceInput
impl Sync for GetProviderServiceInput
impl Unpin for GetProviderServiceInput
impl UnwindSafe for GetProviderServiceInput
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> 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>
Creates a shared type from an unshared type.