Values.UpdateReputationEntityCustomerManagedStatusRequestSourceRepresents a request to update the customer-managed sending status for a reputation entity.
type nonrec t = {reputationEntityType : ReputationEntityType.t;The type of reputation entity. Currently, only RESOURCE type entities are supported.
*)reputationEntityReference : ReputationEntityReference.t;The unique identifier for the reputation entity. For resource-type entities, this is the Amazon Resource Name (ARN) of the resource.
*)sendingStatus : SendingStatus.t;The new customer-managed sending status for the reputation entity. This can be one of the following: ENABLED – Allow sending for this entity. DISABLED – Prevent sending for this entity. REINSTATED – Allow sending even if there are active reputation findings.
*)}val make :
reputationEntityType:ReputationEntityType.t ->
reputationEntityReference:ReputationEntityReference.t ->
sendingStatus:SendingStatus.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string * [> `Enum of string | `String of ReputationEntityReference.t ])
list ]