Struct aws_sdk_ses::input::CreateReceiptRuleSetInput
source · #[non_exhaustive]pub struct CreateReceiptRuleSetInput { /* private fields */ }
Expand description
Represents a request to create an empty receipt rule set. You use receipt rule sets to receive email with Amazon SES. For more information, see the Amazon SES Developer Guide.
Implementations§
source§impl CreateReceiptRuleSetInput
impl CreateReceiptRuleSetInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateReceiptRuleSet, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateReceiptRuleSet, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<CreateReceiptRuleSet
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture CreateReceiptRuleSetInput
.
source§impl CreateReceiptRuleSetInput
impl CreateReceiptRuleSetInput
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.
Trait Implementations§
source§impl Clone for CreateReceiptRuleSetInput
impl Clone for CreateReceiptRuleSetInput
source§fn clone(&self) -> CreateReceiptRuleSetInput
fn clone(&self) -> CreateReceiptRuleSetInput
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 CreateReceiptRuleSetInput
impl Debug for CreateReceiptRuleSetInput
source§impl PartialEq<CreateReceiptRuleSetInput> for CreateReceiptRuleSetInput
impl PartialEq<CreateReceiptRuleSetInput> for CreateReceiptRuleSetInput
source§fn eq(&self, other: &CreateReceiptRuleSetInput) -> bool
fn eq(&self, other: &CreateReceiptRuleSetInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.