Class: Aws::SESV2::Types::UpdateReputationEntityCustomerManagedStatusRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::SESV2::Types::UpdateReputationEntityCustomerManagedStatusRequest
- Defined in:
- gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb
Overview
Represents a request to update the customer-managed sending status for a reputation entity.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#reputation_entity_reference ⇒ String
The unique identifier for the reputation entity.
-
#reputation_entity_type ⇒ String
The type of reputation entity.
-
#sending_status ⇒ String
The new customer-managed sending status for the reputation entity.
Instance Attribute Details
#reputation_entity_reference ⇒ String
The unique identifier for the reputation entity. For resource-type entities, this is the Amazon Resource Name (ARN) of the resource.
8752 8753 8754 8755 8756 8757 8758 |
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 8752 class UpdateReputationEntityCustomerManagedStatusRequest < Struct.new( :reputation_entity_type, :reputation_entity_reference, :sending_status) SENSITIVE = [] include Aws::Structure end |
#reputation_entity_type ⇒ String
The type of reputation entity. Currently, only RESOURCE
type
entities are supported.
8752 8753 8754 8755 8756 8757 8758 |
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 8752 class UpdateReputationEntityCustomerManagedStatusRequest < Struct.new( :reputation_entity_type, :reputation_entity_reference, :sending_status) SENSITIVE = [] include Aws::Structure end |
#sending_status ⇒ String
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.
8752 8753 8754 8755 8756 8757 8758 |
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 8752 class UpdateReputationEntityCustomerManagedStatusRequest < Struct.new( :reputation_entity_type, :reputation_entity_reference, :sending_status) SENSITIVE = [] include Aws::Structure end |