Struct aws_sdk_ses::input::GetIdentityPoliciesInput
source · #[non_exhaustive]pub struct GetIdentityPoliciesInput { /* private fields */ }
Expand description
Represents a request to return the requested sending authorization policies 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 GetIdentityPoliciesInput
impl GetIdentityPoliciesInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<GetIdentityPolicies, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<GetIdentityPolicies, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<GetIdentityPolicies
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture GetIdentityPoliciesInput
.
source§impl GetIdentityPoliciesInput
impl GetIdentityPoliciesInput
sourcepub fn identity(&self) -> Option<&str>
pub fn identity(&self) -> Option<&str>
The identity for which the policies will be retrieved. You can specify an 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_names(&self) -> Option<&[String]>
pub fn policy_names(&self) -> Option<&[String]>
A list of the names of policies to be retrieved. You can retrieve a maximum of 20 policies at a time. If you do not know the names of the policies that are attached to the identity, you can use ListIdentityPolicies
.
Trait Implementations§
source§impl Clone for GetIdentityPoliciesInput
impl Clone for GetIdentityPoliciesInput
source§fn clone(&self) -> GetIdentityPoliciesInput
fn clone(&self) -> GetIdentityPoliciesInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for GetIdentityPoliciesInput
impl Debug for GetIdentityPoliciesInput
source§impl PartialEq<GetIdentityPoliciesInput> for GetIdentityPoliciesInput
impl PartialEq<GetIdentityPoliciesInput> for GetIdentityPoliciesInput
source§fn eq(&self, other: &GetIdentityPoliciesInput) -> bool
fn eq(&self, other: &GetIdentityPoliciesInput) -> bool
self
and other
values to be equal, and is used
by ==
.