#[non_exhaustive]pub struct StandardsManagedByBuilder { /* private fields */ }Expand description
A builder for StandardsManagedBy.
Implementations§
source§impl StandardsManagedByBuilder
impl StandardsManagedByBuilder
sourcepub fn company(self, input: impl Into<String>) -> Self
pub fn company(self, input: impl Into<String>) -> Self
An identifier for the company that manages a specific security standard. For existing standards, the value is equal to Amazon Web Services.
sourcepub fn set_company(self, input: Option<String>) -> Self
pub fn set_company(self, input: Option<String>) -> Self
An identifier for the company that manages a specific security standard. For existing standards, the value is equal to Amazon Web Services.
sourcepub fn get_company(&self) -> &Option<String>
pub fn get_company(&self) -> &Option<String>
An identifier for the company that manages a specific security standard. For existing standards, the value is equal to Amazon Web Services.
sourcepub fn product(self, input: impl Into<String>) -> Self
pub fn product(self, input: impl Into<String>) -> Self
An identifier for the product that manages a specific security standard. For existing standards, the value is equal to the Amazon Web Services service that manages the standard.
sourcepub fn set_product(self, input: Option<String>) -> Self
pub fn set_product(self, input: Option<String>) -> Self
An identifier for the product that manages a specific security standard. For existing standards, the value is equal to the Amazon Web Services service that manages the standard.
sourcepub fn get_product(&self) -> &Option<String>
pub fn get_product(&self) -> &Option<String>
An identifier for the product that manages a specific security standard. For existing standards, the value is equal to the Amazon Web Services service that manages the standard.
sourcepub fn build(self) -> StandardsManagedBy
pub fn build(self) -> StandardsManagedBy
Consumes the builder and constructs a StandardsManagedBy.
Trait Implementations§
source§impl Clone for StandardsManagedByBuilder
impl Clone for StandardsManagedByBuilder
source§fn clone(&self) -> StandardsManagedByBuilder
fn clone(&self) -> StandardsManagedByBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for StandardsManagedByBuilder
impl Debug for StandardsManagedByBuilder
source§impl Default for StandardsManagedByBuilder
impl Default for StandardsManagedByBuilder
source§fn default() -> StandardsManagedByBuilder
fn default() -> StandardsManagedByBuilder
source§impl PartialEq for StandardsManagedByBuilder
impl PartialEq for StandardsManagedByBuilder
source§fn eq(&self, other: &StandardsManagedByBuilder) -> bool
fn eq(&self, other: &StandardsManagedByBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for StandardsManagedByBuilder
Auto Trait Implementations§
impl Freeze for StandardsManagedByBuilder
impl RefUnwindSafe for StandardsManagedByBuilder
impl Send for StandardsManagedByBuilder
impl Sync for StandardsManagedByBuilder
impl Unpin for StandardsManagedByBuilder
impl UnwindSafe for StandardsManagedByBuilder
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> 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)
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>
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