Struct rusoto_ses::DeleteIdentityPolicyRequest[][src]

pub struct DeleteIdentityPolicyRequest {
    pub identity: String,
    pub policy_name: String,
}

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.

Fields

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.

The name of the policy to be deleted.

Trait Implementations

impl Default for DeleteIdentityPolicyRequest
[src]

Returns the "default value" for a type. Read more

impl Debug for DeleteIdentityPolicyRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for DeleteIdentityPolicyRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for DeleteIdentityPolicyRequest
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations