Struct aws_sdk_ses::input::CloneReceiptRuleSetInput
source · #[non_exhaustive]pub struct CloneReceiptRuleSetInput { /* private fields */ }
Expand description
Represents a request to create a receipt rule set by cloning an existing one. You use receipt rule sets to receive email with Amazon SES. For more information, see the Amazon SES Developer Guide.
Implementations§
source§impl CloneReceiptRuleSetInput
impl CloneReceiptRuleSetInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CloneReceiptRuleSet, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CloneReceiptRuleSet, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<CloneReceiptRuleSet
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture CloneReceiptRuleSetInput
.
source§impl CloneReceiptRuleSetInput
impl CloneReceiptRuleSetInput
sourcepub fn rule_set_name(&self) -> Option<&str>
pub fn rule_set_name(&self) -> Option<&str>
The name of the rule set to create. The name must:
-
This value can only contain ASCII letters (a-z, A-Z), numbers (0-9), underscores (_), or dashes (-).
-
Start and end with a letter or number.
-
Contain less than 64 characters.
sourcepub fn original_rule_set_name(&self) -> Option<&str>
pub fn original_rule_set_name(&self) -> Option<&str>
The name of the rule set to clone.
Trait Implementations§
source§impl Clone for CloneReceiptRuleSetInput
impl Clone for CloneReceiptRuleSetInput
source§fn clone(&self) -> CloneReceiptRuleSetInput
fn clone(&self) -> CloneReceiptRuleSetInput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for CloneReceiptRuleSetInput
impl Debug for CloneReceiptRuleSetInput
source§impl PartialEq<CloneReceiptRuleSetInput> for CloneReceiptRuleSetInput
impl PartialEq<CloneReceiptRuleSetInput> for CloneReceiptRuleSetInput
source§fn eq(&self, other: &CloneReceiptRuleSetInput) -> bool
fn eq(&self, other: &CloneReceiptRuleSetInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.