/AWS1/IF_SE2=>CREATEDEDICATEDIPPOOL()¶
About CreateDedicatedIpPool¶
Create a new pool of dedicated IP addresses. A pool can include one or more dedicated IP addresses that are associated with your Amazon Web Services account. You can associate a pool with a configuration set. When you send an email that uses that configuration set, the message is sent from one of the addresses in the associated pool.
Method Signature¶
METHODS /AWS1/IF_SE2~CREATEDEDICATEDIPPOOL
IMPORTING
!IV_POOLNAME TYPE /AWS1/SE2POOLNAME OPTIONAL
!IT_TAGS TYPE /AWS1/CL_SE2TAG=>TT_TAGLIST OPTIONAL
!IV_SCALINGMODE TYPE /AWS1/SE2SCALINGMODE OPTIONAL
RETURNING
VALUE(OO_OUTPUT) TYPE REF TO /aws1/cl_se2crededicatedippo01
RAISING
/AWS1/CX_SE2ALREADYEXISTSEX
/AWS1/CX_SE2BADREQUESTEX
/AWS1/CX_SE2CONCURRENTMODEX
/AWS1/CX_SE2LIMITEXCEEDEDEX
/AWS1/CX_SE2TOOMANYREQUESTSEX
/AWS1/CX_SE2CLIENTEXC
/AWS1/CX_SE2SERVEREXC
/AWS1/CX_RT_TECHNICAL_GENERIC
/AWS1/CX_RT_SERVICE_GENERIC.
IMPORTING¶
Required arguments:¶
iv_poolname TYPE /AWS1/SE2POOLNAME /AWS1/SE2POOLNAME¶
The name of the dedicated IP pool.
Optional arguments:¶
it_tags TYPE /AWS1/CL_SE2TAG=>TT_TAGLIST TT_TAGLIST¶
An object that defines the tags (keys and values) that you want to associate with the pool.
iv_scalingmode TYPE /AWS1/SE2SCALINGMODE /AWS1/SE2SCALINGMODE¶
The type of scaling mode.
RETURNING¶
oo_output TYPE REF TO /aws1/cl_se2crededicatedippo01 /AWS1/CL_SE2CREDEDICATEDIPPO01¶
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->creatededicatedippool(
it_tags = VALUE /aws1/cl_se2tag=>tt_taglist(
(
new /aws1/cl_se2tag(
iv_key = |string|
iv_value = |string|
)
)
)
iv_poolname = |string|
iv_scalingmode = |string|
).
This is an example of reading all possible response values
lo_result = lo_result.
IF lo_result IS NOT INITIAL.
ENDIF.