Skip to content

Get Reputation Entity

sesv2_get_reputation_entity R Documentation

Retrieve information about a specific reputation entity, including its reputation management policy, customer-managed status, Amazon Web Services Amazon SES-managed status, and aggregate sending status

Description

Retrieve information about a specific reputation entity, including its reputation management policy, customer-managed status, Amazon Web Services Amazon SES-managed status, and aggregate sending status.

Reputation entities represent resources in your Amazon SES account that have reputation tracking and management capabilities. The reputation impact reflects the highest impact reputation finding for the entity. Reputation findings can be retrieved using the list_recommendations operation.

Usage

sesv2_get_reputation_entity(ReputationEntityReference,
  ReputationEntityType)

Arguments

ReputationEntityReference

[required] The unique identifier for the reputation entity. For resource-type entities, this is the Amazon Resource Name (ARN) of the resource.

ReputationEntityType

[required] The type of reputation entity. Currently, only RESOURCE type entities are supported.

Value

A list with the following syntax:

list(
  ReputationEntity = list(
    ReputationEntityReference = "string",
    ReputationEntityType = "RESOURCE",
    ReputationManagementPolicy = "string",
    CustomerManagedStatus = list(
      Status = "ENABLED"|"REINSTATED"|"DISABLED",
      Cause = "string",
      LastUpdatedTimestamp = as.POSIXct(
        "2015-01-01"
      )
    ),
    AwsSesManagedStatus = list(
      Status = "ENABLED"|"REINSTATED"|"DISABLED",
      Cause = "string",
      LastUpdatedTimestamp = as.POSIXct(
        "2015-01-01"
      )
    ),
    SendingStatusAggregate = "ENABLED"|"REINSTATED"|"DISABLED",
    ReputationImpact = "LOW"|"HIGH"
  )
)

Request syntax

svc$get_reputation_entity(
  ReputationEntityReference = "string",
  ReputationEntityType = "RESOURCE"
)