@aws-sdk/client-observabilityadmin 3.887.0 → 3.889.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (48) hide show
  1. package/README.md +40 -0
  2. package/dist-cjs/ObservabilityAdmin.js +10 -0
  3. package/dist-cjs/commands/CreateCentralizationRuleForOrganizationCommand.js +26 -0
  4. package/dist-cjs/commands/DeleteCentralizationRuleForOrganizationCommand.js +26 -0
  5. package/dist-cjs/commands/GetCentralizationRuleForOrganizationCommand.js +26 -0
  6. package/dist-cjs/commands/ListCentralizationRulesForOrganizationCommand.js +26 -0
  7. package/dist-cjs/commands/UpdateCentralizationRuleForOrganizationCommand.js +26 -0
  8. package/dist-cjs/commands/index.js +5 -0
  9. package/dist-cjs/models/models_0.js +36 -14
  10. package/dist-cjs/pagination/ListCentralizationRulesForOrganizationPaginator.js +7 -0
  11. package/dist-cjs/pagination/index.js +1 -0
  12. package/dist-cjs/protocols/Aws_restJson1.js +158 -1
  13. package/dist-es/ObservabilityAdmin.js +10 -0
  14. package/dist-es/commands/CreateCentralizationRuleForOrganizationCommand.js +22 -0
  15. package/dist-es/commands/DeleteCentralizationRuleForOrganizationCommand.js +22 -0
  16. package/dist-es/commands/GetCentralizationRuleForOrganizationCommand.js +22 -0
  17. package/dist-es/commands/ListCentralizationRulesForOrganizationCommand.js +22 -0
  18. package/dist-es/commands/UpdateCentralizationRuleForOrganizationCommand.js +22 -0
  19. package/dist-es/commands/index.js +5 -0
  20. package/dist-es/models/models_0.js +35 -13
  21. package/dist-es/pagination/ListCentralizationRulesForOrganizationPaginator.js +4 -0
  22. package/dist-es/pagination/index.js +1 -0
  23. package/dist-es/protocols/Aws_restJson1.js +146 -0
  24. package/dist-types/ObservabilityAdmin.d.ts +36 -0
  25. package/dist-types/ObservabilityAdminClient.d.ts +7 -2
  26. package/dist-types/commands/CreateCentralizationRuleForOrganizationCommand.d.ts +132 -0
  27. package/dist-types/commands/DeleteCentralizationRuleForOrganizationCommand.d.ts +95 -0
  28. package/dist-types/commands/GetCentralizationRuleForOrganizationCommand.d.ts +131 -0
  29. package/dist-types/commands/ListCentralizationRulesForOrganizationCommand.d.ts +109 -0
  30. package/dist-types/commands/UpdateCentralizationRuleForOrganizationCommand.d.ts +129 -0
  31. package/dist-types/commands/index.d.ts +5 -0
  32. package/dist-types/models/models_0.d.ts +488 -78
  33. package/dist-types/pagination/ListCentralizationRulesForOrganizationPaginator.d.ts +7 -0
  34. package/dist-types/pagination/index.d.ts +1 -0
  35. package/dist-types/protocols/Aws_restJson1.d.ts +45 -0
  36. package/dist-types/ts3.4/ObservabilityAdmin.d.ts +116 -0
  37. package/dist-types/ts3.4/ObservabilityAdminClient.d.ts +30 -0
  38. package/dist-types/ts3.4/commands/CreateCentralizationRuleForOrganizationCommand.d.ts +51 -0
  39. package/dist-types/ts3.4/commands/DeleteCentralizationRuleForOrganizationCommand.d.ts +47 -0
  40. package/dist-types/ts3.4/commands/GetCentralizationRuleForOrganizationCommand.d.ts +51 -0
  41. package/dist-types/ts3.4/commands/ListCentralizationRulesForOrganizationCommand.d.ts +51 -0
  42. package/dist-types/ts3.4/commands/UpdateCentralizationRuleForOrganizationCommand.d.ts +51 -0
  43. package/dist-types/ts3.4/commands/index.d.ts +5 -0
  44. package/dist-types/ts3.4/models/models_0.d.ts +153 -35
  45. package/dist-types/ts3.4/pagination/ListCentralizationRulesForOrganizationPaginator.d.ts +11 -0
  46. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  47. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +60 -0
  48. package/package.json +5 -5
@@ -22,6 +22,251 @@ export declare class AccessDeniedException extends __BaseException {
22
22
  */
23
23
  constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
24
24
  }
25
+ /**
26
+ * @public
27
+ * @enum
28
+ */
29
+ export declare const CentralizationFailureReason: {
30
+ readonly DESTINATION_ACCOUNT_NOT_IN_ORGANIZATION: "DESTINATION_ACCOUNT_NOT_IN_ORGANIZATION";
31
+ readonly INTERNAL_SERVER_ERROR: "INTERNAL_SERVER_ERROR";
32
+ readonly TRUSTED_ACCESS_NOT_ENABLED: "TRUSTED_ACCESS_NOT_ENABLED";
33
+ };
34
+ /**
35
+ * @public
36
+ */
37
+ export type CentralizationFailureReason = (typeof CentralizationFailureReason)[keyof typeof CentralizationFailureReason];
38
+ /**
39
+ * <p>Configuration for backing up centralized log data to a secondary region.</p>
40
+ * @public
41
+ */
42
+ export interface LogsBackupConfiguration {
43
+ /**
44
+ * <p>Logs specific backup destination region within the primary destination account to which log data should be centralized.</p>
45
+ * @public
46
+ */
47
+ Region: string | undefined;
48
+ /**
49
+ * <p>KMS Key arn belonging to the primary destination account and backup region, to encrypt newly created central log groups in the backup destination.</p>
50
+ * @public
51
+ */
52
+ KmsKeyArn?: string | undefined;
53
+ }
54
+ /**
55
+ * @public
56
+ * @enum
57
+ */
58
+ export declare const EncryptionConflictResolutionStrategy: {
59
+ readonly ALLOW: "ALLOW";
60
+ readonly SKIP: "SKIP";
61
+ };
62
+ /**
63
+ * @public
64
+ */
65
+ export type EncryptionConflictResolutionStrategy = (typeof EncryptionConflictResolutionStrategy)[keyof typeof EncryptionConflictResolutionStrategy];
66
+ /**
67
+ * @public
68
+ * @enum
69
+ */
70
+ export declare const EncryptionStrategy: {
71
+ readonly AWS_OWNED: "AWS_OWNED";
72
+ readonly CUSTOMER_MANAGED: "CUSTOMER_MANAGED";
73
+ };
74
+ /**
75
+ * @public
76
+ */
77
+ export type EncryptionStrategy = (typeof EncryptionStrategy)[keyof typeof EncryptionStrategy];
78
+ /**
79
+ * <p>Configuration for encrypting centralized log groups. This configuration is only applied to destination log groups for which the corresponding source log groups are encrypted using Customer Managed KMS Keys.</p>
80
+ * @public
81
+ */
82
+ export interface LogsEncryptionConfiguration {
83
+ /**
84
+ * <p>Configuration that determines the encryption strategy of the destination log groups. CUSTOMER_MANAGED uses the configured KmsKeyArn to encrypt newly created destination log groups.</p>
85
+ * @public
86
+ */
87
+ EncryptionStrategy: EncryptionStrategy | undefined;
88
+ /**
89
+ * <p>KMS Key arn belonging to the primary destination account and region, to encrypt newly created central log groups in the primary destination.</p>
90
+ * @public
91
+ */
92
+ KmsKeyArn?: string | undefined;
93
+ /**
94
+ * <p>Conflict resolution strategy for centralization if the encryption strategy is set to CUSTOMER_MANAGED and the destination log group is encrypted with an AWS_OWNED KMS Key. ALLOW lets centralization go through while SKIP prevents centralization into the destination log group.</p>
95
+ * @public
96
+ */
97
+ EncryptionConflictResolutionStrategy?: EncryptionConflictResolutionStrategy | undefined;
98
+ }
99
+ /**
100
+ * <p>Configuration for centralization destination log groups, including encryption and backup settings.</p>
101
+ * @public
102
+ */
103
+ export interface DestinationLogsConfiguration {
104
+ /**
105
+ * <p>The encryption configuration for centralization destination log groups.</p>
106
+ * @public
107
+ */
108
+ LogsEncryptionConfiguration?: LogsEncryptionConfiguration | undefined;
109
+ /**
110
+ * <p>Configuration defining the backup region and an optional KMS key for the backup destination.</p>
111
+ * @public
112
+ */
113
+ BackupConfiguration?: LogsBackupConfiguration | undefined;
114
+ }
115
+ /**
116
+ * <p>Configuration specifying the primary destination for centralized telemetry data.</p>
117
+ * @public
118
+ */
119
+ export interface CentralizationRuleDestination {
120
+ /**
121
+ * <p>The primary destination region to which telemetry data should be centralized.</p>
122
+ * @public
123
+ */
124
+ Region: string | undefined;
125
+ /**
126
+ * <p>The destination account (within the organization) to which the telemetry data should be centralized.</p>
127
+ * @public
128
+ */
129
+ Account?: string | undefined;
130
+ /**
131
+ * <p>Log specific configuration for centralization destination log groups.</p>
132
+ * @public
133
+ */
134
+ DestinationLogsConfiguration?: DestinationLogsConfiguration | undefined;
135
+ }
136
+ /**
137
+ * @public
138
+ * @enum
139
+ */
140
+ export declare const EncryptedLogGroupStrategy: {
141
+ readonly ALLOW: "ALLOW";
142
+ readonly SKIP: "SKIP";
143
+ };
144
+ /**
145
+ * @public
146
+ */
147
+ export type EncryptedLogGroupStrategy = (typeof EncryptedLogGroupStrategy)[keyof typeof EncryptedLogGroupStrategy];
148
+ /**
149
+ * <p>Configuration for selecting and handling source log groups for centralization.</p>
150
+ * @public
151
+ */
152
+ export interface SourceLogsConfiguration {
153
+ /**
154
+ * <p>The selection criteria that specifies which source log groups to centralize. The selection criteria uses the same format as OAM link filters.</p>
155
+ * @public
156
+ */
157
+ LogGroupSelectionCriteria: string | undefined;
158
+ /**
159
+ * <p>A strategy determining whether to centralize source log groups that are encrypted with customer managed KMS keys (CMK). ALLOW will consider CMK encrypted source log groups for centralization while SKIP will skip CMK encrypted source log groups from centralization.</p>
160
+ * @public
161
+ */
162
+ EncryptedLogGroupStrategy: EncryptedLogGroupStrategy | undefined;
163
+ }
164
+ /**
165
+ * <p>Configuration specifying the source of telemetry data to be centralized.</p>
166
+ * @public
167
+ */
168
+ export interface CentralizationRuleSource {
169
+ /**
170
+ * <p>The list of source regions from which telemetry data should be centralized.</p>
171
+ * @public
172
+ */
173
+ Regions: string[] | undefined;
174
+ /**
175
+ * <p>The organizational scope from which telemetry data should be centralized, specified using organization id, accounts or organizational unit ids.</p>
176
+ * @public
177
+ */
178
+ Scope?: string | undefined;
179
+ /**
180
+ * <p>Log specific configuration for centralization source log groups.</p>
181
+ * @public
182
+ */
183
+ SourceLogsConfiguration?: SourceLogsConfiguration | undefined;
184
+ }
185
+ /**
186
+ * <p>Defines how telemetry data should be centralized across an Amazon Web Services Organization, including source and destination configurations.</p>
187
+ * @public
188
+ */
189
+ export interface CentralizationRule {
190
+ /**
191
+ * <p>Configuration determining the source of the telemetry data to be centralized.</p>
192
+ * @public
193
+ */
194
+ Source: CentralizationRuleSource | undefined;
195
+ /**
196
+ * <p>Configuration determining where the telemetry data should be centralized, backed up, as well as encryption configuration for the primary and backup destinations.</p>
197
+ * @public
198
+ */
199
+ Destination: CentralizationRuleDestination | undefined;
200
+ }
201
+ /**
202
+ * @public
203
+ * @enum
204
+ */
205
+ export declare const RuleHealth: {
206
+ readonly HEALTHY: "Healthy";
207
+ readonly PROVISIONING: "Provisioning";
208
+ readonly UNHEALTHY: "Unhealthy";
209
+ };
210
+ /**
211
+ * @public
212
+ */
213
+ export type RuleHealth = (typeof RuleHealth)[keyof typeof RuleHealth];
214
+ /**
215
+ * <p>A summary of a centralization rule's key properties and status.</p>
216
+ * @public
217
+ */
218
+ export interface CentralizationRuleSummary {
219
+ /**
220
+ * <p>The name of the organization centralization rule.</p>
221
+ * @public
222
+ */
223
+ RuleName?: string | undefined;
224
+ /**
225
+ * <p>The Amazon Resource Name (ARN) of the organization centralization rule.</p>
226
+ * @public
227
+ */
228
+ RuleArn?: string | undefined;
229
+ /**
230
+ * <p>The Amazon Web Services Account that created the organization centralization rule.</p>
231
+ * @public
232
+ */
233
+ CreatorAccountId?: string | undefined;
234
+ /**
235
+ * <p>The timestamp when the organization centralization rule was created.</p>
236
+ * @public
237
+ */
238
+ CreatedTimeStamp?: number | undefined;
239
+ /**
240
+ * <p>The Amazon Web Services region where the organization centralization rule was created.</p>
241
+ * @public
242
+ */
243
+ CreatedRegion?: string | undefined;
244
+ /**
245
+ * <p>The timestamp when the organization centralization rule was last updated.</p>
246
+ * @public
247
+ */
248
+ LastUpdateTimeStamp?: number | undefined;
249
+ /**
250
+ * <p>The health status of the organization centralization rule.</p>
251
+ * @public
252
+ */
253
+ RuleHealth?: RuleHealth | undefined;
254
+ /**
255
+ * <p>The reason why an organization centralization rule is marked UNHEALTHY.</p>
256
+ * @public
257
+ */
258
+ FailureReason?: CentralizationFailureReason | undefined;
259
+ /**
260
+ * <p>The primary destination account of the organization centralization rule.</p>
261
+ * @public
262
+ */
263
+ DestinationAccountId?: string | undefined;
264
+ /**
265
+ * <p>The primary destination region of the organization centralization rule.</p>
266
+ * @public
267
+ */
268
+ DestinationRegion?: string | undefined;
269
+ }
25
270
  /**
26
271
  * <p>
27
272
  * The requested operation conflicts with the current state of the specified resource or with another request.
@@ -37,6 +282,110 @@ export declare class ConflictException extends __BaseException {
37
282
  */
38
283
  constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
39
284
  }
285
+ /**
286
+ * @public
287
+ */
288
+ export interface CreateCentralizationRuleForOrganizationInput {
289
+ /**
290
+ * <p>A unique name for the organization-wide centralization rule being created.</p>
291
+ * @public
292
+ */
293
+ RuleName: string | undefined;
294
+ /**
295
+ * <p>The configuration details for the organization-wide centralization rule, including the source configuration and the destination configuration to centralize telemetry data across the organization.</p>
296
+ * @public
297
+ */
298
+ Rule: CentralizationRule | undefined;
299
+ /**
300
+ * <p>The key-value pairs to associate with the organization telemetry rule resource for categorization and management purposes.</p>
301
+ * @public
302
+ */
303
+ Tags?: Record<string, string> | undefined;
304
+ }
305
+ /**
306
+ * @public
307
+ */
308
+ export interface CreateCentralizationRuleForOrganizationOutput {
309
+ /**
310
+ * <p>The Amazon Resource Name (ARN) of the created organization centralization rule.</p>
311
+ * @public
312
+ */
313
+ RuleArn?: string | undefined;
314
+ }
315
+ /**
316
+ * <p>
317
+ * Indicates the request has failed to process because of an unknown server error, exception, or failure.
318
+ * </p>
319
+ * @public
320
+ */
321
+ export declare class InternalServerException extends __BaseException {
322
+ readonly name: "InternalServerException";
323
+ readonly $fault: "server";
324
+ Message?: string | undefined;
325
+ /**
326
+ * <p>
327
+ * The name of the exception.
328
+ * </p>
329
+ * @public
330
+ */
331
+ amznErrorType?: string | undefined;
332
+ /**
333
+ * @internal
334
+ */
335
+ constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
336
+ }
337
+ /**
338
+ * <p>
339
+ * The requested operation would exceed the allowed quota for the specified resource type.
340
+ * </p>
341
+ * @public
342
+ */
343
+ export declare class ServiceQuotaExceededException extends __BaseException {
344
+ readonly name: "ServiceQuotaExceededException";
345
+ readonly $fault: "client";
346
+ Message?: string | undefined;
347
+ /**
348
+ * <p>
349
+ * The name of the exception.
350
+ * </p>
351
+ * @public
352
+ */
353
+ amznErrorType?: string | undefined;
354
+ /**
355
+ * @internal
356
+ */
357
+ constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
358
+ }
359
+ /**
360
+ * <p>
361
+ * The request throughput limit was exceeded.
362
+ * </p>
363
+ * @public
364
+ */
365
+ export declare class TooManyRequestsException extends __BaseException {
366
+ readonly name: "TooManyRequestsException";
367
+ readonly $fault: "client";
368
+ Message?: string | undefined;
369
+ /**
370
+ * @internal
371
+ */
372
+ constructor(opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>);
373
+ }
374
+ /**
375
+ * <p>
376
+ * Indicates input validation failed. Check your request parameters and retry the request.
377
+ * </p>
378
+ * @public
379
+ */
380
+ export declare class ValidationException extends __BaseException {
381
+ readonly name: "ValidationException";
382
+ readonly $fault: "client";
383
+ Message?: string | undefined;
384
+ /**
385
+ * @internal
386
+ */
387
+ constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
388
+ }
40
389
  /**
41
390
  * @public
42
391
  * @enum
@@ -220,80 +569,6 @@ export interface CreateTelemetryRuleOutput {
220
569
  */
221
570
  RuleArn?: string | undefined;
222
571
  }
223
- /**
224
- * <p>
225
- * Indicates the request has failed to process because of an unknown server error, exception, or failure.
226
- * </p>
227
- * @public
228
- */
229
- export declare class InternalServerException extends __BaseException {
230
- readonly name: "InternalServerException";
231
- readonly $fault: "server";
232
- Message?: string | undefined;
233
- /**
234
- * <p>
235
- * The name of the exception.
236
- * </p>
237
- * @public
238
- */
239
- amznErrorType?: string | undefined;
240
- /**
241
- * @internal
242
- */
243
- constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
244
- }
245
- /**
246
- * <p>
247
- * The requested operation would exceed the allowed quota for the specified resource type.
248
- * </p>
249
- * @public
250
- */
251
- export declare class ServiceQuotaExceededException extends __BaseException {
252
- readonly name: "ServiceQuotaExceededException";
253
- readonly $fault: "client";
254
- Message?: string | undefined;
255
- /**
256
- * <p>
257
- * The name of the exception.
258
- * </p>
259
- * @public
260
- */
261
- amznErrorType?: string | undefined;
262
- /**
263
- * @internal
264
- */
265
- constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
266
- }
267
- /**
268
- * <p>
269
- * The request throughput limit was exceeded.
270
- * </p>
271
- * @public
272
- */
273
- export declare class TooManyRequestsException extends __BaseException {
274
- readonly name: "TooManyRequestsException";
275
- readonly $fault: "client";
276
- Message?: string | undefined;
277
- /**
278
- * @internal
279
- */
280
- constructor(opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>);
281
- }
282
- /**
283
- * <p>
284
- * Indicates input validation failed. Check your request parameters and retry the request.
285
- * </p>
286
- * @public
287
- */
288
- export declare class ValidationException extends __BaseException {
289
- readonly name: "ValidationException";
290
- readonly $fault: "client";
291
- Message?: string | undefined;
292
- /**
293
- * @internal
294
- */
295
- constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
296
- }
297
572
  /**
298
573
  * @public
299
574
  */
@@ -335,11 +610,9 @@ export interface CreateTelemetryRuleForOrganizationOutput {
335
610
  /**
336
611
  * @public
337
612
  */
338
- export interface DeleteTelemetryRuleInput {
613
+ export interface DeleteCentralizationRuleForOrganizationInput {
339
614
  /**
340
- * <p>
341
- * The identifier (name or ARN) of the telemetry rule to delete.
342
- * </p>
615
+ * <p>The identifier (name or ARN) of the organization centralization rule to delete.</p>
343
616
  * @public
344
617
  */
345
618
  RuleIdentifier: string | undefined;
@@ -359,6 +632,18 @@ export declare class ResourceNotFoundException extends __BaseException {
359
632
  */
360
633
  constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
361
634
  }
635
+ /**
636
+ * @public
637
+ */
638
+ export interface DeleteTelemetryRuleInput {
639
+ /**
640
+ * <p>
641
+ * The identifier (name or ARN) of the telemetry rule to delete.
642
+ * </p>
643
+ * @public
644
+ */
645
+ RuleIdentifier: string | undefined;
646
+ }
362
647
  /**
363
648
  * @public
364
649
  */
@@ -371,6 +656,66 @@ export interface DeleteTelemetryRuleForOrganizationInput {
371
656
  */
372
657
  RuleIdentifier: string | undefined;
373
658
  }
659
+ /**
660
+ * @public
661
+ */
662
+ export interface GetCentralizationRuleForOrganizationInput {
663
+ /**
664
+ * <p>The identifier (name or ARN) of the organization centralization rule to retrieve.</p>
665
+ * @public
666
+ */
667
+ RuleIdentifier: string | undefined;
668
+ }
669
+ /**
670
+ * @public
671
+ */
672
+ export interface GetCentralizationRuleForOrganizationOutput {
673
+ /**
674
+ * <p>The name of the organization centralization rule.</p>
675
+ * @public
676
+ */
677
+ RuleName?: string | undefined;
678
+ /**
679
+ * <p>The Amazon Resource Name (ARN) of the organization centralization rule.</p>
680
+ * @public
681
+ */
682
+ RuleArn?: string | undefined;
683
+ /**
684
+ * <p>The Amazon Web Services Account that created the organization centralization rule.</p>
685
+ * @public
686
+ */
687
+ CreatorAccountId?: string | undefined;
688
+ /**
689
+ * <p>The timestamp when the organization centralization rule was created.</p>
690
+ * @public
691
+ */
692
+ CreatedTimeStamp?: number | undefined;
693
+ /**
694
+ * <p>The Amazon Web Services region where the organization centralization rule was created.</p>
695
+ * @public
696
+ */
697
+ CreatedRegion?: string | undefined;
698
+ /**
699
+ * <p>The timestamp when the organization centralization rule was last updated.</p>
700
+ * @public
701
+ */
702
+ LastUpdateTimeStamp?: number | undefined;
703
+ /**
704
+ * <p>The health status of the organization centralization rule.</p>
705
+ * @public
706
+ */
707
+ RuleHealth?: RuleHealth | undefined;
708
+ /**
709
+ * <p>The reason why an organization centralization rule is marked UNHEALTHY.</p>
710
+ * @public
711
+ */
712
+ FailureReason?: CentralizationFailureReason | undefined;
713
+ /**
714
+ * <p>The configuration details for the organization centralization rule.</p>
715
+ * @public
716
+ */
717
+ CentralizationRule?: CentralizationRule | undefined;
718
+ }
374
719
  /**
375
720
  * @public
376
721
  * @enum
@@ -530,6 +875,46 @@ export interface GetTelemetryRuleForOrganizationOutput {
530
875
  */
531
876
  TelemetryRule?: TelemetryRule | undefined;
532
877
  }
878
+ /**
879
+ * @public
880
+ */
881
+ export interface ListCentralizationRulesForOrganizationInput {
882
+ /**
883
+ * <p>A string to filter organization centralization rules whose names begin with the specified prefix.</p>
884
+ * @public
885
+ */
886
+ RuleNamePrefix?: string | undefined;
887
+ /**
888
+ * <p>A flag determining whether to return organization centralization rules from all regions or only the current region.</p>
889
+ * @public
890
+ */
891
+ AllRegions?: boolean | undefined;
892
+ /**
893
+ * <p>The maximum number of organization centralization rules to return in a single call.</p>
894
+ * @public
895
+ */
896
+ MaxResults?: number | undefined;
897
+ /**
898
+ * <p>The token for the next set of results. A previous call generates this token.</p>
899
+ * @public
900
+ */
901
+ NextToken?: string | undefined;
902
+ }
903
+ /**
904
+ * @public
905
+ */
906
+ export interface ListCentralizationRulesForOrganizationOutput {
907
+ /**
908
+ * <p>A list of centralization rule summaries.</p>
909
+ * @public
910
+ */
911
+ CentralizationRuleSummaries?: CentralizationRuleSummary[] | undefined;
912
+ /**
913
+ * <p>A token to resume pagination of results.</p>
914
+ * @public
915
+ */
916
+ NextToken?: string | undefined;
917
+ }
533
918
  /**
534
919
  * @public
535
920
  * @enum
@@ -948,6 +1333,31 @@ export interface UntagResourceInput {
948
1333
  */
949
1334
  TagKeys: string[] | undefined;
950
1335
  }
1336
+ /**
1337
+ * @public
1338
+ */
1339
+ export interface UpdateCentralizationRuleForOrganizationInput {
1340
+ /**
1341
+ * <p>The identifier (name or ARN) of the organization centralization rule to update.</p>
1342
+ * @public
1343
+ */
1344
+ RuleIdentifier: string | undefined;
1345
+ /**
1346
+ * <p>The configuration details for the organization-wide centralization rule, including the source configuration and the destination configuration to centralize telemetry data across the organization.</p>
1347
+ * @public
1348
+ */
1349
+ Rule: CentralizationRule | undefined;
1350
+ }
1351
+ /**
1352
+ * @public
1353
+ */
1354
+ export interface UpdateCentralizationRuleForOrganizationOutput {
1355
+ /**
1356
+ * <p>The Amazon Resource Name (ARN) of the updated organization centralization rule.</p>
1357
+ * @public
1358
+ */
1359
+ RuleArn?: string | undefined;
1360
+ }
951
1361
  /**
952
1362
  * @public
953
1363
  */
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListCentralizationRulesForOrganizationCommandInput, ListCentralizationRulesForOrganizationCommandOutput } from "../commands/ListCentralizationRulesForOrganizationCommand";
3
+ import { ObservabilityAdminPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListCentralizationRulesForOrganization: (config: ObservabilityAdminPaginationConfiguration, input: ListCentralizationRulesForOrganizationCommandInput, ...rest: any[]) => Paginator<ListCentralizationRulesForOrganizationCommandOutput>;
@@ -1,4 +1,5 @@
1
1
  export * from "./Interfaces";
2
+ export * from "./ListCentralizationRulesForOrganizationPaginator";
2
3
  export * from "./ListResourceTelemetryForOrganizationPaginator";
3
4
  export * from "./ListResourceTelemetryPaginator";
4
5
  export * from "./ListTelemetryRulesForOrganizationPaginator";