Class ReputationEntity
- All Implemented Interfaces:
Serializable
,SdkPojo
,ToCopyableBuilder<ReputationEntity.Builder,
ReputationEntity>
An object that contains information about a reputation entity, including its reference, type, policy, status records, and reputation impact.
- See Also:
-
Nested Class Summary
Nested Classes -
Method Summary
Modifier and TypeMethodDescriptionfinal StatusRecord
The Amazon Web Services Amazon SES-managed status record for this reputation entity, including the current status, cause description, and last updated timestamp.static ReputationEntity.Builder
builder()
final StatusRecord
The customer-managed status record for this reputation entity, including the current status, cause description, and last updated timestamp.final boolean
final boolean
equalsBySdkFields
(Object obj) Indicates whether some other object is "equal to" this one by SDK fields.final <T> Optional
<T> getValueForField
(String fieldName, Class<T> clazz) final int
hashCode()
final String
The unique identifier for the reputation entity.final ReputationEntityType
The type of reputation entity.final String
The type of reputation entity.final RecommendationImpact
The reputation impact level for this entity, representing the highest impact reputation finding currently active.final String
The reputation impact level for this entity, representing the highest impact reputation finding currently active.final String
The Amazon Resource Name (ARN) of the reputation management policy applied to this entity.final SendingStatus
The aggregate sending status that determines whether the entity is allowed to send emails.final String
The aggregate sending status that determines whether the entity is allowed to send emails.static Class
<? extends ReputationEntity.Builder> Take this object and create a builder that contains all of the current property values of this object.final String
toString()
Returns a string representation of this object.Methods inherited from interface software.amazon.awssdk.utils.builder.ToCopyableBuilder
copy
-
Method Details
-
reputationEntityReference
The unique identifier for the reputation entity. For resource-type entities, this is the Amazon Resource Name (ARN) of the resource.
- Returns:
- The unique identifier for the reputation entity. For resource-type entities, this is the Amazon Resource Name (ARN) of the resource.
-
reputationEntityType
The type of reputation entity. Currently, only
RESOURCE
type entities are supported.If the service returns an enum value that is not available in the current SDK version,
reputationEntityType
will returnReputationEntityType.UNKNOWN_TO_SDK_VERSION
. The raw value returned by the service is available fromreputationEntityTypeAsString()
.- Returns:
- The type of reputation entity. Currently, only
RESOURCE
type entities are supported. - See Also:
-
reputationEntityTypeAsString
The type of reputation entity. Currently, only
RESOURCE
type entities are supported.If the service returns an enum value that is not available in the current SDK version,
reputationEntityType
will returnReputationEntityType.UNKNOWN_TO_SDK_VERSION
. The raw value returned by the service is available fromreputationEntityTypeAsString()
.- Returns:
- The type of reputation entity. Currently, only
RESOURCE
type entities are supported. - See Also:
-
reputationManagementPolicy
The Amazon Resource Name (ARN) of the reputation management policy applied to this entity. This is an Amazon Web Services Amazon SES-managed policy.
- Returns:
- The Amazon Resource Name (ARN) of the reputation management policy applied to this entity. This is an Amazon Web Services Amazon SES-managed policy.
-
customerManagedStatus
The customer-managed status record for this reputation entity, including the current status, cause description, and last updated timestamp.
- Returns:
- The customer-managed status record for this reputation entity, including the current status, cause description, and last updated timestamp.
-
awsSesManagedStatus
The Amazon Web Services Amazon SES-managed status record for this reputation entity, including the current status, cause description, and last updated timestamp.
- Returns:
- The Amazon Web Services Amazon SES-managed status record for this reputation entity, including the current status, cause description, and last updated timestamp.
-
sendingStatusAggregate
The aggregate sending status that determines whether the entity is allowed to send emails. This status is derived from both the customer-managed and Amazon Web Services Amazon SES-managed statuses. If either the customer-managed status or the Amazon Web Services Amazon SES-managed status is
DISABLED
, the aggregate status will beDISABLED
and the entity will not be allowed to send emails. When the customer-managed status is set toREINSTATED
, the entity can continue sending even if there are active reputation findings, provided the Amazon Web Services Amazon SES-managed status also permits sending. The entity can only send emails when both statuses permit sending.If the service returns an enum value that is not available in the current SDK version,
sendingStatusAggregate
will returnSendingStatus.UNKNOWN_TO_SDK_VERSION
. The raw value returned by the service is available fromsendingStatusAggregateAsString()
.- Returns:
- The aggregate sending status that determines whether the entity is allowed to send emails. This status is
derived from both the customer-managed and Amazon Web Services Amazon SES-managed statuses. If either the
customer-managed status or the Amazon Web Services Amazon SES-managed status is
DISABLED
, the aggregate status will beDISABLED
and the entity will not be allowed to send emails. When the customer-managed status is set toREINSTATED
, the entity can continue sending even if there are active reputation findings, provided the Amazon Web Services Amazon SES-managed status also permits sending. The entity can only send emails when both statuses permit sending. - See Also:
-
sendingStatusAggregateAsString
The aggregate sending status that determines whether the entity is allowed to send emails. This status is derived from both the customer-managed and Amazon Web Services Amazon SES-managed statuses. If either the customer-managed status or the Amazon Web Services Amazon SES-managed status is
DISABLED
, the aggregate status will beDISABLED
and the entity will not be allowed to send emails. When the customer-managed status is set toREINSTATED
, the entity can continue sending even if there are active reputation findings, provided the Amazon Web Services Amazon SES-managed status also permits sending. The entity can only send emails when both statuses permit sending.If the service returns an enum value that is not available in the current SDK version,
sendingStatusAggregate
will returnSendingStatus.UNKNOWN_TO_SDK_VERSION
. The raw value returned by the service is available fromsendingStatusAggregateAsString()
.- Returns:
- The aggregate sending status that determines whether the entity is allowed to send emails. This status is
derived from both the customer-managed and Amazon Web Services Amazon SES-managed statuses. If either the
customer-managed status or the Amazon Web Services Amazon SES-managed status is
DISABLED
, the aggregate status will beDISABLED
and the entity will not be allowed to send emails. When the customer-managed status is set toREINSTATED
, the entity can continue sending even if there are active reputation findings, provided the Amazon Web Services Amazon SES-managed status also permits sending. The entity can only send emails when both statuses permit sending. - See Also:
-
reputationImpact
The reputation impact level for this entity, representing the highest impact reputation finding currently active. Reputation findings can be retrieved using the
ListRecommendations
operation.If the service returns an enum value that is not available in the current SDK version,
reputationImpact
will returnRecommendationImpact.UNKNOWN_TO_SDK_VERSION
. The raw value returned by the service is available fromreputationImpactAsString()
.- Returns:
- The reputation impact level for this entity, representing the highest impact reputation finding currently
active. Reputation findings can be retrieved using the
ListRecommendations
operation. - See Also:
-
reputationImpactAsString
The reputation impact level for this entity, representing the highest impact reputation finding currently active. Reputation findings can be retrieved using the
ListRecommendations
operation.If the service returns an enum value that is not available in the current SDK version,
reputationImpact
will returnRecommendationImpact.UNKNOWN_TO_SDK_VERSION
. The raw value returned by the service is available fromreputationImpactAsString()
.- Returns:
- The reputation impact level for this entity, representing the highest impact reputation finding currently
active. Reputation findings can be retrieved using the
ListRecommendations
operation. - See Also:
-
toBuilder
Description copied from interface:ToCopyableBuilder
Take this object and create a builder that contains all of the current property values of this object.- Specified by:
toBuilder
in interfaceToCopyableBuilder<ReputationEntity.Builder,
ReputationEntity> - Returns:
- a builder for type T
-
builder
-
serializableBuilderClass
-
hashCode
-
equals
-
equalsBySdkFields
Description copied from interface:SdkPojo
Indicates whether some other object is "equal to" this one by SDK fields. An SDK field is a modeled, non-inherited field in anSdkPojo
class, and is generated based on a service model.If an
SdkPojo
class does not have any inherited fields,equalsBySdkFields
andequals
are essentially the same.- Specified by:
equalsBySdkFields
in interfaceSdkPojo
- Parameters:
obj
- the object to be compared with- Returns:
- true if the other object equals to this object by sdk fields, false otherwise.
-
toString
-
getValueForField
-
sdkFields
-
sdkFieldNameToField
- Specified by:
sdkFieldNameToField
in interfaceSdkPojo
- Returns:
- The mapping between the field name and its corresponding field.
-