Struct aws_sdk_ses::input::DeleteIdentityPolicyInput
source · #[non_exhaustive]pub struct DeleteIdentityPolicyInput { /* private fields */ }
Expand description
Represents a request to delete a sending authorization policy for an identity. Sending authorization is an Amazon SES feature that enables you to authorize other senders to use your identities. For information, see the Amazon SES Developer Guide.
Implementations§
source§impl DeleteIdentityPolicyInput
impl DeleteIdentityPolicyInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DeleteIdentityPolicy, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DeleteIdentityPolicy, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<DeleteIdentityPolicy
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DeleteIdentityPolicyInput
.
source§impl DeleteIdentityPolicyInput
impl DeleteIdentityPolicyInput
sourcepub fn identity(&self) -> Option<&str>
pub fn identity(&self) -> Option<&str>
The identity that is associated with the policy that you want to delete. You can specify the identity by using its name or by using its Amazon Resource Name (ARN). Examples: user@example.com
, example.com
, arn:aws:ses:us-east-1:123456789012:identity/example.com
.
To successfully call this API, you must own the identity.
sourcepub fn policy_name(&self) -> Option<&str>
pub fn policy_name(&self) -> Option<&str>
The name of the policy to be deleted.
Trait Implementations§
source§impl Clone for DeleteIdentityPolicyInput
impl Clone for DeleteIdentityPolicyInput
source§fn clone(&self) -> DeleteIdentityPolicyInput
fn clone(&self) -> DeleteIdentityPolicyInput
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 DeleteIdentityPolicyInput
impl Debug for DeleteIdentityPolicyInput
source§impl PartialEq<DeleteIdentityPolicyInput> for DeleteIdentityPolicyInput
impl PartialEq<DeleteIdentityPolicyInput> for DeleteIdentityPolicyInput
source§fn eq(&self, other: &DeleteIdentityPolicyInput) -> bool
fn eq(&self, other: &DeleteIdentityPolicyInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.