/AWS1/IF_CWO=>STARTTELEMETRYEVALFORORG()¶
About StartTelemetryEvaluationForOrganization¶
This actions begins onboarding the organization and all member accounts to the telemetry config feature.
Method Signature¶
METHODS /AWS1/IF_CWO~STARTTELEMETRYEVALFORORG
IMPORTING
!IT_REGIONS TYPE /AWS1/CL_CWOREGIONS_W=>TT_REGIONS OPTIONAL
!IV_ALLREGIONS TYPE /AWS1/CWOALLREGIONS OPTIONAL
RAISING
/AWS1/CX_CWOACCESSDENIEDEX
/AWS1/CX_CWOINTERNALSERVEREX
/AWS1/CX_CWOTOOMANYREQUESTSEX
/AWS1/CX_CWOVALIDATIONEX
/AWS1/CX_CWOCLIENTEXC
/AWS1/CX_CWOSERVEREXC
/AWS1/CX_RT_TECHNICAL_GENERIC
/AWS1/CX_RT_SERVICE_GENERIC.
IMPORTING¶
Optional arguments:¶
it_regions TYPE /AWS1/CL_CWOREGIONS_W=>TT_REGIONS TT_REGIONS¶
An optional list of Amazon Web Services Regions to include in multi-region telemetry evaluation for the organization. The current region is always implicitly included and must not be specified in this list. When provided, telemetry evaluation starts in the current region and propagates to all specified regions for the organization. Mutually exclusive with
AllRegions. If neitherRegionsnorAllRegionsis provided, the operation applies only to the current region.
iv_allregions TYPE /AWS1/CWOALLREGIONS /AWS1/CWOALLREGIONS¶
If set to
true, telemetry evaluation for the organization starts in all Amazon Web Services Regions where Amazon CloudWatch Observability Admin is available in the current partition. The current region becomes the home region for managing multi-region evaluation for the organization. When new regions become available, evaluation automatically expands to include them. Mutually exclusive withRegions.
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.
lo_client->starttelemetryevalfororg(
it_regions = VALUE /aws1/cl_cworegions_w=>tt_regions(
( new /aws1/cl_cworegions_w( |string| ) )
)
iv_allregions = ABAP_TRUE
).