#[non_exhaustive]pub struct SecurityProfileSearchSummaryBuilder { /* private fields */ }
Expand description
A builder for SecurityProfileSearchSummary
.
Implementations§
source§impl SecurityProfileSearchSummaryBuilder
impl SecurityProfileSearchSummaryBuilder
sourcepub fn organization_resource_id(self, input: impl Into<String>) -> Self
pub fn organization_resource_id(self, input: impl Into<String>) -> Self
The organization resource identifier.
sourcepub fn set_organization_resource_id(self, input: Option<String>) -> Self
pub fn set_organization_resource_id(self, input: Option<String>) -> Self
The organization resource identifier.
sourcepub fn get_organization_resource_id(&self) -> &Option<String>
pub fn get_organization_resource_id(&self) -> &Option<String>
The organization resource identifier.
sourcepub fn arn(self, input: impl Into<String>) -> Self
pub fn arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the security profile.
sourcepub fn set_arn(self, input: Option<String>) -> Self
pub fn set_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the security profile.
sourcepub fn get_arn(&self) -> &Option<String>
pub fn get_arn(&self) -> &Option<String>
The Amazon Resource Name (ARN) of the security profile.
sourcepub fn security_profile_name(self, input: impl Into<String>) -> Self
pub fn security_profile_name(self, input: impl Into<String>) -> Self
The name of the security profile.
sourcepub fn set_security_profile_name(self, input: Option<String>) -> Self
pub fn set_security_profile_name(self, input: Option<String>) -> Self
The name of the security profile.
sourcepub fn get_security_profile_name(&self) -> &Option<String>
pub fn get_security_profile_name(&self) -> &Option<String>
The name of the security profile.
sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
The description of the security profile.
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
The description of the security profile.
sourcepub fn get_description(&self) -> &Option<String>
pub fn get_description(&self) -> &Option<String>
The description of the security profile.
Adds a key-value pair to tags
.
To override the contents of this collection use set_tags
.
The tags used to organize, track, or control access for this resource. For example, { "Tags": {"key1":"value1", "key2":"value2"} }.
The tags used to organize, track, or control access for this resource. For example, { "Tags": {"key1":"value1", "key2":"value2"} }.
The tags used to organize, track, or control access for this resource. For example, { "Tags": {"key1":"value1", "key2":"value2"} }.
sourcepub fn build(self) -> SecurityProfileSearchSummary
pub fn build(self) -> SecurityProfileSearchSummary
Consumes the builder and constructs a SecurityProfileSearchSummary
.
Trait Implementations§
source§impl Clone for SecurityProfileSearchSummaryBuilder
impl Clone for SecurityProfileSearchSummaryBuilder
source§fn clone(&self) -> SecurityProfileSearchSummaryBuilder
fn clone(&self) -> SecurityProfileSearchSummaryBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for SecurityProfileSearchSummaryBuilder
impl Default for SecurityProfileSearchSummaryBuilder
source§fn default() -> SecurityProfileSearchSummaryBuilder
fn default() -> SecurityProfileSearchSummaryBuilder
source§impl PartialEq for SecurityProfileSearchSummaryBuilder
impl PartialEq for SecurityProfileSearchSummaryBuilder
source§fn eq(&self, other: &SecurityProfileSearchSummaryBuilder) -> bool
fn eq(&self, other: &SecurityProfileSearchSummaryBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for SecurityProfileSearchSummaryBuilder
Auto Trait Implementations§
impl Freeze for SecurityProfileSearchSummaryBuilder
impl RefUnwindSafe for SecurityProfileSearchSummaryBuilder
impl Send for SecurityProfileSearchSummaryBuilder
impl Sync for SecurityProfileSearchSummaryBuilder
impl Unpin for SecurityProfileSearchSummaryBuilder
impl UnwindSafe for SecurityProfileSearchSummaryBuilder
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