/AWS1/IF_CNT=>DISASSOCEMAILADDRESSALIAS()¶
About DisassociateEmailAddressAlias¶
Removes the alias association between two email addresses in an Amazon Connect instance. After disassociation, emails sent to the former alias email address are no longer forwarded to the primary email address. Both email addresses continue to exist independently and can receive emails directly.
Use cases
Following are common uses cases for this API:
-
Department separation: Remove alias relationships when splitting a consolidated support queue back into separate department-specific queues.
-
Email address retirement: Cleanly remove forwarding relationships before decommissioning old email addresses.
-
Organizational restructuring: Reconfigure email routing when business processes change and aliases are no longer needed.
Important things to know
-
Concurrent operations: This API uses distributed locking, so concurrent operations on the same email addresses may be temporarily blocked.
-
Emails sent to the former alias address are still delivered directly to that address if it exists.
-
You do not need to delete the email addresses after disassociation. Both addresses remain active independently.
-
After a successful disassociation, you can immediately create a new alias relationship with the same addresses.
-
200 status means alias was successfully disassociated.
DisassociateEmailAddressAlias does not return the following information:
-
Details in the response about the email that was disassociated. The response returns an empty body.
-
The timestamp of when the disassociation occurred.
Endpoints: See Amazon Connect endpoints and quotas.
Related operations
-
AssociateEmailAddressAlias: Associates an email address alias with an existing email address in an Amazon Connect instance.
-
DescribeEmailAddress: View current alias configurations for an email address.
-
SearchEmailAddresses: Find email addresses and their alias relationships across an instance.
-
CreateEmailAddress: Create new email addresses that can participate in alias relationships.
-
DeleteEmailAddress: Remove email addresses (automatically removes any alias relationships).
-
UpdateEmailAddressMetadata: Modify email address properties (does not affect alias relationships).
Method Signature¶
METHODS /AWS1/IF_CNT~DISASSOCEMAILADDRESSALIAS
IMPORTING
!IV_EMAILADDRESSID TYPE /AWS1/CNTEMAILADDRESSID OPTIONAL
!IV_INSTANCEID TYPE /AWS1/CNTINSTANCEID OPTIONAL
!IO_ALIASCONFIGURATION TYPE REF TO /AWS1/CL_CNTALIASCONFIGURATION OPTIONAL
!IV_CLIENTTOKEN TYPE /AWS1/CNTCLIENTTOKEN OPTIONAL
RETURNING
VALUE(OO_OUTPUT) TYPE REF TO /aws1/cl_cntdisemailaddressa01
RAISING
/AWS1/CX_CNTACCESSDENIEDEX
/AWS1/CX_CNTINTERNALSERVICEEX
/AWS1/CX_CNTINVALIDPARAMETEREX
/AWS1/CX_CNTINVALIDREQUESTEX
/AWS1/CX_CNTRESOURCECONFLICTEX
/AWS1/CX_CNTRESOURCENOTFOUNDEX
/AWS1/CX_CNTTHROTTLINGEX
/AWS1/CX_CNTCLIENTEXC
/AWS1/CX_CNTSERVEREXC
/AWS1/CX_RT_TECHNICAL_GENERIC
/AWS1/CX_RT_SERVICE_GENERIC.
IMPORTING¶
Required arguments:¶
iv_emailaddressid TYPE /AWS1/CNTEMAILADDRESSID /AWS1/CNTEMAILADDRESSID¶
The identifier of the email address.
iv_instanceid TYPE /AWS1/CNTINSTANCEID /AWS1/CNTINSTANCEID¶
The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
io_aliasconfiguration TYPE REF TO /AWS1/CL_CNTALIASCONFIGURATION /AWS1/CL_CNTALIASCONFIGURATION¶
Configuration object that specifies which alias relationship to remove. The alias association must currently exist between the primary email address and the specified alias email address.
Optional arguments:¶
iv_clienttoken TYPE /AWS1/CNTCLIENTTOKEN /AWS1/CNTCLIENTTOKEN¶
A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If not provided, the Amazon Web Services SDK populates this field. For more information about idempotency, see Making retries safe with idempotent APIs.
RETURNING¶
oo_output TYPE REF TO /aws1/cl_cntdisemailaddressa01 /AWS1/CL_CNTDISEMAILADDRESSA01¶
Domain /AWS1/RT_ACCOUNT_ID Primitive Type NUMC
Examples¶
Syntax Example¶
This is an example of the syntax for calling the method. It includes every possible argument and initializes every possible value. The data provided is not necessarily semantically accurate (for example the value "string" may be provided for something that is intended to be an instance ID, or in some cases two arguments may be mutually exclusive). The syntax shows the ABAP syntax for creating the various data structures.
DATA(lo_result) = lo_client->disassocemailaddressalias(
io_aliasconfiguration = new /aws1/cl_cntaliasconfiguration( |string| )
iv_clienttoken = |string|
iv_emailaddressid = |string|
iv_instanceid = |string|
).
This is an example of reading all possible response values
lo_result = lo_result.
IF lo_result IS NOT INITIAL.
ENDIF.