com.amazonaws.auth.policy.actions
Enum SimpleEmailServiceActions

java.lang.Object
  extended by java.lang.Enum<SimpleEmailServiceActions>
      extended by com.amazonaws.auth.policy.actions.SimpleEmailServiceActions
All Implemented Interfaces:
Action, java.io.Serializable, java.lang.Comparable<SimpleEmailServiceActions>

public enum SimpleEmailServiceActions
extends java.lang.Enum<SimpleEmailServiceActions>
implements Action

The available AWS access control policy actions for Amazon SES.


Enum Constant Summary
AllSimpleEmailServiceActions
          Represents any action executed on Amazon SES.
DeleteIdentity
          Action for the DeleteIdentity operation.
DeleteVerifiedEmailAddress
          Action for the DeleteVerifiedEmailAddress operation.
GetIdentityDkimAttributes
          Action for the GetIdentityDkimAttributes operation.
GetIdentityNotificationAttributes
          Action for the GetIdentityNotificationAttributes operation.
GetIdentityVerificationAttributes
          Action for the GetIdentityVerificationAttributes operation.
GetSendQuota
          Action for the GetSendQuota operation.
GetSendStatistics
          Action for the GetSendStatistics operation.
ListIdentities
          Action for the ListIdentities operation.
ListVerifiedEmailAddresses
          Action for the ListVerifiedEmailAddresses operation.
SendEmail
          Action for the SendEmail operation.
SendRawEmail
          Action for the SendRawEmail operation.
SetIdentityDkimEnabled
          Action for the SetIdentityDkimEnabled operation.
SetIdentityFeedbackForwardingEnabled
          Action for the SetIdentityFeedbackForwardingEnabled operation.
SetIdentityNotificationTopic
          Action for the SetIdentityNotificationTopic operation.
VerifyDomainDkim
          Action for the VerifyDomainDkim operation.
VerifyDomainIdentity
          Action for the VerifyDomainIdentity operation.
VerifyEmailAddress
          Action for the VerifyEmailAddress operation.
VerifyEmailIdentity
          Action for the VerifyEmailIdentity operation.
 
Method Summary
 java.lang.String getActionName()
          Returns the name of this action.
static SimpleEmailServiceActions valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static SimpleEmailServiceActions[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

AllSimpleEmailServiceActions

public static final SimpleEmailServiceActions AllSimpleEmailServiceActions
Represents any action executed on Amazon SES.


DeleteIdentity

public static final SimpleEmailServiceActions DeleteIdentity
Action for the DeleteIdentity operation.


DeleteVerifiedEmailAddress

public static final SimpleEmailServiceActions DeleteVerifiedEmailAddress
Action for the DeleteVerifiedEmailAddress operation.


GetIdentityDkimAttributes

public static final SimpleEmailServiceActions GetIdentityDkimAttributes
Action for the GetIdentityDkimAttributes operation.


GetIdentityNotificationAttributes

public static final SimpleEmailServiceActions GetIdentityNotificationAttributes
Action for the GetIdentityNotificationAttributes operation.


GetIdentityVerificationAttributes

public static final SimpleEmailServiceActions GetIdentityVerificationAttributes
Action for the GetIdentityVerificationAttributes operation.


GetSendQuota

public static final SimpleEmailServiceActions GetSendQuota
Action for the GetSendQuota operation.


GetSendStatistics

public static final SimpleEmailServiceActions GetSendStatistics
Action for the GetSendStatistics operation.


ListIdentities

public static final SimpleEmailServiceActions ListIdentities
Action for the ListIdentities operation.


ListVerifiedEmailAddresses

public static final SimpleEmailServiceActions ListVerifiedEmailAddresses
Action for the ListVerifiedEmailAddresses operation.


SendEmail

public static final SimpleEmailServiceActions SendEmail
Action for the SendEmail operation.


SendRawEmail

public static final SimpleEmailServiceActions SendRawEmail
Action for the SendRawEmail operation.


SetIdentityDkimEnabled

public static final SimpleEmailServiceActions SetIdentityDkimEnabled
Action for the SetIdentityDkimEnabled operation.


SetIdentityNotificationTopic

public static final SimpleEmailServiceActions SetIdentityNotificationTopic
Action for the SetIdentityNotificationTopic operation.


SetIdentityFeedbackForwardingEnabled

public static final SimpleEmailServiceActions SetIdentityFeedbackForwardingEnabled
Action for the SetIdentityFeedbackForwardingEnabled operation.


VerifyDomainDkim

public static final SimpleEmailServiceActions VerifyDomainDkim
Action for the VerifyDomainDkim operation.


VerifyDomainIdentity

public static final SimpleEmailServiceActions VerifyDomainIdentity
Action for the VerifyDomainIdentity operation.


VerifyEmailAddress

public static final SimpleEmailServiceActions VerifyEmailAddress
Action for the VerifyEmailAddress operation.


VerifyEmailIdentity

public static final SimpleEmailServiceActions VerifyEmailIdentity
Action for the VerifyEmailIdentity operation.

Method Detail

values

public static SimpleEmailServiceActions[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (SimpleEmailServiceActions c : SimpleEmailServiceActions.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static SimpleEmailServiceActions valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

getActionName

public java.lang.String getActionName()
Description copied from interface: Action
Returns the name of this action. For example, 'sqs:SendMessage' is the name corresponding to the SQS action that enables users to send a message to an SQS queue.

Specified by:
getActionName in interface Action
Returns:
The name of this action.


Copyright © 2010 Amazon Web Services, Inc. All Rights Reserved.