Struct aws_sdk_workmail::operation::put_access_control_rule::builders::PutAccessControlRuleInputBuilder
source · #[non_exhaustive]pub struct PutAccessControlRuleInputBuilder { /* private fields */ }
Expand description
A builder for PutAccessControlRuleInput
.
Implementations§
source§impl PutAccessControlRuleInputBuilder
impl PutAccessControlRuleInputBuilder
sourcepub fn effect(self, input: AccessControlRuleEffect) -> Self
pub fn effect(self, input: AccessControlRuleEffect) -> Self
The rule effect.
sourcepub fn set_effect(self, input: Option<AccessControlRuleEffect>) -> Self
pub fn set_effect(self, input: Option<AccessControlRuleEffect>) -> Self
The rule effect.
sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
The rule description.
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
The rule description.
sourcepub fn ip_ranges(self, input: impl Into<String>) -> Self
pub fn ip_ranges(self, input: impl Into<String>) -> Self
Appends an item to ip_ranges
.
To override the contents of this collection use set_ip_ranges
.
IPv4 CIDR ranges to include in the rule.
sourcepub fn set_ip_ranges(self, input: Option<Vec<String>>) -> Self
pub fn set_ip_ranges(self, input: Option<Vec<String>>) -> Self
IPv4 CIDR ranges to include in the rule.
sourcepub fn not_ip_ranges(self, input: impl Into<String>) -> Self
pub fn not_ip_ranges(self, input: impl Into<String>) -> Self
Appends an item to not_ip_ranges
.
To override the contents of this collection use set_not_ip_ranges
.
IPv4 CIDR ranges to exclude from the rule.
sourcepub fn set_not_ip_ranges(self, input: Option<Vec<String>>) -> Self
pub fn set_not_ip_ranges(self, input: Option<Vec<String>>) -> Self
IPv4 CIDR ranges to exclude from the rule.
sourcepub fn actions(self, input: impl Into<String>) -> Self
pub fn actions(self, input: impl Into<String>) -> Self
Appends an item to actions
.
To override the contents of this collection use set_actions
.
Access protocol actions to include in the rule. Valid values include ActiveSync
, AutoDiscover
, EWS
, IMAP
, SMTP
, WindowsOutlook
, and WebMail
.
sourcepub fn set_actions(self, input: Option<Vec<String>>) -> Self
pub fn set_actions(self, input: Option<Vec<String>>) -> Self
Access protocol actions to include in the rule. Valid values include ActiveSync
, AutoDiscover
, EWS
, IMAP
, SMTP
, WindowsOutlook
, and WebMail
.
sourcepub fn not_actions(self, input: impl Into<String>) -> Self
pub fn not_actions(self, input: impl Into<String>) -> Self
Appends an item to not_actions
.
To override the contents of this collection use set_not_actions
.
Access protocol actions to exclude from the rule. Valid values include ActiveSync
, AutoDiscover
, EWS
, IMAP
, SMTP
, WindowsOutlook
, and WebMail
.
sourcepub fn set_not_actions(self, input: Option<Vec<String>>) -> Self
pub fn set_not_actions(self, input: Option<Vec<String>>) -> Self
Access protocol actions to exclude from the rule. Valid values include ActiveSync
, AutoDiscover
, EWS
, IMAP
, SMTP
, WindowsOutlook
, and WebMail
.
sourcepub fn user_ids(self, input: impl Into<String>) -> Self
pub fn user_ids(self, input: impl Into<String>) -> Self
Appends an item to user_ids
.
To override the contents of this collection use set_user_ids
.
User IDs to include in the rule.
sourcepub fn set_user_ids(self, input: Option<Vec<String>>) -> Self
pub fn set_user_ids(self, input: Option<Vec<String>>) -> Self
User IDs to include in the rule.
sourcepub fn not_user_ids(self, input: impl Into<String>) -> Self
pub fn not_user_ids(self, input: impl Into<String>) -> Self
Appends an item to not_user_ids
.
To override the contents of this collection use set_not_user_ids
.
User IDs to exclude from the rule.
sourcepub fn set_not_user_ids(self, input: Option<Vec<String>>) -> Self
pub fn set_not_user_ids(self, input: Option<Vec<String>>) -> Self
User IDs to exclude from the rule.
sourcepub fn organization_id(self, input: impl Into<String>) -> Self
pub fn organization_id(self, input: impl Into<String>) -> Self
The identifier of the organization.
sourcepub fn set_organization_id(self, input: Option<String>) -> Self
pub fn set_organization_id(self, input: Option<String>) -> Self
The identifier of the organization.
sourcepub fn impersonation_role_ids(self, input: impl Into<String>) -> Self
pub fn impersonation_role_ids(self, input: impl Into<String>) -> Self
Appends an item to impersonation_role_ids
.
To override the contents of this collection use set_impersonation_role_ids
.
Impersonation role IDs to include in the rule.
sourcepub fn set_impersonation_role_ids(self, input: Option<Vec<String>>) -> Self
pub fn set_impersonation_role_ids(self, input: Option<Vec<String>>) -> Self
Impersonation role IDs to include in the rule.
sourcepub fn not_impersonation_role_ids(self, input: impl Into<String>) -> Self
pub fn not_impersonation_role_ids(self, input: impl Into<String>) -> Self
Appends an item to not_impersonation_role_ids
.
To override the contents of this collection use set_not_impersonation_role_ids
.
Impersonation role IDs to exclude from the rule.
sourcepub fn set_not_impersonation_role_ids(self, input: Option<Vec<String>>) -> Self
pub fn set_not_impersonation_role_ids(self, input: Option<Vec<String>>) -> Self
Impersonation role IDs to exclude from the rule.
sourcepub fn build(self) -> Result<PutAccessControlRuleInput, BuildError>
pub fn build(self) -> Result<PutAccessControlRuleInput, BuildError>
Consumes the builder and constructs a PutAccessControlRuleInput
.
Trait Implementations§
source§impl Clone for PutAccessControlRuleInputBuilder
impl Clone for PutAccessControlRuleInputBuilder
source§fn clone(&self) -> PutAccessControlRuleInputBuilder
fn clone(&self) -> PutAccessControlRuleInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for PutAccessControlRuleInputBuilder
impl Default for PutAccessControlRuleInputBuilder
source§fn default() -> PutAccessControlRuleInputBuilder
fn default() -> PutAccessControlRuleInputBuilder
source§impl PartialEq<PutAccessControlRuleInputBuilder> for PutAccessControlRuleInputBuilder
impl PartialEq<PutAccessControlRuleInputBuilder> for PutAccessControlRuleInputBuilder
source§fn eq(&self, other: &PutAccessControlRuleInputBuilder) -> bool
fn eq(&self, other: &PutAccessControlRuleInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.