Struct aws_sdk_connect::model::SecurityProfile
source · [−]#[non_exhaustive]pub struct SecurityProfile {
pub id: Option<String>,
pub organization_resource_id: Option<String>,
pub arn: Option<String>,
pub security_profile_name: Option<String>,
pub description: Option<String>,
pub tags: Option<HashMap<String, String>>,
}
Expand description
Contains information about a security profile.
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.id: Option<String>
The identifier for the security profile.
organization_resource_id: Option<String>
The organization resource identifier for the security profile.
arn: Option<String>
The Amazon Resource Name (ARN) for the secruity profile.
security_profile_name: Option<String>
The name for the security profile.
description: Option<String>
The description of the security profile.
The tags used to organize, track, or control access for this resource.
Implementations
sourceimpl SecurityProfile
impl SecurityProfile
sourcepub fn organization_resource_id(&self) -> Option<&str>
pub fn organization_resource_id(&self) -> Option<&str>
The organization resource identifier for the security profile.
sourcepub fn security_profile_name(&self) -> Option<&str>
pub fn security_profile_name(&self) -> Option<&str>
The name for the security profile.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description of the security profile.
The tags used to organize, track, or control access for this resource.
sourceimpl SecurityProfile
impl SecurityProfile
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture SecurityProfile
Trait Implementations
sourceimpl Clone for SecurityProfile
impl Clone for SecurityProfile
sourcefn clone(&self) -> SecurityProfile
fn clone(&self) -> SecurityProfile
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for SecurityProfile
impl Debug for SecurityProfile
sourceimpl PartialEq<SecurityProfile> for SecurityProfile
impl PartialEq<SecurityProfile> for SecurityProfile
sourcefn eq(&self, other: &SecurityProfile) -> bool
fn eq(&self, other: &SecurityProfile) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &SecurityProfile) -> bool
fn ne(&self, other: &SecurityProfile) -> bool
This method tests for !=
.
impl StructuralPartialEq for SecurityProfile
Auto Trait Implementations
impl RefUnwindSafe for SecurityProfile
impl Send for SecurityProfile
impl Sync for SecurityProfile
impl Unpin for SecurityProfile
impl UnwindSafe for SecurityProfile
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more