Struct aws_sdk_ses::input::CreateReceiptRuleInput
source · #[non_exhaustive]pub struct CreateReceiptRuleInput { /* private fields */ }
Expand description
Represents a request to create a receipt rule. You use receipt rules to receive email with Amazon SES. For more information, see the Amazon SES Developer Guide.
Implementations§
source§impl CreateReceiptRuleInput
impl CreateReceiptRuleInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateReceiptRule, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateReceiptRule, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<CreateReceiptRule
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture CreateReceiptRuleInput
.
source§impl CreateReceiptRuleInput
impl CreateReceiptRuleInput
sourcepub fn rule_set_name(&self) -> Option<&str>
pub fn rule_set_name(&self) -> Option<&str>
The name of the rule set that the receipt rule will be added to.
sourcepub fn after(&self) -> Option<&str>
pub fn after(&self) -> Option<&str>
The name of an existing rule after which the new rule will be placed. If this parameter is null, the new rule will be inserted at the beginning of the rule list.
sourcepub fn rule(&self) -> Option<&ReceiptRule>
pub fn rule(&self) -> Option<&ReceiptRule>
A data structure that contains the specified rule's name, actions, recipients, domains, enabled status, scan status, and TLS policy.
Trait Implementations§
source§impl Clone for CreateReceiptRuleInput
impl Clone for CreateReceiptRuleInput
source§fn clone(&self) -> CreateReceiptRuleInput
fn clone(&self) -> CreateReceiptRuleInput
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 CreateReceiptRuleInput
impl Debug for CreateReceiptRuleInput
source§impl PartialEq<CreateReceiptRuleInput> for CreateReceiptRuleInput
impl PartialEq<CreateReceiptRuleInput> for CreateReceiptRuleInput
source§fn eq(&self, other: &CreateReceiptRuleInput) -> bool
fn eq(&self, other: &CreateReceiptRuleInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.