#[non_exhaustive]pub struct UpdateSecurityProfileInput {
pub description: Option<String>,
pub permissions: Option<Vec<String>>,
pub security_profile_id: Option<String>,
pub instance_id: Option<String>,
pub allowed_access_control_tags: Option<HashMap<String, String>>,
pub tag_restricted_resources: Option<Vec<String>>,
}
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.description: Option<String>
The description of the security profile.
permissions: Option<Vec<String>>
The permissions granted to a security profile. For a list of valid permissions, see List of security profile permissions.
security_profile_id: Option<String>
The identifier for the security profle.
instance_id: Option<String>
The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
The list of tags that a security profile uses to restrict access to resources in Amazon Connect.
tag_restricted_resources: Option<Vec<String>>
The list of resources that a security profile applies tag restrictions to in Amazon Connect.
Implementations§
source§impl UpdateSecurityProfileInput
impl UpdateSecurityProfileInput
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description of the security profile.
sourcepub fn permissions(&self) -> Option<&[String]>
pub fn permissions(&self) -> Option<&[String]>
The permissions granted to a security profile. For a list of valid permissions, see List of security profile permissions.
sourcepub fn security_profile_id(&self) -> Option<&str>
pub fn security_profile_id(&self) -> Option<&str>
The identifier for the security profle.
sourcepub fn instance_id(&self) -> Option<&str>
pub fn instance_id(&self) -> Option<&str>
The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
The list of tags that a security profile uses to restrict access to resources in Amazon Connect.
sourcepub fn tag_restricted_resources(&self) -> Option<&[String]>
pub fn tag_restricted_resources(&self) -> Option<&[String]>
The list of resources that a security profile applies tag restrictions to in Amazon Connect.
source§impl UpdateSecurityProfileInput
impl UpdateSecurityProfileInput
sourcepub fn builder() -> UpdateSecurityProfileInputBuilder
pub fn builder() -> UpdateSecurityProfileInputBuilder
Creates a new builder-style object to manufacture UpdateSecurityProfileInput
.
Trait Implementations§
source§impl Clone for UpdateSecurityProfileInput
impl Clone for UpdateSecurityProfileInput
source§fn clone(&self) -> UpdateSecurityProfileInput
fn clone(&self) -> UpdateSecurityProfileInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for UpdateSecurityProfileInput
impl Debug for UpdateSecurityProfileInput
source§impl PartialEq<UpdateSecurityProfileInput> for UpdateSecurityProfileInput
impl PartialEq<UpdateSecurityProfileInput> for UpdateSecurityProfileInput
source§fn eq(&self, other: &UpdateSecurityProfileInput) -> bool
fn eq(&self, other: &UpdateSecurityProfileInput) -> bool
self
and other
values to be equal, and is used
by ==
.