@aws-sdk/client-config-service 3.687.0 → 3.692.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.
@@ -16,12 +16,12 @@ export interface AccountAggregationSource {
16
16
  * regions.</p>
17
17
  * @public
18
18
  */
19
- AllAwsRegions?: boolean;
19
+ AllAwsRegions?: boolean | undefined;
20
20
  /**
21
21
  * <p>The source regions being aggregated.</p>
22
22
  * @public
23
23
  */
24
- AwsRegions?: string[];
24
+ AwsRegions?: string[] | undefined;
25
25
  }
26
26
  /**
27
27
  * <p>The number of Amazon Web Services resources or Config rules responsible for
@@ -35,12 +35,12 @@ export interface ComplianceContributorCount {
35
35
  * the current compliance of the item.</p>
36
36
  * @public
37
37
  */
38
- CappedCount?: number;
38
+ CappedCount?: number | undefined;
39
39
  /**
40
40
  * <p>Indicates whether the maximum count is reached.</p>
41
41
  * @public
42
42
  */
43
- CapExceeded?: boolean;
43
+ CapExceeded?: boolean | undefined;
44
44
  }
45
45
  /**
46
46
  * @public
@@ -80,14 +80,14 @@ export interface Compliance {
80
80
  * <code>Compliance</code> data type.</p>
81
81
  * @public
82
82
  */
83
- ComplianceType?: ComplianceType;
83
+ ComplianceType?: ComplianceType | undefined;
84
84
  /**
85
85
  * <p>The number of Amazon Web Services resources or Config rules that cause a
86
86
  * result of <code>NON_COMPLIANT</code>, up to a maximum
87
87
  * number.</p>
88
88
  * @public
89
89
  */
90
- ComplianceContributorCount?: ComplianceContributorCount;
90
+ ComplianceContributorCount?: ComplianceContributorCount | undefined;
91
91
  }
92
92
  /**
93
93
  * <p>Indicates whether an Config rule is compliant based on
@@ -102,24 +102,24 @@ export interface AggregateComplianceByConfigRule {
102
102
  * <p>The name of the Config rule.</p>
103
103
  * @public
104
104
  */
105
- ConfigRuleName?: string;
105
+ ConfigRuleName?: string | undefined;
106
106
  /**
107
107
  * <p>Indicates whether an Amazon Web Services resource or Config rule is
108
108
  * compliant and provides the number of contributors that affect the
109
109
  * compliance.</p>
110
110
  * @public
111
111
  */
112
- Compliance?: Compliance;
112
+ Compliance?: Compliance | undefined;
113
113
  /**
114
114
  * <p>The 12-digit account ID of the source account.</p>
115
115
  * @public
116
116
  */
117
- AccountId?: string;
117
+ AccountId?: string | undefined;
118
118
  /**
119
119
  * <p>The source region from where the data is aggregated.</p>
120
120
  * @public
121
121
  */
122
- AwsRegion?: string;
122
+ AwsRegion?: string | undefined;
123
123
  }
124
124
  /**
125
125
  * @public
@@ -147,22 +147,22 @@ export interface AggregateConformancePackCompliance {
147
147
  * <p>The compliance status of the conformance pack.</p>
148
148
  * @public
149
149
  */
150
- ComplianceType?: ConformancePackComplianceType;
150
+ ComplianceType?: ConformancePackComplianceType | undefined;
151
151
  /**
152
152
  * <p>The number of compliant Config Rules.</p>
153
153
  * @public
154
154
  */
155
- CompliantRuleCount?: number;
155
+ CompliantRuleCount?: number | undefined;
156
156
  /**
157
157
  * <p>The number of noncompliant Config Rules.</p>
158
158
  * @public
159
159
  */
160
- NonCompliantRuleCount?: number;
160
+ NonCompliantRuleCount?: number | undefined;
161
161
  /**
162
162
  * <p>Total number of compliant rules, noncompliant rules, and the rules that do not have any applicable resources to evaluate upon resulting in insufficient data.</p>
163
163
  * @public
164
164
  */
165
- TotalRuleCount?: number;
165
+ TotalRuleCount?: number | undefined;
166
166
  }
167
167
  /**
168
168
  * <p>Provides aggregate compliance of the conformance pack. Indicates whether a conformance pack is compliant based on the name of the conformance pack, account ID, and region.</p>
@@ -177,22 +177,22 @@ export interface AggregateComplianceByConformancePack {
177
177
  * <p>The name of the conformance pack.</p>
178
178
  * @public
179
179
  */
180
- ConformancePackName?: string;
180
+ ConformancePackName?: string | undefined;
181
181
  /**
182
182
  * <p>The compliance status of the conformance pack.</p>
183
183
  * @public
184
184
  */
185
- Compliance?: AggregateConformancePackCompliance;
185
+ Compliance?: AggregateConformancePackCompliance | undefined;
186
186
  /**
187
187
  * <p>The 12-digit Amazon Web Services account ID of the source account.</p>
188
188
  * @public
189
189
  */
190
- AccountId?: string;
190
+ AccountId?: string | undefined;
191
191
  /**
192
192
  * <p>The source Amazon Web Services Region from where the data is aggregated.</p>
193
193
  * @public
194
194
  */
195
- AwsRegion?: string;
195
+ AwsRegion?: string | undefined;
196
196
  }
197
197
  /**
198
198
  * <p>The number of Config rules or Amazon Web Services resources that are
@@ -206,20 +206,20 @@ export interface ComplianceSummary {
206
206
  * resources.</p>
207
207
  * @public
208
208
  */
209
- CompliantResourceCount?: ComplianceContributorCount;
209
+ CompliantResourceCount?: ComplianceContributorCount | undefined;
210
210
  /**
211
211
  * <p>The number of Config rules or Amazon Web Services resources that are
212
212
  * noncompliant, up to a maximum of 25 for rules and 100 for
213
213
  * resources.</p>
214
214
  * @public
215
215
  */
216
- NonCompliantResourceCount?: ComplianceContributorCount;
216
+ NonCompliantResourceCount?: ComplianceContributorCount | undefined;
217
217
  /**
218
218
  * <p>The time that Config created the compliance
219
219
  * summary.</p>
220
220
  * @public
221
221
  */
222
- ComplianceSummaryTimestamp?: Date;
222
+ ComplianceSummaryTimestamp?: Date | undefined;
223
223
  }
224
224
  /**
225
225
  * <p>Returns the number of compliant and noncompliant rules for one
@@ -232,13 +232,13 @@ export interface AggregateComplianceCount {
232
232
  * value.</p>
233
233
  * @public
234
234
  */
235
- GroupName?: string;
235
+ GroupName?: string | undefined;
236
236
  /**
237
237
  * <p>The number of compliant and noncompliant Config
238
238
  * rules.</p>
239
239
  * @public
240
240
  */
241
- ComplianceSummary?: ComplianceSummary;
241
+ ComplianceSummary?: ComplianceSummary | undefined;
242
242
  }
243
243
  /**
244
244
  * <p>The number of conformance packs that are compliant and noncompliant.</p>
@@ -249,12 +249,12 @@ export interface AggregateConformancePackComplianceCount {
249
249
  * <p>Number of compliant conformance packs.</p>
250
250
  * @public
251
251
  */
252
- CompliantConformancePackCount?: number;
252
+ CompliantConformancePackCount?: number | undefined;
253
253
  /**
254
254
  * <p>Number of noncompliant conformance packs.</p>
255
255
  * @public
256
256
  */
257
- NonCompliantConformancePackCount?: number;
257
+ NonCompliantConformancePackCount?: number | undefined;
258
258
  }
259
259
  /**
260
260
  * <p>Filters the conformance packs based on an account ID, region, compliance type, and the name of the conformance pack.</p>
@@ -265,22 +265,22 @@ export interface AggregateConformancePackComplianceFilters {
265
265
  * <p>The name of the conformance pack.</p>
266
266
  * @public
267
267
  */
268
- ConformancePackName?: string;
268
+ ConformancePackName?: string | undefined;
269
269
  /**
270
270
  * <p>The compliance status of the conformance pack.</p>
271
271
  * @public
272
272
  */
273
- ComplianceType?: ConformancePackComplianceType;
273
+ ComplianceType?: ConformancePackComplianceType | undefined;
274
274
  /**
275
275
  * <p>The 12-digit Amazon Web Services account ID of the source account.</p>
276
276
  * @public
277
277
  */
278
- AccountId?: string;
278
+ AccountId?: string | undefined;
279
279
  /**
280
280
  * <p>The source Amazon Web Services Region from where the data is aggregated.</p>
281
281
  * @public
282
282
  */
283
- AwsRegion?: string;
283
+ AwsRegion?: string | undefined;
284
284
  }
285
285
  /**
286
286
  * <p>Provides a summary of compliance based on either account ID or region. </p>
@@ -291,12 +291,12 @@ export interface AggregateConformancePackComplianceSummary {
291
291
  * <p>Returns an <code>AggregateConformancePackComplianceCount</code> object. </p>
292
292
  * @public
293
293
  */
294
- ComplianceSummary?: AggregateConformancePackComplianceCount;
294
+ ComplianceSummary?: AggregateConformancePackComplianceCount | undefined;
295
295
  /**
296
296
  * <p>Groups the result based on Amazon Web Services account ID or Amazon Web Services Region.</p>
297
297
  * @public
298
298
  */
299
- GroupName?: string;
299
+ GroupName?: string | undefined;
300
300
  }
301
301
  /**
302
302
  * <p>Filters the results based on account ID and region. </p>
@@ -307,12 +307,12 @@ export interface AggregateConformancePackComplianceSummaryFilters {
307
307
  * <p>The 12-digit Amazon Web Services account ID of the source account.</p>
308
308
  * @public
309
309
  */
310
- AccountId?: string;
310
+ AccountId?: string | undefined;
311
311
  /**
312
312
  * <p>The source Amazon Web Services Region from where the data is aggregated.</p>
313
313
  * @public
314
314
  */
315
- AwsRegion?: string;
315
+ AwsRegion?: string | undefined;
316
316
  }
317
317
  /**
318
318
  * @public
@@ -361,17 +361,17 @@ export interface AggregatedSourceStatus {
361
361
  * <p>The source account ID or an organization.</p>
362
362
  * @public
363
363
  */
364
- SourceId?: string;
364
+ SourceId?: string | undefined;
365
365
  /**
366
366
  * <p>The source account or an organization.</p>
367
367
  * @public
368
368
  */
369
- SourceType?: AggregatedSourceType;
369
+ SourceType?: AggregatedSourceType | undefined;
370
370
  /**
371
371
  * <p>The region authorized to collect aggregated data.</p>
372
372
  * @public
373
373
  */
374
- AwsRegion?: string;
374
+ AwsRegion?: string | undefined;
375
375
  /**
376
376
  * <p>Filters the last updated status type.</p>
377
377
  * <ul>
@@ -390,24 +390,24 @@ export interface AggregatedSourceStatus {
390
390
  * </ul>
391
391
  * @public
392
392
  */
393
- LastUpdateStatus?: AggregatedSourceStatusType;
393
+ LastUpdateStatus?: AggregatedSourceStatusType | undefined;
394
394
  /**
395
395
  * <p>The time of the last update.</p>
396
396
  * @public
397
397
  */
398
- LastUpdateTime?: Date;
398
+ LastUpdateTime?: Date | undefined;
399
399
  /**
400
400
  * <p>The error code that Config returned when the source account
401
401
  * aggregation last failed.</p>
402
402
  * @public
403
403
  */
404
- LastErrorCode?: string;
404
+ LastErrorCode?: string | undefined;
405
405
  /**
406
406
  * <p>The message indicating that the source account aggregation
407
407
  * failed due to an error.</p>
408
408
  * @public
409
409
  */
410
- LastErrorMessage?: string;
410
+ LastErrorMessage?: string | undefined;
411
411
  }
412
412
  /**
413
413
  * @public
@@ -433,22 +433,22 @@ export interface EvaluationResultQualifier {
433
433
  * evaluation.</p>
434
434
  * @public
435
435
  */
436
- ConfigRuleName?: string;
436
+ ConfigRuleName?: string | undefined;
437
437
  /**
438
438
  * <p>The type of Amazon Web Services resource that was evaluated.</p>
439
439
  * @public
440
440
  */
441
- ResourceType?: string;
441
+ ResourceType?: string | undefined;
442
442
  /**
443
443
  * <p>The ID of the evaluated Amazon Web Services resource.</p>
444
444
  * @public
445
445
  */
446
- ResourceId?: string;
446
+ ResourceId?: string | undefined;
447
447
  /**
448
448
  * <p>The mode of an evaluation. The valid values are Detective or Proactive.</p>
449
449
  * @public
450
450
  */
451
- EvaluationMode?: EvaluationMode;
451
+ EvaluationMode?: EvaluationMode | undefined;
452
452
  }
453
453
  /**
454
454
  * <p>Uniquely identifies an evaluation result.</p>
@@ -460,7 +460,7 @@ export interface EvaluationResultIdentifier {
460
460
  * and provides the type and ID of the evaluated resource.</p>
461
461
  * @public
462
462
  */
463
- EvaluationResultQualifier?: EvaluationResultQualifier;
463
+ EvaluationResultQualifier?: EvaluationResultQualifier | undefined;
464
464
  /**
465
465
  * <p>The time of the event that triggered the evaluation of your Amazon Web Services
466
466
  * resources. The time can indicate when Config delivered a
@@ -468,12 +468,12 @@ export interface EvaluationResultIdentifier {
468
468
  * event triggered the evaluation.</p>
469
469
  * @public
470
470
  */
471
- OrderingTimestamp?: Date;
471
+ OrderingTimestamp?: Date | undefined;
472
472
  /**
473
473
  * <p>A Unique ID for an evaluation result.</p>
474
474
  * @public
475
475
  */
476
- ResourceEvaluationId?: string;
476
+ ResourceEvaluationId?: string | undefined;
477
477
  }
478
478
  /**
479
479
  * <p>The details of an Config evaluation for an account ID and
@@ -487,7 +487,7 @@ export interface AggregateEvaluationResult {
487
487
  * <p>Uniquely identifies the evaluation result.</p>
488
488
  * @public
489
489
  */
490
- EvaluationResultIdentifier?: EvaluationResultIdentifier;
490
+ EvaluationResultIdentifier?: EvaluationResultIdentifier | undefined;
491
491
  /**
492
492
  * <p>The resource compliance status.</p>
493
493
  * <p>For the <code>AggregationEvaluationResult</code> data type, Config supports only the <code>COMPLIANT</code> and
@@ -496,35 +496,35 @@ export interface AggregateEvaluationResult {
496
496
  * value.</p>
497
497
  * @public
498
498
  */
499
- ComplianceType?: ComplianceType;
499
+ ComplianceType?: ComplianceType | undefined;
500
500
  /**
501
501
  * <p>The time when Config recorded the aggregate evaluation
502
502
  * result.</p>
503
503
  * @public
504
504
  */
505
- ResultRecordedTime?: Date;
505
+ ResultRecordedTime?: Date | undefined;
506
506
  /**
507
507
  * <p>The time when the Config rule evaluated the Amazon Web Services
508
508
  * resource.</p>
509
509
  * @public
510
510
  */
511
- ConfigRuleInvokedTime?: Date;
511
+ ConfigRuleInvokedTime?: Date | undefined;
512
512
  /**
513
513
  * <p>Supplementary information about how the agrregate evaluation
514
514
  * determined the compliance.</p>
515
515
  * @public
516
516
  */
517
- Annotation?: string;
517
+ Annotation?: string | undefined;
518
518
  /**
519
519
  * <p>The 12-digit account ID of the source account.</p>
520
520
  * @public
521
521
  */
522
- AccountId?: string;
522
+ AccountId?: string | undefined;
523
523
  /**
524
524
  * <p>The source region from where the data is aggregated.</p>
525
525
  * @public
526
526
  */
527
- AwsRegion?: string;
527
+ AwsRegion?: string | undefined;
528
528
  }
529
529
  /**
530
530
  * @public
@@ -972,7 +972,7 @@ export interface AggregateResourceIdentifier {
972
972
  * <p>The name of the Amazon Web Services resource.</p>
973
973
  * @public
974
974
  */
975
- ResourceName?: string;
975
+ ResourceName?: string | undefined;
976
976
  }
977
977
  /**
978
978
  * <p>An object that represents the authorizations granted to
@@ -985,24 +985,24 @@ export interface AggregationAuthorization {
985
985
  * object.</p>
986
986
  * @public
987
987
  */
988
- AggregationAuthorizationArn?: string;
988
+ AggregationAuthorizationArn?: string | undefined;
989
989
  /**
990
990
  * <p>The 12-digit account ID of the account authorized to aggregate
991
991
  * data.</p>
992
992
  * @public
993
993
  */
994
- AuthorizedAccountId?: string;
994
+ AuthorizedAccountId?: string | undefined;
995
995
  /**
996
996
  * <p>The region authorized to collect aggregated data.</p>
997
997
  * @public
998
998
  */
999
- AuthorizedAwsRegion?: string;
999
+ AuthorizedAwsRegion?: string | undefined;
1000
1000
  /**
1001
1001
  * <p>The time stamp when the aggregation authorization was
1002
1002
  * created.</p>
1003
1003
  * @public
1004
1004
  */
1005
- CreationTime?: Date;
1005
+ CreationTime?: Date | undefined;
1006
1006
  }
1007
1007
  /**
1008
1008
  * @public
@@ -1040,17 +1040,17 @@ export interface BaseConfigurationItem {
1040
1040
  * <p>The version number of the resource configuration.</p>
1041
1041
  * @public
1042
1042
  */
1043
- version?: string;
1043
+ version?: string | undefined;
1044
1044
  /**
1045
1045
  * <p>The 12-digit Amazon Web Services account ID associated with the resource.</p>
1046
1046
  * @public
1047
1047
  */
1048
- accountId?: string;
1048
+ accountId?: string | undefined;
1049
1049
  /**
1050
1050
  * <p>The time when the recording of configuration changes was initiated for the resource.</p>
1051
1051
  * @public
1052
1052
  */
1053
- configurationItemCaptureTime?: Date;
1053
+ configurationItemCaptureTime?: Date | undefined;
1054
1054
  /**
1055
1055
  * <p>The configuration item status. Valid values include:</p>
1056
1056
  * <ul>
@@ -1072,65 +1072,65 @@ export interface BaseConfigurationItem {
1072
1072
  * </ul>
1073
1073
  * @public
1074
1074
  */
1075
- configurationItemStatus?: ConfigurationItemStatus;
1075
+ configurationItemStatus?: ConfigurationItemStatus | undefined;
1076
1076
  /**
1077
1077
  * <p>An identifier that indicates the ordering of the configuration
1078
1078
  * items of a resource.</p>
1079
1079
  * @public
1080
1080
  */
1081
- configurationStateId?: string;
1081
+ configurationStateId?: string | undefined;
1082
1082
  /**
1083
1083
  * <p>The Amazon Resource Name (ARN) of the resource.</p>
1084
1084
  * @public
1085
1085
  */
1086
- arn?: string;
1086
+ arn?: string | undefined;
1087
1087
  /**
1088
1088
  * <p>The type of Amazon Web Services resource.</p>
1089
1089
  * @public
1090
1090
  */
1091
- resourceType?: ResourceType;
1091
+ resourceType?: ResourceType | undefined;
1092
1092
  /**
1093
1093
  * <p>The ID of the resource (for example., sg-xxxxxx).</p>
1094
1094
  * @public
1095
1095
  */
1096
- resourceId?: string;
1096
+ resourceId?: string | undefined;
1097
1097
  /**
1098
1098
  * <p>The custom name of the resource, if available.</p>
1099
1099
  * @public
1100
1100
  */
1101
- resourceName?: string;
1101
+ resourceName?: string | undefined;
1102
1102
  /**
1103
1103
  * <p>The region where the resource resides.</p>
1104
1104
  * @public
1105
1105
  */
1106
- awsRegion?: string;
1106
+ awsRegion?: string | undefined;
1107
1107
  /**
1108
1108
  * <p>The Availability Zone associated with the resource.</p>
1109
1109
  * @public
1110
1110
  */
1111
- availabilityZone?: string;
1111
+ availabilityZone?: string | undefined;
1112
1112
  /**
1113
1113
  * <p>The time stamp when the resource was created.</p>
1114
1114
  * @public
1115
1115
  */
1116
- resourceCreationTime?: Date;
1116
+ resourceCreationTime?: Date | undefined;
1117
1117
  /**
1118
1118
  * <p>The description of the resource configuration.</p>
1119
1119
  * @public
1120
1120
  */
1121
- configuration?: string;
1121
+ configuration?: string | undefined;
1122
1122
  /**
1123
1123
  * <p>Configuration attributes that Config returns for certain
1124
1124
  * resource types to supplement the information returned for the
1125
1125
  * configuration parameter.</p>
1126
1126
  * @public
1127
1127
  */
1128
- supplementaryConfiguration?: Record<string, string>;
1128
+ supplementaryConfiguration?: Record<string, string> | undefined;
1129
1129
  /**
1130
1130
  * <p>The recording frequency that Config uses to record configuration changes for the resource.</p>
1131
1131
  * @public
1132
1132
  */
1133
- recordingFrequency?: RecordingFrequency;
1133
+ recordingFrequency?: RecordingFrequency | undefined;
1134
1134
  /**
1135
1135
  * <p>The time when configuration changes for the resource were delivered.</p>
1136
1136
  * <note>
@@ -1141,7 +1141,7 @@ export interface BaseConfigurationItem {
1141
1141
  * </note>
1142
1142
  * @public
1143
1143
  */
1144
- configurationItemDeliveryTime?: Date;
1144
+ configurationItemDeliveryTime?: Date | undefined;
1145
1145
  }
1146
1146
  /**
1147
1147
  * @public
@@ -1166,12 +1166,12 @@ export interface BatchGetAggregateResourceConfigResponse {
1166
1166
  * <p>A list that contains the current configuration of one or more resources.</p>
1167
1167
  * @public
1168
1168
  */
1169
- BaseConfigurationItems?: BaseConfigurationItem[];
1169
+ BaseConfigurationItems?: BaseConfigurationItem[] | undefined;
1170
1170
  /**
1171
1171
  * <p>A list of resource identifiers that were not processed with current scope. The list is empty if all the resources are processed.</p>
1172
1172
  * @public
1173
1173
  */
1174
- UnprocessedResourceIdentifiers?: AggregateResourceIdentifier[];
1174
+ UnprocessedResourceIdentifiers?: AggregateResourceIdentifier[] | undefined;
1175
1175
  }
1176
1176
  /**
1177
1177
  * <p>You have specified a configuration aggregator that does not exist.</p>
@@ -1237,7 +1237,7 @@ export interface BatchGetResourceConfigResponse {
1237
1237
  * resources.</p>
1238
1238
  * @public
1239
1239
  */
1240
- baseConfigurationItems?: BaseConfigurationItem[];
1240
+ baseConfigurationItems?: BaseConfigurationItem[] | undefined;
1241
1241
  /**
1242
1242
  * <p>A list of resource keys that were not processed with the
1243
1243
  * current response. The unprocessesResourceKeys value is in the same
@@ -1248,7 +1248,7 @@ export interface BatchGetResourceConfigResponse {
1248
1248
  * empty unprocessedResourceKeys list. </p>
1249
1249
  * @public
1250
1250
  */
1251
- unprocessedResourceKeys?: ResourceKey[];
1251
+ unprocessedResourceKeys?: ResourceKey[] | undefined;
1252
1252
  }
1253
1253
  /**
1254
1254
  * <p>There are no configuration recorders available to provide the
@@ -1288,12 +1288,12 @@ export interface ComplianceByConfigRule {
1288
1288
  * <p>The name of the Config rule.</p>
1289
1289
  * @public
1290
1290
  */
1291
- ConfigRuleName?: string;
1291
+ ConfigRuleName?: string | undefined;
1292
1292
  /**
1293
1293
  * <p>Indicates whether the Config rule is compliant.</p>
1294
1294
  * @public
1295
1295
  */
1296
- Compliance?: Compliance;
1296
+ Compliance?: Compliance | undefined;
1297
1297
  }
1298
1298
  /**
1299
1299
  * <p>Indicates whether an Amazon Web Services resource that is evaluated according
@@ -1308,17 +1308,17 @@ export interface ComplianceByResource {
1308
1308
  * <p>The type of the Amazon Web Services resource that was evaluated.</p>
1309
1309
  * @public
1310
1310
  */
1311
- ResourceType?: string;
1311
+ ResourceType?: string | undefined;
1312
1312
  /**
1313
1313
  * <p>The ID of the Amazon Web Services resource that was evaluated.</p>
1314
1314
  * @public
1315
1315
  */
1316
- ResourceId?: string;
1316
+ ResourceId?: string | undefined;
1317
1317
  /**
1318
1318
  * <p>Indicates whether the Amazon Web Services resource complies with all of the Config rules that evaluated it.</p>
1319
1319
  * @public
1320
1320
  */
1321
- Compliance?: Compliance;
1321
+ Compliance?: Compliance | undefined;
1322
1322
  }
1323
1323
  /**
1324
1324
  * <p>The number of Amazon Web Services resources of a specific type that are
@@ -1331,13 +1331,13 @@ export interface ComplianceSummaryByResourceType {
1331
1331
  * <p>The type of Amazon Web Services resource.</p>
1332
1332
  * @public
1333
1333
  */
1334
- ResourceType?: string;
1334
+ ResourceType?: string | undefined;
1335
1335
  /**
1336
1336
  * <p>The number of Amazon Web Services resources that are compliant or noncompliant,
1337
1337
  * up to a maximum of 100 for each.</p>
1338
1338
  * @public
1339
1339
  */
1340
- ComplianceSummary?: ComplianceSummary;
1340
+ ComplianceSummary?: ComplianceSummary | undefined;
1341
1341
  }
1342
1342
  /**
1343
1343
  * @public
@@ -1364,32 +1364,32 @@ export interface ConfigExportDeliveryInfo {
1364
1364
  * <p>Status of the last attempted delivery.</p>
1365
1365
  * @public
1366
1366
  */
1367
- lastStatus?: DeliveryStatus;
1367
+ lastStatus?: DeliveryStatus | undefined;
1368
1368
  /**
1369
1369
  * <p>The error code from the last attempted delivery.</p>
1370
1370
  * @public
1371
1371
  */
1372
- lastErrorCode?: string;
1372
+ lastErrorCode?: string | undefined;
1373
1373
  /**
1374
1374
  * <p>The error message from the last attempted delivery.</p>
1375
1375
  * @public
1376
1376
  */
1377
- lastErrorMessage?: string;
1377
+ lastErrorMessage?: string | undefined;
1378
1378
  /**
1379
1379
  * <p>The time of the last attempted delivery.</p>
1380
1380
  * @public
1381
1381
  */
1382
- lastAttemptTime?: Date;
1382
+ lastAttemptTime?: Date | undefined;
1383
1383
  /**
1384
1384
  * <p>The time of the last successful delivery.</p>
1385
1385
  * @public
1386
1386
  */
1387
- lastSuccessfulTime?: Date;
1387
+ lastSuccessfulTime?: Date | undefined;
1388
1388
  /**
1389
1389
  * <p>The time that the next delivery occurs.</p>
1390
1390
  * @public
1391
1391
  */
1392
- nextDeliveryTime?: Date;
1392
+ nextDeliveryTime?: Date | undefined;
1393
1393
  }
1394
1394
  /**
1395
1395
  * @public
@@ -1414,7 +1414,7 @@ export interface EvaluationModeConfiguration {
1414
1414
  * <p>The mode of an evaluation. The valid values are Detective or Proactive.</p>
1415
1415
  * @public
1416
1416
  */
1417
- Mode?: EvaluationMode;
1417
+ Mode?: EvaluationMode | undefined;
1418
1418
  }
1419
1419
  /**
1420
1420
  * @public
@@ -1449,13 +1449,13 @@ export interface Scope {
1449
1449
  * <code>ComplianceResourceId</code>.</p>
1450
1450
  * @public
1451
1451
  */
1452
- ComplianceResourceTypes?: string[];
1452
+ ComplianceResourceTypes?: string[] | undefined;
1453
1453
  /**
1454
1454
  * <p>The tag key that is applied to only those Amazon Web Services resources that
1455
1455
  * you want to trigger an evaluation for the rule.</p>
1456
1456
  * @public
1457
1457
  */
1458
- TagKey?: string;
1458
+ TagKey?: string | undefined;
1459
1459
  /**
1460
1460
  * <p>The tag value applied to only those Amazon Web Services resources that you want
1461
1461
  * to trigger an evaluation for the rule. If you specify a value for
@@ -1463,7 +1463,7 @@ export interface Scope {
1463
1463
  * <code>TagKey</code>.</p>
1464
1464
  * @public
1465
1465
  */
1466
- TagValue?: string;
1466
+ TagValue?: string | undefined;
1467
1467
  /**
1468
1468
  * <p>The ID of the only Amazon Web Services resource that you want to trigger an
1469
1469
  * evaluation for the rule. If you specify a resource ID, you must
@@ -1471,7 +1471,7 @@ export interface Scope {
1471
1471
  * <code>ComplianceResourceTypes</code>.</p>
1472
1472
  * @public
1473
1473
  */
1474
- ComplianceResourceId?: string;
1474
+ ComplianceResourceId?: string | undefined;
1475
1475
  }
1476
1476
  /**
1477
1477
  * <p>Provides the runtime system, policy definition, and whether debug logging enabled. You can
@@ -1496,7 +1496,7 @@ export interface CustomPolicyDetails {
1496
1496
  * <p>The boolean expression for enabling debug logging for your Config Custom Policy rule. The default value is <code>false</code>.</p>
1497
1497
  * @public
1498
1498
  */
1499
- EnableDebugLogDelivery?: boolean;
1499
+ EnableDebugLogDelivery?: boolean | undefined;
1500
1500
  }
1501
1501
  /**
1502
1502
  * @public
@@ -1550,7 +1550,7 @@ export interface SourceDetail {
1550
1550
  * Config to evaluate your Amazon Web Services resources.</p>
1551
1551
  * @public
1552
1552
  */
1553
- EventSource?: EventSource;
1553
+ EventSource?: EventSource | undefined;
1554
1554
  /**
1555
1555
  * <p>The type of notification that triggers Config to run an
1556
1556
  * evaluation for a rule. You can specify the following notification
@@ -1590,7 +1590,7 @@ export interface SourceDetail {
1590
1590
  * <code>OversizedConfigurationItemChangeNotification</code>.</p>
1591
1591
  * @public
1592
1592
  */
1593
- MessageType?: MessageType;
1593
+ MessageType?: MessageType | undefined;
1594
1594
  /**
1595
1595
  * <p>The frequency at which you want Config to run evaluations
1596
1596
  * for a custom rule with a periodic trigger. If you specify a value
@@ -1610,7 +1610,7 @@ export interface SourceDetail {
1610
1610
  * </note>
1611
1611
  * @public
1612
1612
  */
1613
- MaximumExecutionFrequency?: MaximumExecutionFrequency;
1613
+ MaximumExecutionFrequency?: MaximumExecutionFrequency | undefined;
1614
1614
  }
1615
1615
  /**
1616
1616
  * <p>Provides the CustomPolicyDetails, the rule owner (<code>Amazon Web Services</code> for managed rules, <code>CUSTOM_POLICY</code> for Custom Policy rules, and <code>CUSTOM_LAMBDA</code> for Custom Lambda rules), the rule
@@ -1636,18 +1636,18 @@ export interface Source {
1636
1636
  * <p>For Config Custom Policy rules, this field will be ignored.</p>
1637
1637
  * @public
1638
1638
  */
1639
- SourceIdentifier?: string;
1639
+ SourceIdentifier?: string | undefined;
1640
1640
  /**
1641
1641
  * <p>Provides the source and the message types that cause Config to evaluate your Amazon Web Services resources against a rule. It also provides the frequency with which you want Config to run evaluations for the rule if the trigger type is periodic.</p>
1642
1642
  * <p>If the owner is set to <code>CUSTOM_POLICY</code>, the only acceptable values for the Config rule trigger message type are <code>ConfigurationItemChangeNotification</code> and <code>OversizedConfigurationItemChangeNotification</code>.</p>
1643
1643
  * @public
1644
1644
  */
1645
- SourceDetails?: SourceDetail[];
1645
+ SourceDetails?: SourceDetail[] | undefined;
1646
1646
  /**
1647
1647
  * <p>Provides the runtime system, policy definition, and whether debug logging is enabled. Required when owner is set to <code>CUSTOM_POLICY</code>.</p>
1648
1648
  * @public
1649
1649
  */
1650
- CustomPolicyDetails?: CustomPolicyDetails;
1650
+ CustomPolicyDetails?: CustomPolicyDetails | undefined;
1651
1651
  }
1652
1652
  /**
1653
1653
  * <p>Config rules evaluate the configuration settings of your Amazon Web Services resources. A rule can run when Config detects a configuration change to
@@ -1680,24 +1680,24 @@ export interface ConfigRule {
1680
1680
  * required if you are adding a new rule.</p>
1681
1681
  * @public
1682
1682
  */
1683
- ConfigRuleName?: string;
1683
+ ConfigRuleName?: string | undefined;
1684
1684
  /**
1685
1685
  * <p>The Amazon Resource Name (ARN) of the Config
1686
1686
  * rule.</p>
1687
1687
  * @public
1688
1688
  */
1689
- ConfigRuleArn?: string;
1689
+ ConfigRuleArn?: string | undefined;
1690
1690
  /**
1691
1691
  * <p>The ID of the Config rule.</p>
1692
1692
  * @public
1693
1693
  */
1694
- ConfigRuleId?: string;
1694
+ ConfigRuleId?: string | undefined;
1695
1695
  /**
1696
1696
  * <p>The description that you provide for the Config
1697
1697
  * rule.</p>
1698
1698
  * @public
1699
1699
  */
1700
- Description?: string;
1700
+ Description?: string | undefined;
1701
1701
  /**
1702
1702
  * <p>Defines which resources can trigger an evaluation for the rule.
1703
1703
  * The scope can include one or more resource types, a combination of
@@ -1711,7 +1711,7 @@ export interface ConfigRule {
1711
1711
  * </note>
1712
1712
  * @public
1713
1713
  */
1714
- Scope?: Scope;
1714
+ Scope?: Scope | undefined;
1715
1715
  /**
1716
1716
  * <p>Provides the rule owner (<code>Amazon Web Services</code> for managed rules, <code>CUSTOM_POLICY</code> for Custom Policy rules, and <code>CUSTOM_LAMBDA</code> for Custom Lambda rules), the rule identifier,
1717
1717
  * and the notifications that cause the function to evaluate your Amazon Web Services
@@ -1724,7 +1724,7 @@ export interface ConfigRule {
1724
1724
  * Lambda function.</p>
1725
1725
  * @public
1726
1726
  */
1727
- InputParameters?: string;
1727
+ InputParameters?: string | undefined;
1728
1728
  /**
1729
1729
  * <p>The maximum frequency with which Config runs evaluations
1730
1730
  * for a rule. You can specify a value for
@@ -1747,7 +1747,7 @@ export interface ConfigRule {
1747
1747
  * </note>
1748
1748
  * @public
1749
1749
  */
1750
- MaximumExecutionFrequency?: MaximumExecutionFrequency;
1750
+ MaximumExecutionFrequency?: MaximumExecutionFrequency | undefined;
1751
1751
  /**
1752
1752
  * <p>Indicates whether the Config rule is active or is currently
1753
1753
  * being deleted by Config. It can also indicate the evaluation
@@ -1767,7 +1767,7 @@ export interface ConfigRule {
1767
1767
  * erased and are no longer available.</p>
1768
1768
  * @public
1769
1769
  */
1770
- ConfigRuleState?: ConfigRuleState;
1770
+ ConfigRuleState?: ConfigRuleState | undefined;
1771
1771
  /**
1772
1772
  * <p>Service principal name of the service that created the
1773
1773
  * rule.</p>
@@ -1778,12 +1778,12 @@ export interface ConfigRule {
1778
1778
  * </note>
1779
1779
  * @public
1780
1780
  */
1781
- CreatedBy?: string;
1781
+ CreatedBy?: string | undefined;
1782
1782
  /**
1783
1783
  * <p>The modes the Config rule can be evaluated in. The valid values are distinct objects. By default, the value is Detective evaluation mode only.</p>
1784
1784
  * @public
1785
1785
  */
1786
- EvaluationModes?: EvaluationModeConfiguration[];
1786
+ EvaluationModes?: EvaluationModeConfiguration[] | undefined;
1787
1787
  }
1788
1788
  /**
1789
1789
  * <p>Filters the compliance results based on account ID, region,
@@ -1795,7 +1795,7 @@ export interface ConfigRuleComplianceFilters {
1795
1795
  * <p>The name of the Config rule.</p>
1796
1796
  * @public
1797
1797
  */
1798
- ConfigRuleName?: string;
1798
+ ConfigRuleName?: string | undefined;
1799
1799
  /**
1800
1800
  * <p>The rule compliance status.</p>
1801
1801
  * <p>For the <code>ConfigRuleComplianceFilters</code> data type, Config supports only <code>COMPLIANT</code> and
@@ -1804,19 +1804,19 @@ export interface ConfigRuleComplianceFilters {
1804
1804
  * <code>INSUFFICIENT_DATA</code> values.</p>
1805
1805
  * @public
1806
1806
  */
1807
- ComplianceType?: ComplianceType;
1807
+ ComplianceType?: ComplianceType | undefined;
1808
1808
  /**
1809
1809
  * <p>The 12-digit account ID of the source account.
1810
1810
  * </p>
1811
1811
  * @public
1812
1812
  */
1813
- AccountId?: string;
1813
+ AccountId?: string | undefined;
1814
1814
  /**
1815
1815
  * <p>The source region where the data is aggregated.
1816
1816
  * </p>
1817
1817
  * @public
1818
1818
  */
1819
- AwsRegion?: string;
1819
+ AwsRegion?: string | undefined;
1820
1820
  }
1821
1821
  /**
1822
1822
  * <p>Filters the results based on the account IDs and
@@ -1828,12 +1828,12 @@ export interface ConfigRuleComplianceSummaryFilters {
1828
1828
  * <p>The 12-digit account ID of the source account.</p>
1829
1829
  * @public
1830
1830
  */
1831
- AccountId?: string;
1831
+ AccountId?: string | undefined;
1832
1832
  /**
1833
1833
  * <p>The source region where the data is aggregated.</p>
1834
1834
  * @public
1835
1835
  */
1836
- AwsRegion?: string;
1836
+ AwsRegion?: string | undefined;
1837
1837
  }
1838
1838
  /**
1839
1839
  * @public
@@ -1860,64 +1860,64 @@ export interface ConfigRuleEvaluationStatus {
1860
1860
  * <p>The name of the Config rule.</p>
1861
1861
  * @public
1862
1862
  */
1863
- ConfigRuleName?: string;
1863
+ ConfigRuleName?: string | undefined;
1864
1864
  /**
1865
1865
  * <p>The Amazon Resource Name (ARN) of the Config
1866
1866
  * rule.</p>
1867
1867
  * @public
1868
1868
  */
1869
- ConfigRuleArn?: string;
1869
+ ConfigRuleArn?: string | undefined;
1870
1870
  /**
1871
1871
  * <p>The ID of the Config rule.</p>
1872
1872
  * @public
1873
1873
  */
1874
- ConfigRuleId?: string;
1874
+ ConfigRuleId?: string | undefined;
1875
1875
  /**
1876
1876
  * <p>The time that Config last successfully invoked the Config rule to evaluate your Amazon Web Services resources.</p>
1877
1877
  * @public
1878
1878
  */
1879
- LastSuccessfulInvocationTime?: Date;
1879
+ LastSuccessfulInvocationTime?: Date | undefined;
1880
1880
  /**
1881
1881
  * <p>The time that Config last failed to invoke the Config
1882
1882
  * rule to evaluate your Amazon Web Services resources.</p>
1883
1883
  * @public
1884
1884
  */
1885
- LastFailedInvocationTime?: Date;
1885
+ LastFailedInvocationTime?: Date | undefined;
1886
1886
  /**
1887
1887
  * <p>The time that Config last successfully evaluated your Amazon Web Services
1888
1888
  * resources against the rule.</p>
1889
1889
  * @public
1890
1890
  */
1891
- LastSuccessfulEvaluationTime?: Date;
1891
+ LastSuccessfulEvaluationTime?: Date | undefined;
1892
1892
  /**
1893
1893
  * <p>The time that Config last failed to evaluate your Amazon Web Services
1894
1894
  * resources against the rule.</p>
1895
1895
  * @public
1896
1896
  */
1897
- LastFailedEvaluationTime?: Date;
1897
+ LastFailedEvaluationTime?: Date | undefined;
1898
1898
  /**
1899
1899
  * <p>The time that you first activated the Config
1900
1900
  * rule.</p>
1901
1901
  * @public
1902
1902
  */
1903
- FirstActivatedTime?: Date;
1903
+ FirstActivatedTime?: Date | undefined;
1904
1904
  /**
1905
1905
  * <p>The time that you last turned off the Config rule.</p>
1906
1906
  * @public
1907
1907
  */
1908
- LastDeactivatedTime?: Date;
1908
+ LastDeactivatedTime?: Date | undefined;
1909
1909
  /**
1910
1910
  * <p>The error code that Config returned when the rule last
1911
1911
  * failed.</p>
1912
1912
  * @public
1913
1913
  */
1914
- LastErrorCode?: string;
1914
+ LastErrorCode?: string | undefined;
1915
1915
  /**
1916
1916
  * <p>The error message that Config returned when the rule last
1917
1917
  * failed.</p>
1918
1918
  * @public
1919
1919
  */
1920
- LastErrorMessage?: string;
1920
+ LastErrorMessage?: string | undefined;
1921
1921
  /**
1922
1922
  * <p>Indicates whether Config has evaluated your resources
1923
1923
  * against the rule at least once.</p>
@@ -1936,23 +1936,23 @@ export interface ConfigRuleEvaluationStatus {
1936
1936
  * </ul>
1937
1937
  * @public
1938
1938
  */
1939
- FirstEvaluationStarted?: boolean;
1939
+ FirstEvaluationStarted?: boolean | undefined;
1940
1940
  /**
1941
1941
  * <p>The status of the last attempted delivery of a debug log for your Config Custom Policy rules. Either <code>Successful</code> or <code>Failed</code>.</p>
1942
1942
  * @public
1943
1943
  */
1944
- LastDebugLogDeliveryStatus?: string;
1944
+ LastDebugLogDeliveryStatus?: string | undefined;
1945
1945
  /**
1946
1946
  * <p>The reason Config was not able to deliver a debug log. This is for the last
1947
1947
  * failed attempt to retrieve a debug log for your Config Custom Policy rules.</p>
1948
1948
  * @public
1949
1949
  */
1950
- LastDebugLogDeliveryStatusReason?: string;
1950
+ LastDebugLogDeliveryStatusReason?: string | undefined;
1951
1951
  /**
1952
1952
  * <p>The time Config last attempted to deliver a debug log for your Config Custom Policy rules.</p>
1953
1953
  * @public
1954
1954
  */
1955
- LastDebugLogDeliveryTime?: Date;
1955
+ LastDebugLogDeliveryTime?: Date | undefined;
1956
1956
  }
1957
1957
  /**
1958
1958
  * <p>Provides options for how often Config delivers
@@ -2015,7 +2015,7 @@ export interface ConfigSnapshotDeliveryProperties {
2015
2015
  * snapshots.</p>
2016
2016
  * @public
2017
2017
  */
2018
- deliveryFrequency?: MaximumExecutionFrequency;
2018
+ deliveryFrequency?: MaximumExecutionFrequency | undefined;
2019
2019
  }
2020
2020
  /**
2021
2021
  * <p>A list that contains the status of the delivery of the
@@ -2031,22 +2031,22 @@ export interface ConfigStreamDeliveryInfo {
2031
2031
  * delivery is turned off, the last status will be <b>Not_Applicable</b>.</p>
2032
2032
  * @public
2033
2033
  */
2034
- lastStatus?: DeliveryStatus;
2034
+ lastStatus?: DeliveryStatus | undefined;
2035
2035
  /**
2036
2036
  * <p>The error code from the last attempted delivery.</p>
2037
2037
  * @public
2038
2038
  */
2039
- lastErrorCode?: string;
2039
+ lastErrorCode?: string | undefined;
2040
2040
  /**
2041
2041
  * <p>The error message from the last attempted delivery.</p>
2042
2042
  * @public
2043
2043
  */
2044
- lastErrorMessage?: string;
2044
+ lastErrorMessage?: string | undefined;
2045
2045
  /**
2046
2046
  * <p>The time from the last status change.</p>
2047
2047
  * @public
2048
2048
  */
2049
- lastStatusChangeTime?: Date;
2049
+ lastStatusChangeTime?: Date | undefined;
2050
2050
  }
2051
2051
  /**
2052
2052
  * <p>This object contains regions to set up the aggregator and an IAM
@@ -2064,13 +2064,13 @@ export interface OrganizationAggregationSource {
2064
2064
  * <p>The source regions being aggregated.</p>
2065
2065
  * @public
2066
2066
  */
2067
- AwsRegions?: string[];
2067
+ AwsRegions?: string[] | undefined;
2068
2068
  /**
2069
2069
  * <p>If true, aggregate existing Config regions and future
2070
2070
  * regions.</p>
2071
2071
  * @public
2072
2072
  */
2073
- AllAwsRegions?: boolean;
2073
+ AllAwsRegions?: boolean | undefined;
2074
2074
  }
2075
2075
  /**
2076
2076
  * <p>The details about the configuration aggregator, including
@@ -2083,40 +2083,40 @@ export interface ConfigurationAggregator {
2083
2083
  * <p>The name of the aggregator.</p>
2084
2084
  * @public
2085
2085
  */
2086
- ConfigurationAggregatorName?: string;
2086
+ ConfigurationAggregatorName?: string | undefined;
2087
2087
  /**
2088
2088
  * <p>The Amazon Resource Name (ARN) of the aggregator.</p>
2089
2089
  * @public
2090
2090
  */
2091
- ConfigurationAggregatorArn?: string;
2091
+ ConfigurationAggregatorArn?: string | undefined;
2092
2092
  /**
2093
2093
  * <p>Provides a list of source accounts and regions to be
2094
2094
  * aggregated.</p>
2095
2095
  * @public
2096
2096
  */
2097
- AccountAggregationSources?: AccountAggregationSource[];
2097
+ AccountAggregationSources?: AccountAggregationSource[] | undefined;
2098
2098
  /**
2099
2099
  * <p>Provides an organization and list of regions to be
2100
2100
  * aggregated.</p>
2101
2101
  * @public
2102
2102
  */
2103
- OrganizationAggregationSource?: OrganizationAggregationSource;
2103
+ OrganizationAggregationSource?: OrganizationAggregationSource | undefined;
2104
2104
  /**
2105
2105
  * <p>The time stamp when the configuration aggregator was
2106
2106
  * created.</p>
2107
2107
  * @public
2108
2108
  */
2109
- CreationTime?: Date;
2109
+ CreationTime?: Date | undefined;
2110
2110
  /**
2111
2111
  * <p>The time of the last update.</p>
2112
2112
  * @public
2113
2113
  */
2114
- LastUpdatedTime?: Date;
2114
+ LastUpdatedTime?: Date | undefined;
2115
2115
  /**
2116
2116
  * <p>Amazon Web Services service that created the configuration aggregator.</p>
2117
2117
  * @public
2118
2118
  */
2119
- CreatedBy?: string;
2119
+ CreatedBy?: string | undefined;
2120
2120
  }
2121
2121
  /**
2122
2122
  * <p>The relationship of the related resource to the main
@@ -2128,24 +2128,24 @@ export interface Relationship {
2128
2128
  * <p>The resource type of the related resource.</p>
2129
2129
  * @public
2130
2130
  */
2131
- resourceType?: ResourceType;
2131
+ resourceType?: ResourceType | undefined;
2132
2132
  /**
2133
2133
  * <p>The ID of the related resource (for example,
2134
2134
  * <code>sg-xxxxxx</code>).</p>
2135
2135
  * @public
2136
2136
  */
2137
- resourceId?: string;
2137
+ resourceId?: string | undefined;
2138
2138
  /**
2139
2139
  * <p>The custom name of the related resource, if
2140
2140
  * available.</p>
2141
2141
  * @public
2142
2142
  */
2143
- resourceName?: string;
2143
+ resourceName?: string | undefined;
2144
2144
  /**
2145
2145
  * <p>The type of relationship with the related resource.</p>
2146
2146
  * @public
2147
2147
  */
2148
- relationshipName?: string;
2148
+ relationshipName?: string | undefined;
2149
2149
  }
2150
2150
  /**
2151
2151
  * <p>A list that contains detailed configurations of a specified
@@ -2157,19 +2157,19 @@ export interface ConfigurationItem {
2157
2157
  * <p>The version number of the resource configuration.</p>
2158
2158
  * @public
2159
2159
  */
2160
- version?: string;
2160
+ version?: string | undefined;
2161
2161
  /**
2162
2162
  * <p>The 12-digit Amazon Web Services account ID associated with the
2163
2163
  * resource.</p>
2164
2164
  * @public
2165
2165
  */
2166
- accountId?: string;
2166
+ accountId?: string | undefined;
2167
2167
  /**
2168
2168
  * <p>The time when the recording of configuration changes was
2169
2169
  * initiated for the resource.</p>
2170
2170
  * @public
2171
2171
  */
2172
- configurationItemCaptureTime?: Date;
2172
+ configurationItemCaptureTime?: Date | undefined;
2173
2173
  /**
2174
2174
  * <p>The configuration item status. Valid values include:</p>
2175
2175
  * <ul>
@@ -2191,13 +2191,13 @@ export interface ConfigurationItem {
2191
2191
  * </ul>
2192
2192
  * @public
2193
2193
  */
2194
- configurationItemStatus?: ConfigurationItemStatus;
2194
+ configurationItemStatus?: ConfigurationItemStatus | undefined;
2195
2195
  /**
2196
2196
  * <p>An identifier that indicates the ordering of the configuration
2197
2197
  * items of a resource.</p>
2198
2198
  * @public
2199
2199
  */
2200
- configurationStateId?: string;
2200
+ configurationStateId?: string | undefined;
2201
2201
  /**
2202
2202
  * <p>Unique MD5 hash that represents the configuration item's
2203
2203
  * state.</p>
@@ -2206,49 +2206,49 @@ export interface ConfigurationItem {
2206
2206
  * resource.</p>
2207
2207
  * @public
2208
2208
  */
2209
- configurationItemMD5Hash?: string;
2209
+ configurationItemMD5Hash?: string | undefined;
2210
2210
  /**
2211
2211
  * <p>Amazon Resource Name (ARN) associated with the resource.</p>
2212
2212
  * @public
2213
2213
  */
2214
- arn?: string;
2214
+ arn?: string | undefined;
2215
2215
  /**
2216
2216
  * <p>The type of Amazon Web Services resource.</p>
2217
2217
  * @public
2218
2218
  */
2219
- resourceType?: ResourceType;
2219
+ resourceType?: ResourceType | undefined;
2220
2220
  /**
2221
2221
  * <p>The ID of the resource (for example,
2222
2222
  * <code>sg-xxxxxx</code>).</p>
2223
2223
  * @public
2224
2224
  */
2225
- resourceId?: string;
2225
+ resourceId?: string | undefined;
2226
2226
  /**
2227
2227
  * <p>The custom name of the resource, if available.</p>
2228
2228
  * @public
2229
2229
  */
2230
- resourceName?: string;
2230
+ resourceName?: string | undefined;
2231
2231
  /**
2232
2232
  * <p>The region where the resource resides.</p>
2233
2233
  * @public
2234
2234
  */
2235
- awsRegion?: string;
2235
+ awsRegion?: string | undefined;
2236
2236
  /**
2237
2237
  * <p>The Availability Zone associated with the resource.</p>
2238
2238
  * @public
2239
2239
  */
2240
- availabilityZone?: string;
2240
+ availabilityZone?: string | undefined;
2241
2241
  /**
2242
2242
  * <p>The time stamp when the resource was created.</p>
2243
2243
  * @public
2244
2244
  */
2245
- resourceCreationTime?: Date;
2245
+ resourceCreationTime?: Date | undefined;
2246
2246
  /**
2247
2247
  * <p>A mapping of key value tags associated with the
2248
2248
  * resource.</p>
2249
2249
  * @public
2250
2250
  */
2251
- tags?: Record<string, string>;
2251
+ tags?: Record<string, string> | undefined;
2252
2252
  /**
2253
2253
  * <p>A list of CloudTrail event IDs.</p>
2254
2254
  * <p>A populated field indicates that the current configuration was
@@ -2259,29 +2259,29 @@ export interface ConfigurationItem {
2259
2259
  * You can access the <a href="https://docs.aws.amazon.com/awscloudtrail/latest/APIReference/API_LookupEvents.html">LookupEvents API</a> in the <i>CloudTrail API Reference</i> to retrieve the events for the resource.</p>
2260
2260
  * @public
2261
2261
  */
2262
- relatedEvents?: string[];
2262
+ relatedEvents?: string[] | undefined;
2263
2263
  /**
2264
2264
  * <p>A list of related Amazon Web Services resources.</p>
2265
2265
  * @public
2266
2266
  */
2267
- relationships?: Relationship[];
2267
+ relationships?: Relationship[] | undefined;
2268
2268
  /**
2269
2269
  * <p>The description of the resource configuration.</p>
2270
2270
  * @public
2271
2271
  */
2272
- configuration?: string;
2272
+ configuration?: string | undefined;
2273
2273
  /**
2274
2274
  * <p>Configuration attributes that Config returns for certain
2275
2275
  * resource types to supplement the information returned for the
2276
2276
  * <code>configuration</code> parameter.</p>
2277
2277
  * @public
2278
2278
  */
2279
- supplementaryConfiguration?: Record<string, string>;
2279
+ supplementaryConfiguration?: Record<string, string> | undefined;
2280
2280
  /**
2281
2281
  * <p>The recording frequency that Config uses to record configuration changes for the resource.</p>
2282
2282
  * @public
2283
2283
  */
2284
- recordingFrequency?: RecordingFrequency;
2284
+ recordingFrequency?: RecordingFrequency | undefined;
2285
2285
  /**
2286
2286
  * <p>The time when configuration changes for the resource were delivered.</p>
2287
2287
  * <note>
@@ -2292,7 +2292,7 @@ export interface ConfigurationItem {
2292
2292
  * </note>
2293
2293
  * @public
2294
2294
  */
2295
- configurationItemDeliveryTime?: Date;
2295
+ configurationItemDeliveryTime?: Date | undefined;
2296
2296
  }
2297
2297
  /**
2298
2298
  * <p>Specifies whether the configuration recorder excludes certain resource types from being recorded.
@@ -2346,7 +2346,7 @@ export interface ExclusionByResourceTypes {
2346
2346
  * recorder.</p>
2347
2347
  * @public
2348
2348
  */
2349
- resourceTypes?: ResourceType[];
2349
+ resourceTypes?: ResourceType[] | undefined;
2350
2350
  }
2351
2351
  /**
2352
2352
  * @public
@@ -2442,7 +2442,7 @@ export interface RecordingStrategy {
2442
2442
  * </note>
2443
2443
  * @public
2444
2444
  */
2445
- useOnly?: RecordingStrategyType;
2445
+ useOnly?: RecordingStrategyType | undefined;
2446
2446
  }
2447
2447
  /**
2448
2448
  * <p>Specifies which resource types Config
@@ -2489,7 +2489,7 @@ export interface RecordingGroup {
2489
2489
  * </note>
2490
2490
  * @public
2491
2491
  */
2492
- allSupported?: boolean;
2492
+ allSupported?: boolean | undefined;
2493
2493
  /**
2494
2494
  * <p>This option is a bundle which only applies to the global IAM resource types:
2495
2495
  * IAM users, groups, roles, and customer managed policies. These global IAM resource types can only be recorded
@@ -2570,7 +2570,7 @@ export interface RecordingGroup {
2570
2570
  * </note>
2571
2571
  * @public
2572
2572
  */
2573
- includeGlobalResourceTypes?: boolean;
2573
+ includeGlobalResourceTypes?: boolean | undefined;
2574
2574
  /**
2575
2575
  * <p>A comma-separated list that specifies which resource types Config
2576
2576
  * records.</p>
@@ -2601,7 +2601,7 @@ export interface RecordingGroup {
2601
2601
  * </note>
2602
2602
  * @public
2603
2603
  */
2604
- resourceTypes?: ResourceType[];
2604
+ resourceTypes?: ResourceType[] | undefined;
2605
2605
  /**
2606
2606
  * <p>An object that specifies how Config excludes resource types from being recorded by the configuration recorder.</p>
2607
2607
  * <note>
@@ -2612,7 +2612,7 @@ export interface RecordingGroup {
2612
2612
  * </note>
2613
2613
  * @public
2614
2614
  */
2615
- exclusionByResourceTypes?: ExclusionByResourceTypes;
2615
+ exclusionByResourceTypes?: ExclusionByResourceTypes | undefined;
2616
2616
  /**
2617
2617
  * <p>An object that specifies the recording strategy for the configuration recorder.</p>
2618
2618
  * <ul>
@@ -2682,7 +2682,7 @@ export interface RecordingGroup {
2682
2682
  * </note>
2683
2683
  * @public
2684
2684
  */
2685
- recordingStrategy?: RecordingStrategy;
2685
+ recordingStrategy?: RecordingStrategy | undefined;
2686
2686
  }
2687
2687
  /**
2688
2688
  * <p>An object for you to specify your overrides for the recording mode.</p>
@@ -2693,7 +2693,7 @@ export interface RecordingModeOverride {
2693
2693
  * <p>A description that you provide for the override.</p>
2694
2694
  * @public
2695
2695
  */
2696
- description?: string;
2696
+ description?: string | undefined;
2697
2697
  /**
2698
2698
  * <p>A comma-separated list that specifies which resource types Config
2699
2699
  * includes in the override.</p>
@@ -2791,7 +2791,7 @@ export interface RecordingMode {
2791
2791
  * The <code>recordingModeOverride</code> object in the <code>recordingModeOverrides</code> array consists of three fields: a <code>description</code>, the new <code>recordingFrequency</code>, and an array of <code>resourceTypes</code> to override.</p>
2792
2792
  * @public
2793
2793
  */
2794
- recordingModeOverrides?: RecordingModeOverride[];
2794
+ recordingModeOverrides?: RecordingModeOverride[] | undefined;
2795
2795
  }
2796
2796
  /**
2797
2797
  * <p>Records configuration changes to your specified resource types.
@@ -2809,7 +2809,7 @@ export interface ConfigurationRecorder {
2809
2809
  * </note>
2810
2810
  * @public
2811
2811
  */
2812
- name?: string;
2812
+ name?: string | undefined;
2813
2813
  /**
2814
2814
  * <p>Amazon Resource Name (ARN) of the IAM role assumed by Config and used by the configuration recorder.</p>
2815
2815
  * <note>
@@ -2836,7 +2836,7 @@ export interface ConfigurationRecorder {
2836
2836
  * </note>
2837
2837
  * @public
2838
2838
  */
2839
- roleARN?: string;
2839
+ roleARN?: string | undefined;
2840
2840
  /**
2841
2841
  * <p>Specifies which resource types Config
2842
2842
  * records for configuration changes.</p>
@@ -2857,7 +2857,7 @@ export interface ConfigurationRecorder {
2857
2857
  * </note>
2858
2858
  * @public
2859
2859
  */
2860
- recordingGroup?: RecordingGroup;
2860
+ recordingGroup?: RecordingGroup | undefined;
2861
2861
  /**
2862
2862
  * <p>Specifies the default recording frequency that Config uses to record configuration changes.
2863
2863
  *
@@ -2878,7 +2878,7 @@ export interface ConfigurationRecorder {
2878
2878
  * <p>You can also override the recording frequency for specific resource types.</p>
2879
2879
  * @public
2880
2880
  */
2881
- recordingMode?: RecordingMode;
2881
+ recordingMode?: RecordingMode | undefined;
2882
2882
  }
2883
2883
  /**
2884
2884
  * @public
@@ -2905,43 +2905,43 @@ export interface ConfigurationRecorderStatus {
2905
2905
  * <p>The name of the configuration recorder.</p>
2906
2906
  * @public
2907
2907
  */
2908
- name?: string;
2908
+ name?: string | undefined;
2909
2909
  /**
2910
2910
  * <p>The time the recorder was last started.</p>
2911
2911
  * @public
2912
2912
  */
2913
- lastStartTime?: Date;
2913
+ lastStartTime?: Date | undefined;
2914
2914
  /**
2915
2915
  * <p>The time the recorder was last stopped.</p>
2916
2916
  * @public
2917
2917
  */
2918
- lastStopTime?: Date;
2918
+ lastStopTime?: Date | undefined;
2919
2919
  /**
2920
2920
  * <p>Specifies whether or not the recorder is currently
2921
2921
  * recording.</p>
2922
2922
  * @public
2923
2923
  */
2924
- recording?: boolean;
2924
+ recording?: boolean | undefined;
2925
2925
  /**
2926
2926
  * <p>The status of the latest recording event processed by the recorder.</p>
2927
2927
  * @public
2928
2928
  */
2929
- lastStatus?: RecorderStatus;
2929
+ lastStatus?: RecorderStatus | undefined;
2930
2930
  /**
2931
2931
  * <p>The latest error code from when the recorder last failed.</p>
2932
2932
  * @public
2933
2933
  */
2934
- lastErrorCode?: string;
2934
+ lastErrorCode?: string | undefined;
2935
2935
  /**
2936
2936
  * <p>The latest error message from when the recorder last failed.</p>
2937
2937
  * @public
2938
2938
  */
2939
- lastErrorMessage?: string;
2939
+ lastErrorMessage?: string | undefined;
2940
2940
  /**
2941
2941
  * <p>The time of the latest change in status of an recording event processed by the recorder.</p>
2942
2942
  * @public
2943
2943
  */
2944
- lastStatusChangeTime?: Date;
2944
+ lastStatusChangeTime?: Date | undefined;
2945
2945
  }
2946
2946
  /**
2947
2947
  * <p>Filters the conformance pack by compliance types and Config rule names.</p>
@@ -2952,13 +2952,13 @@ export interface ConformancePackComplianceFilters {
2952
2952
  * <p>Filters the results by Config rule names.</p>
2953
2953
  * @public
2954
2954
  */
2955
- ConfigRuleNames?: string[];
2955
+ ConfigRuleNames?: string[] | undefined;
2956
2956
  /**
2957
2957
  * <p>Filters the results by compliance.</p>
2958
2958
  * <p>The allowed values are <code>COMPLIANT</code> and <code>NON_COMPLIANT</code>. <code>INSUFFICIENT_DATA</code> is not supported.</p>
2959
2959
  * @public
2960
2960
  */
2961
- ComplianceType?: ConformancePackComplianceType;
2961
+ ComplianceType?: ConformancePackComplianceType | undefined;
2962
2962
  }
2963
2963
  /**
2964
2964
  * <p>A compliance score is the percentage of the number of compliant rule-resource combinations in a conformance pack compared to the number of total possible rule-resource combinations in the conformance pack.
@@ -2971,17 +2971,17 @@ export interface ConformancePackComplianceScore {
2971
2971
  * <p>Compliance score for the conformance pack. Conformance packs with no evaluation results will have a compliance score of <code>INSUFFICIENT_DATA</code>.</p>
2972
2972
  * @public
2973
2973
  */
2974
- Score?: string;
2974
+ Score?: string | undefined;
2975
2975
  /**
2976
2976
  * <p>The name of the conformance pack.</p>
2977
2977
  * @public
2978
2978
  */
2979
- ConformancePackName?: string;
2979
+ ConformancePackName?: string | undefined;
2980
2980
  /**
2981
2981
  * <p>The time that the conformance pack compliance score was last updated.</p>
2982
2982
  * @public
2983
2983
  */
2984
- LastUpdatedTime?: Date;
2984
+ LastUpdatedTime?: Date | undefined;
2985
2985
  }
2986
2986
  /**
2987
2987
  * <p>A list of filters to apply to the conformance pack compliance score result set. </p>
@@ -3048,7 +3048,7 @@ export interface TemplateSSMDocumentDetails {
3048
3048
  * </note>
3049
3049
  * @public
3050
3050
  */
3051
- DocumentVersion?: string;
3051
+ DocumentVersion?: string | undefined;
3052
3052
  }
3053
3053
  /**
3054
3054
  * <p>Returns details of a conformance pack. A conformance pack is a collection of Config rules and remediation actions that can be easily deployed in an account and a region.</p>
@@ -3077,7 +3077,7 @@ export interface ConformancePackDetail {
3077
3077
  * </note>
3078
3078
  * @public
3079
3079
  */
3080
- DeliveryS3Bucket?: string;
3080
+ DeliveryS3Bucket?: string | undefined;
3081
3081
  /**
3082
3082
  * <p>The prefix for the Amazon S3 bucket.</p>
3083
3083
  * <note>
@@ -3085,27 +3085,27 @@ export interface ConformancePackDetail {
3085
3085
  * </note>
3086
3086
  * @public
3087
3087
  */
3088
- DeliveryS3KeyPrefix?: string;
3088
+ DeliveryS3KeyPrefix?: string | undefined;
3089
3089
  /**
3090
3090
  * <p>A list of <code>ConformancePackInputParameter</code> objects.</p>
3091
3091
  * @public
3092
3092
  */
3093
- ConformancePackInputParameters?: ConformancePackInputParameter[];
3093
+ ConformancePackInputParameters?: ConformancePackInputParameter[] | undefined;
3094
3094
  /**
3095
3095
  * <p>The last time a conformation pack update was requested. </p>
3096
3096
  * @public
3097
3097
  */
3098
- LastUpdateRequestedTime?: Date;
3098
+ LastUpdateRequestedTime?: Date | undefined;
3099
3099
  /**
3100
3100
  * <p>The Amazon Web Services service that created the conformance pack.</p>
3101
3101
  * @public
3102
3102
  */
3103
- CreatedBy?: string;
3103
+ CreatedBy?: string | undefined;
3104
3104
  /**
3105
3105
  * <p>An object that contains the name or Amazon Resource Name (ARN) of the Amazon Web Services Systems Manager document (SSM document) and the version of the SSM document that is used to create a conformance pack.</p>
3106
3106
  * @public
3107
3107
  */
3108
- TemplateSSMDocumentDetails?: TemplateSSMDocumentDetails;
3108
+ TemplateSSMDocumentDetails?: TemplateSSMDocumentDetails | undefined;
3109
3109
  }
3110
3110
  /**
3111
3111
  * <p>Filters a conformance pack by Config rule names, compliance types, Amazon Web Services resource types, and resource IDs.</p>
@@ -3116,18 +3116,18 @@ export interface ConformancePackEvaluationFilters {
3116
3116
  * <p>Filters the results by Config rule names.</p>
3117
3117
  * @public
3118
3118
  */
3119
- ConfigRuleNames?: string[];
3119
+ ConfigRuleNames?: string[] | undefined;
3120
3120
  /**
3121
3121
  * <p>Filters the results by compliance.</p>
3122
3122
  * <p>The allowed values are <code>COMPLIANT</code> and <code>NON_COMPLIANT</code>. <code>INSUFFICIENT_DATA</code> is not supported.</p>
3123
3123
  * @public
3124
3124
  */
3125
- ComplianceType?: ConformancePackComplianceType;
3125
+ ComplianceType?: ConformancePackComplianceType | undefined;
3126
3126
  /**
3127
3127
  * <p>Filters the results by the resource type (for example, <code>"AWS::EC2::Instance"</code>). </p>
3128
3128
  * @public
3129
3129
  */
3130
- ResourceType?: string;
3130
+ ResourceType?: string | undefined;
3131
3131
  /**
3132
3132
  * <p>Filters the results by resource IDs.</p>
3133
3133
  * <note>
@@ -3135,7 +3135,7 @@ export interface ConformancePackEvaluationFilters {
3135
3135
  * </note>
3136
3136
  * @public
3137
3137
  */
3138
- ResourceIds?: string[];
3138
+ ResourceIds?: string[] | undefined;
3139
3139
  }
3140
3140
  /**
3141
3141
  * <p>The details of a conformance pack evaluation. Provides Config rule and Amazon Web Services resource type that was evaluated, the compliance of the conformance pack, related time stamps, and supplementary information. </p>
@@ -3166,7 +3166,7 @@ export interface ConformancePackEvaluationResult {
3166
3166
  * <p>Supplementary information about how the evaluation determined the compliance. </p>
3167
3167
  * @public
3168
3168
  */
3169
- Annotation?: string;
3169
+ Annotation?: string | undefined;
3170
3170
  }
3171
3171
  /**
3172
3172
  * <p>Compliance information of one or more Config rules within a conformance pack. You can filter using Config rule names and compliance types.</p>
@@ -3177,18 +3177,18 @@ export interface ConformancePackRuleCompliance {
3177
3177
  * <p>Name of the Config rule.</p>
3178
3178
  * @public
3179
3179
  */
3180
- ConfigRuleName?: string;
3180
+ ConfigRuleName?: string | undefined;
3181
3181
  /**
3182
3182
  * <p>Compliance of the Config rule.</p>
3183
3183
  * @public
3184
3184
  */
3185
- ComplianceType?: ConformancePackComplianceType;
3185
+ ComplianceType?: ConformancePackComplianceType | undefined;
3186
3186
  /**
3187
3187
  * <p>Controls for the conformance pack. A control is a process to prevent or detect problems while meeting objectives.
3188
3188
  * A control can align with a specific compliance regime or map to internal controls defined by an organization.</p>
3189
3189
  * @public
3190
3190
  */
3191
- Controls?: string[];
3191
+ Controls?: string[] | undefined;
3192
3192
  }
3193
3193
  /**
3194
3194
  * @public
@@ -3257,7 +3257,7 @@ export interface ConformancePackStatusDetail {
3257
3257
  * <p>The reason of conformance pack creation failure.</p>
3258
3258
  * @public
3259
3259
  */
3260
- ConformancePackStatusReason?: string;
3260
+ ConformancePackStatusReason?: string | undefined;
3261
3261
  /**
3262
3262
  * <p>Last time when conformation pack creation and update was requested.</p>
3263
3263
  * @public
@@ -3267,7 +3267,7 @@ export interface ConformancePackStatusDetail {
3267
3267
  * <p>Last time when conformation pack creation and update was successful.</p>
3268
3268
  * @public
3269
3269
  */
3270
- LastUpdateCompletedTime?: Date;
3270
+ LastUpdateCompletedTime?: Date | undefined;
3271
3271
  }
3272
3272
  /**
3273
3273
  * <p>You have specified a template that is not valid or supported.</p>
@@ -3590,7 +3590,7 @@ export interface DeleteRemediationConfigurationRequest {
3590
3590
  * <p>The type of a resource.</p>
3591
3591
  * @public
3592
3592
  */
3593
- ResourceType?: string;
3593
+ ResourceType?: string | undefined;
3594
3594
  }
3595
3595
  /**
3596
3596
  * @public
@@ -3664,12 +3664,12 @@ export interface RemediationExceptionResourceKey {
3664
3664
  * <p>The type of a resource.</p>
3665
3665
  * @public
3666
3666
  */
3667
- ResourceType?: string;
3667
+ ResourceType?: string | undefined;
3668
3668
  /**
3669
3669
  * <p>The ID of the resource (for example., sg-xxxxxx).</p>
3670
3670
  * @public
3671
3671
  */
3672
- ResourceId?: string;
3672
+ ResourceId?: string | undefined;
3673
3673
  }
3674
3674
  /**
3675
3675
  * @public
@@ -3695,12 +3695,12 @@ export interface FailedDeleteRemediationExceptionsBatch {
3695
3695
  * <p>Returns a failure message for delete remediation exception. For example, Config creates an exception due to an internal error.</p>
3696
3696
  * @public
3697
3697
  */
3698
- FailureMessage?: string;
3698
+ FailureMessage?: string | undefined;
3699
3699
  /**
3700
3700
  * <p>Returns remediation exception resource key object of the failed items.</p>
3701
3701
  * @public
3702
3702
  */
3703
- FailedItems?: RemediationExceptionResourceKey[];
3703
+ FailedItems?: RemediationExceptionResourceKey[] | undefined;
3704
3704
  }
3705
3705
  /**
3706
3706
  * @public
@@ -3710,7 +3710,7 @@ export interface DeleteRemediationExceptionsResponse {
3710
3710
  * <p>Returns a list of failed delete remediation exceptions batch objects. Each object in the batch consists of a list of failed items and failure messages.</p>
3711
3711
  * @public
3712
3712
  */
3713
- FailedBatches?: FailedDeleteRemediationExceptionsBatch[];
3713
+ FailedBatches?: FailedDeleteRemediationExceptionsBatch[] | undefined;
3714
3714
  }
3715
3715
  /**
3716
3716
  * <p>You tried to delete a remediation exception that does not exist.</p>
@@ -3823,7 +3823,7 @@ export interface DeliverConfigSnapshotResponse {
3823
3823
  * <p>The ID of the snapshot that is being created.</p>
3824
3824
  * @public
3825
3825
  */
3826
- configSnapshotId?: string;
3826
+ configSnapshotId?: string | undefined;
3827
3827
  }
3828
3828
  /**
3829
3829
  * <p>The channel through which Config delivers notifications and
@@ -3840,7 +3840,7 @@ export interface DeliveryChannel {
3840
3840
  * create a delivery channel that has the desired name.</p>
3841
3841
  * @public
3842
3842
  */
3843
- name?: string;
3843
+ name?: string | undefined;
3844
3844
  /**
3845
3845
  * <p>The name of the Amazon S3 bucket to which Config delivers
3846
3846
  * configuration snapshots and configuration history files.</p>
@@ -3849,18 +3849,18 @@ export interface DeliveryChannel {
3849
3849
  * Developer Guide</i>.</p>
3850
3850
  * @public
3851
3851
  */
3852
- s3BucketName?: string;
3852
+ s3BucketName?: string | undefined;
3853
3853
  /**
3854
3854
  * <p>The prefix for the specified Amazon S3 bucket.</p>
3855
3855
  * @public
3856
3856
  */
3857
- s3KeyPrefix?: string;
3857
+ s3KeyPrefix?: string | undefined;
3858
3858
  /**
3859
3859
  * <p>The Amazon Resource Name (ARN) of the Key Management Service (KMS ) KMS key (KMS key) used to encrypt objects delivered by Config.
3860
3860
  * Must belong to the same Region as the destination S3 bucket.</p>
3861
3861
  * @public
3862
3862
  */
3863
- s3KmsKeyArn?: string;
3863
+ s3KmsKeyArn?: string | undefined;
3864
3864
  /**
3865
3865
  * <p>The Amazon Resource Name (ARN) of the Amazon SNS topic to which
3866
3866
  * Config sends notifications about configuration
@@ -3871,13 +3871,13 @@ export interface DeliveryChannel {
3871
3871
  * Developer Guide</i>.</p>
3872
3872
  * @public
3873
3873
  */
3874
- snsTopicARN?: string;
3874
+ snsTopicARN?: string | undefined;
3875
3875
  /**
3876
3876
  * <p>The options for how often Config delivers configuration
3877
3877
  * snapshots to the Amazon S3 bucket.</p>
3878
3878
  * @public
3879
3879
  */
3880
- configSnapshotDeliveryProperties?: ConfigSnapshotDeliveryProperties;
3880
+ configSnapshotDeliveryProperties?: ConfigSnapshotDeliveryProperties | undefined;
3881
3881
  }
3882
3882
  /**
3883
3883
  * <p>The status of a specified delivery channel.</p>
@@ -3890,26 +3890,26 @@ export interface DeliveryChannelStatus {
3890
3890
  * <p>The name of the delivery channel.</p>
3891
3891
  * @public
3892
3892
  */
3893
- name?: string;
3893
+ name?: string | undefined;
3894
3894
  /**
3895
3895
  * <p>A list containing the status of the delivery of the snapshot to
3896
3896
  * the specified Amazon S3 bucket.</p>
3897
3897
  * @public
3898
3898
  */
3899
- configSnapshotDeliveryInfo?: ConfigExportDeliveryInfo;
3899
+ configSnapshotDeliveryInfo?: ConfigExportDeliveryInfo | undefined;
3900
3900
  /**
3901
3901
  * <p>A list that contains the status of the delivery of the
3902
3902
  * configuration history to the specified Amazon S3 bucket.</p>
3903
3903
  * @public
3904
3904
  */
3905
- configHistoryDeliveryInfo?: ConfigExportDeliveryInfo;
3905
+ configHistoryDeliveryInfo?: ConfigExportDeliveryInfo | undefined;
3906
3906
  /**
3907
3907
  * <p>A list containing the status of the delivery of the
3908
3908
  * configuration stream notification to the specified Amazon SNS
3909
3909
  * topic.</p>
3910
3910
  * @public
3911
3911
  */
3912
- configStreamDeliveryInfo?: ConfigStreamDeliveryInfo;
3912
+ configStreamDeliveryInfo?: ConfigStreamDeliveryInfo | undefined;
3913
3913
  }
3914
3914
  /**
3915
3915
  * @public
@@ -3925,7 +3925,7 @@ export interface DescribeAggregateComplianceByConfigRulesRequest {
3925
3925
  * </p>
3926
3926
  * @public
3927
3927
  */
3928
- Filters?: ConfigRuleComplianceFilters;
3928
+ Filters?: ConfigRuleComplianceFilters | undefined;
3929
3929
  /**
3930
3930
  * <p>The maximum number of evaluation results returned on each page.
3931
3931
  * The default is
@@ -3933,13 +3933,13 @@ export interface DescribeAggregateComplianceByConfigRulesRequest {
3933
3933
  * If you specify 0, Config uses the default.</p>
3934
3934
  * @public
3935
3935
  */
3936
- Limit?: number;
3936
+ Limit?: number | undefined;
3937
3937
  /**
3938
3938
  * <p>The <code>nextToken</code> string returned on a previous page that you use
3939
3939
  * to get the next page of results in a paginated response.</p>
3940
3940
  * @public
3941
3941
  */
3942
- NextToken?: string;
3942
+ NextToken?: string | undefined;
3943
3943
  }
3944
3944
  /**
3945
3945
  * @public
@@ -3950,13 +3950,13 @@ export interface DescribeAggregateComplianceByConfigRulesResponse {
3950
3950
  * object.</p>
3951
3951
  * @public
3952
3952
  */
3953
- AggregateComplianceByConfigRules?: AggregateComplianceByConfigRule[];
3953
+ AggregateComplianceByConfigRules?: AggregateComplianceByConfigRule[] | undefined;
3954
3954
  /**
3955
3955
  * <p>The <code>nextToken</code> string returned on a previous page that you use
3956
3956
  * to get the next page of results in a paginated response.</p>
3957
3957
  * @public
3958
3958
  */
3959
- NextToken?: string;
3959
+ NextToken?: string | undefined;
3960
3960
  }
3961
3961
  /**
3962
3962
  * <p>The specified limit is outside the allowable range.</p>
@@ -3997,17 +3997,17 @@ export interface DescribeAggregateComplianceByConformancePacksRequest {
3997
3997
  * <p>Filters the result by <code>AggregateConformancePackComplianceFilters</code> object.</p>
3998
3998
  * @public
3999
3999
  */
4000
- Filters?: AggregateConformancePackComplianceFilters;
4000
+ Filters?: AggregateConformancePackComplianceFilters | undefined;
4001
4001
  /**
4002
4002
  * <p>The maximum number of conformance packs compliance details returned on each page. The default is maximum. If you specify 0, Config uses the default. </p>
4003
4003
  * @public
4004
4004
  */
4005
- Limit?: number;
4005
+ Limit?: number | undefined;
4006
4006
  /**
4007
4007
  * <p>The <code>nextToken</code> string returned on a previous page that you use to get the next page of results in a paginated response.</p>
4008
4008
  * @public
4009
4009
  */
4010
- NextToken?: string;
4010
+ NextToken?: string | undefined;
4011
4011
  }
4012
4012
  /**
4013
4013
  * @public
@@ -4017,12 +4017,12 @@ export interface DescribeAggregateComplianceByConformancePacksResponse {
4017
4017
  * <p>Returns the <code>AggregateComplianceByConformancePack</code> object.</p>
4018
4018
  * @public
4019
4019
  */
4020
- AggregateComplianceByConformancePacks?: AggregateComplianceByConformancePack[];
4020
+ AggregateComplianceByConformancePacks?: AggregateComplianceByConformancePack[] | undefined;
4021
4021
  /**
4022
4022
  * <p>The <code>nextToken</code> string returned on a previous page that you use to get the next page of results in a paginated response.</p>
4023
4023
  * @public
4024
4024
  */
4025
- NextToken?: string;
4025
+ NextToken?: string | undefined;
4026
4026
  }
4027
4027
  /**
4028
4028
  * @public
@@ -4034,13 +4034,13 @@ export interface DescribeAggregationAuthorizationsRequest {
4034
4034
  * the default.</p>
4035
4035
  * @public
4036
4036
  */
4037
- Limit?: number;
4037
+ Limit?: number | undefined;
4038
4038
  /**
4039
4039
  * <p>The <code>nextToken</code> string returned on a previous page that you use
4040
4040
  * to get the next page of results in a paginated response.</p>
4041
4041
  * @public
4042
4042
  */
4043
- NextToken?: string;
4043
+ NextToken?: string | undefined;
4044
4044
  }
4045
4045
  /**
4046
4046
  * @public
@@ -4051,13 +4051,13 @@ export interface DescribeAggregationAuthorizationsResponse {
4051
4051
  * accounts and regions.</p>
4052
4052
  * @public
4053
4053
  */
4054
- AggregationAuthorizations?: AggregationAuthorization[];
4054
+ AggregationAuthorizations?: AggregationAuthorization[] | undefined;
4055
4055
  /**
4056
4056
  * <p>The <code>nextToken</code> string returned on a previous page that you use
4057
4057
  * to get the next page of results in a paginated response.</p>
4058
4058
  * @public
4059
4059
  */
4060
- NextToken?: string;
4060
+ NextToken?: string | undefined;
4061
4061
  }
4062
4062
  /**
4063
4063
  * <p></p>
@@ -4069,19 +4069,19 @@ export interface DescribeComplianceByConfigRuleRequest {
4069
4069
  * by rule.</p>
4070
4070
  * @public
4071
4071
  */
4072
- ConfigRuleNames?: string[];
4072
+ ConfigRuleNames?: string[] | undefined;
4073
4073
  /**
4074
4074
  * <p>Filters the results by compliance.</p>
4075
4075
  * @public
4076
4076
  */
4077
- ComplianceTypes?: ComplianceType[];
4077
+ ComplianceTypes?: ComplianceType[] | undefined;
4078
4078
  /**
4079
4079
  * <p>The <code>nextToken</code> string returned on a previous page
4080
4080
  * that you use to get the next page of results in a paginated
4081
4081
  * response.</p>
4082
4082
  * @public
4083
4083
  */
4084
- NextToken?: string;
4084
+ NextToken?: string | undefined;
4085
4085
  }
4086
4086
  /**
4087
4087
  * <p></p>
@@ -4093,13 +4093,13 @@ export interface DescribeComplianceByConfigRuleResponse {
4093
4093
  * compliant.</p>
4094
4094
  * @public
4095
4095
  */
4096
- ComplianceByConfigRules?: ComplianceByConfigRule[];
4096
+ ComplianceByConfigRules?: ComplianceByConfigRule[] | undefined;
4097
4097
  /**
4098
4098
  * <p>The string that you use in a subsequent request to get the next
4099
4099
  * page of results in a paginated response.</p>
4100
4100
  * @public
4101
4101
  */
4102
- NextToken?: string;
4102
+ NextToken?: string | undefined;
4103
4103
  }
4104
4104
  /**
4105
4105
  * <p></p>
@@ -4113,7 +4113,7 @@ export interface DescribeComplianceByResourceRequest {
4113
4113
  * specifying <code>AWS::::Account</code>.</p>
4114
4114
  * @public
4115
4115
  */
4116
- ResourceType?: string;
4116
+ ResourceType?: string | undefined;
4117
4117
  /**
4118
4118
  * <p>The ID of the Amazon Web Services resource for which you want compliance
4119
4119
  * information. You can specify only one resource ID. If you specify a
@@ -4121,26 +4121,26 @@ export interface DescribeComplianceByResourceRequest {
4121
4121
  * <code>ResourceType</code>.</p>
4122
4122
  * @public
4123
4123
  */
4124
- ResourceId?: string;
4124
+ ResourceId?: string | undefined;
4125
4125
  /**
4126
4126
  * <p>Filters the results by compliance.</p>
4127
4127
  * @public
4128
4128
  */
4129
- ComplianceTypes?: ComplianceType[];
4129
+ ComplianceTypes?: ComplianceType[] | undefined;
4130
4130
  /**
4131
4131
  * <p>The maximum number of evaluation results returned on each page.
4132
4132
  * The default is 10. You cannot specify a number greater than 100. If
4133
4133
  * you specify 0, Config uses the default.</p>
4134
4134
  * @public
4135
4135
  */
4136
- Limit?: number;
4136
+ Limit?: number | undefined;
4137
4137
  /**
4138
4138
  * <p>The <code>nextToken</code> string returned on a previous page
4139
4139
  * that you use to get the next page of results in a paginated
4140
4140
  * response.</p>
4141
4141
  * @public
4142
4142
  */
4143
- NextToken?: string;
4143
+ NextToken?: string | undefined;
4144
4144
  }
4145
4145
  /**
4146
4146
  * <p></p>
@@ -4152,13 +4152,13 @@ export interface DescribeComplianceByResourceResponse {
4152
4152
  * of the Config rules that evaluate it.</p>
4153
4153
  * @public
4154
4154
  */
4155
- ComplianceByResources?: ComplianceByResource[];
4155
+ ComplianceByResources?: ComplianceByResource[] | undefined;
4156
4156
  /**
4157
4157
  * <p>The string that you use in a subsequent request to get the next
4158
4158
  * page of results in a paginated response.</p>
4159
4159
  * @public
4160
4160
  */
4161
- NextToken?: string;
4161
+ NextToken?: string | undefined;
4162
4162
  }
4163
4163
  /**
4164
4164
  * <p></p>
@@ -4172,14 +4172,14 @@ export interface DescribeConfigRuleEvaluationStatusRequest {
4172
4172
  * use.</p>
4173
4173
  * @public
4174
4174
  */
4175
- ConfigRuleNames?: string[];
4175
+ ConfigRuleNames?: string[] | undefined;
4176
4176
  /**
4177
4177
  * <p>The <code>nextToken</code> string returned on a previous page
4178
4178
  * that you use to get the next page of results in a paginated
4179
4179
  * response.</p>
4180
4180
  * @public
4181
4181
  */
4182
- NextToken?: string;
4182
+ NextToken?: string | undefined;
4183
4183
  /**
4184
4184
  * <p>The number of rule evaluation results that you want
4185
4185
  * returned.</p>
@@ -4190,7 +4190,7 @@ export interface DescribeConfigRuleEvaluationStatusRequest {
4190
4190
  * Reference Guide</i>.</p>
4191
4191
  * @public
4192
4192
  */
4193
- Limit?: number;
4193
+ Limit?: number | undefined;
4194
4194
  }
4195
4195
  /**
4196
4196
  * <p></p>
@@ -4201,13 +4201,13 @@ export interface DescribeConfigRuleEvaluationStatusResponse {
4201
4201
  * <p>Status information about your Config managed rules.</p>
4202
4202
  * @public
4203
4203
  */
4204
- ConfigRulesEvaluationStatus?: ConfigRuleEvaluationStatus[];
4204
+ ConfigRulesEvaluationStatus?: ConfigRuleEvaluationStatus[] | undefined;
4205
4205
  /**
4206
4206
  * <p>The string that you use in a subsequent request to get the next
4207
4207
  * page of results in a paginated response.</p>
4208
4208
  * @public
4209
4209
  */
4210
- NextToken?: string;
4210
+ NextToken?: string | undefined;
4211
4211
  }
4212
4212
  /**
4213
4213
  * <p>Returns a filtered list of Detective or Proactive Config rules. By default, if the filter is not defined, this API returns an unfiltered list. For more information on Detective or Proactive Config rules,
@@ -4221,7 +4221,7 @@ export interface DescribeConfigRulesFilters {
4221
4221
  * <p>The mode of an evaluation. The valid values are Detective or Proactive.</p>
4222
4222
  * @public
4223
4223
  */
4224
- EvaluationMode?: EvaluationMode;
4224
+ EvaluationMode?: EvaluationMode | undefined;
4225
4225
  }
4226
4226
  /**
4227
4227
  * <p></p>
@@ -4234,14 +4234,14 @@ export interface DescribeConfigRulesRequest {
4234
4234
  * your rules.</p>
4235
4235
  * @public
4236
4236
  */
4237
- ConfigRuleNames?: string[];
4237
+ ConfigRuleNames?: string[] | undefined;
4238
4238
  /**
4239
4239
  * <p>The <code>nextToken</code> string returned on a previous page
4240
4240
  * that you use to get the next page of results in a paginated
4241
4241
  * response.</p>
4242
4242
  * @public
4243
4243
  */
4244
- NextToken?: string;
4244
+ NextToken?: string | undefined;
4245
4245
  /**
4246
4246
  * <p>Returns a list of Detective or Proactive Config rules. By default, this API returns an unfiltered list. For more information on Detective or Proactive Config rules,
4247
4247
  * see <a href="https://docs.aws.amazon.com/config/latest/developerguide/evaluate-config-rules.html">
@@ -4249,7 +4249,7 @@ export interface DescribeConfigRulesRequest {
4249
4249
  * </a> in the <i>Config Developer Guide</i>.</p>
4250
4250
  * @public
4251
4251
  */
4252
- Filters?: DescribeConfigRulesFilters;
4252
+ Filters?: DescribeConfigRulesFilters | undefined;
4253
4253
  }
4254
4254
  /**
4255
4255
  * <p></p>
@@ -4260,13 +4260,13 @@ export interface DescribeConfigRulesResponse {
4260
4260
  * <p>The details about your Config rules.</p>
4261
4261
  * @public
4262
4262
  */
4263
- ConfigRules?: ConfigRule[];
4263
+ ConfigRules?: ConfigRule[] | undefined;
4264
4264
  /**
4265
4265
  * <p>The string that you use in a subsequent request to get the next
4266
4266
  * page of results in a paginated response.</p>
4267
4267
  * @public
4268
4268
  */
4269
- NextToken?: string;
4269
+ NextToken?: string | undefined;
4270
4270
  }
4271
4271
  /**
4272
4272
  * @public
@@ -4276,20 +4276,20 @@ export interface DescribeConfigurationAggregatorsRequest {
4276
4276
  * <p>The name of the configuration aggregators.</p>
4277
4277
  * @public
4278
4278
  */
4279
- ConfigurationAggregatorNames?: string[];
4279
+ ConfigurationAggregatorNames?: string[] | undefined;
4280
4280
  /**
4281
4281
  * <p>The <code>nextToken</code> string returned on a previous page that you use
4282
4282
  * to get the next page of results in a paginated response.</p>
4283
4283
  * @public
4284
4284
  */
4285
- NextToken?: string;
4285
+ NextToken?: string | undefined;
4286
4286
  /**
4287
4287
  * <p>The maximum number of configuration aggregators returned on
4288
4288
  * each page. The default is maximum. If you specify 0, Config uses
4289
4289
  * the default.</p>
4290
4290
  * @public
4291
4291
  */
4292
- Limit?: number;
4292
+ Limit?: number | undefined;
4293
4293
  }
4294
4294
  /**
4295
4295
  * @public
@@ -4299,13 +4299,13 @@ export interface DescribeConfigurationAggregatorsResponse {
4299
4299
  * <p>Returns a ConfigurationAggregators object.</p>
4300
4300
  * @public
4301
4301
  */
4302
- ConfigurationAggregators?: ConfigurationAggregator[];
4302
+ ConfigurationAggregators?: ConfigurationAggregator[] | undefined;
4303
4303
  /**
4304
4304
  * <p>The <code>nextToken</code> string returned on a previous page that you use
4305
4305
  * to get the next page of results in a paginated response.</p>
4306
4306
  * @public
4307
4307
  */
4308
- NextToken?: string;
4308
+ NextToken?: string | undefined;
4309
4309
  }
4310
4310
  /**
4311
4311
  * @public
@@ -4334,20 +4334,20 @@ export interface DescribeConfigurationAggregatorSourcesStatusRequest {
4334
4334
  * </ul>
4335
4335
  * @public
4336
4336
  */
4337
- UpdateStatus?: AggregatedSourceStatusType[];
4337
+ UpdateStatus?: AggregatedSourceStatusType[] | undefined;
4338
4338
  /**
4339
4339
  * <p>The <code>nextToken</code> string returned on a previous page that you use
4340
4340
  * to get the next page of results in a paginated response.</p>
4341
4341
  * @public
4342
4342
  */
4343
- NextToken?: string;
4343
+ NextToken?: string | undefined;
4344
4344
  /**
4345
4345
  * <p>The maximum number of AggregatorSourceStatus returned on each
4346
4346
  * page. The default is maximum. If you specify 0, Config uses the
4347
4347
  * default.</p>
4348
4348
  * @public
4349
4349
  */
4350
- Limit?: number;
4350
+ Limit?: number | undefined;
4351
4351
  }
4352
4352
  /**
4353
4353
  * @public
@@ -4358,13 +4358,13 @@ export interface DescribeConfigurationAggregatorSourcesStatusResponse {
4358
4358
  * </p>
4359
4359
  * @public
4360
4360
  */
4361
- AggregatedSourceStatusList?: AggregatedSourceStatus[];
4361
+ AggregatedSourceStatusList?: AggregatedSourceStatus[] | undefined;
4362
4362
  /**
4363
4363
  * <p>The <code>nextToken</code> string returned on a previous page that you use
4364
4364
  * to get the next page of results in a paginated response.</p>
4365
4365
  * @public
4366
4366
  */
4367
- NextToken?: string;
4367
+ NextToken?: string | undefined;
4368
4368
  }
4369
4369
  /**
4370
4370
  * <p>The input for the <a>DescribeConfigurationRecorders</a> action.</p>
@@ -4375,7 +4375,7 @@ export interface DescribeConfigurationRecordersRequest {
4375
4375
  * <p>A list of configuration recorder names.</p>
4376
4376
  * @public
4377
4377
  */
4378
- ConfigurationRecorderNames?: string[];
4378
+ ConfigurationRecorderNames?: string[] | undefined;
4379
4379
  }
4380
4380
  /**
4381
4381
  * <p>The output for the <a>DescribeConfigurationRecorders</a> action.</p>
@@ -4387,7 +4387,7 @@ export interface DescribeConfigurationRecordersResponse {
4387
4387
  * configuration recorders.</p>
4388
4388
  * @public
4389
4389
  */
4390
- ConfigurationRecorders?: ConfigurationRecorder[];
4390
+ ConfigurationRecorders?: ConfigurationRecorder[] | undefined;
4391
4391
  }
4392
4392
  /**
4393
4393
  * <p>The input for the <a>DescribeConfigurationRecorderStatus</a>
@@ -4401,7 +4401,7 @@ export interface DescribeConfigurationRecorderStatusRequest {
4401
4401
  * configuration recorders associated with the account.</p>
4402
4402
  * @public
4403
4403
  */
4404
- ConfigurationRecorderNames?: string[];
4404
+ ConfigurationRecorderNames?: string[] | undefined;
4405
4405
  }
4406
4406
  /**
4407
4407
  * <p>The output for the <a>DescribeConfigurationRecorderStatus</a> action, in JSON
@@ -4414,7 +4414,7 @@ export interface DescribeConfigurationRecorderStatusResponse {
4414
4414
  * recorders.</p>
4415
4415
  * @public
4416
4416
  */
4417
- ConfigurationRecordersStatus?: ConfigurationRecorderStatus[];
4417
+ ConfigurationRecordersStatus?: ConfigurationRecorderStatus[] | undefined;
4418
4418
  }
4419
4419
  /**
4420
4420
  * @public
@@ -4429,17 +4429,17 @@ export interface DescribeConformancePackComplianceRequest {
4429
4429
  * <p>A <code>ConformancePackComplianceFilters</code> object.</p>
4430
4430
  * @public
4431
4431
  */
4432
- Filters?: ConformancePackComplianceFilters;
4432
+ Filters?: ConformancePackComplianceFilters | undefined;
4433
4433
  /**
4434
4434
  * <p>The maximum number of Config rules within a conformance pack are returned on each page.</p>
4435
4435
  * @public
4436
4436
  */
4437
- Limit?: number;
4437
+ Limit?: number | undefined;
4438
4438
  /**
4439
4439
  * <p>The <code>nextToken</code> string returned in a previous request that you use to request the next page of results in a paginated response.</p>
4440
4440
  * @public
4441
4441
  */
4442
- NextToken?: string;
4442
+ NextToken?: string | undefined;
4443
4443
  }
4444
4444
  /**
4445
4445
  * @public
@@ -4459,7 +4459,7 @@ export interface DescribeConformancePackComplianceResponse {
4459
4459
  * <p>The <code>nextToken</code> string returned in a previous request that you use to request the next page of results in a paginated response.</p>
4460
4460
  * @public
4461
4461
  */
4462
- NextToken?: string;
4462
+ NextToken?: string | undefined;
4463
4463
  }
4464
4464
  /**
4465
4465
  * <p>Config rule that you passed in the filter does not exist.</p>
@@ -4481,17 +4481,17 @@ export interface DescribeConformancePacksRequest {
4481
4481
  * <p>Comma-separated list of conformance pack names for which you want details. If you do not specify any names, Config returns details for all your conformance packs. </p>
4482
4482
  * @public
4483
4483
  */
4484
- ConformancePackNames?: string[];
4484
+ ConformancePackNames?: string[] | undefined;
4485
4485
  /**
4486
4486
  * <p>The maximum number of conformance packs returned on each page.</p>
4487
4487
  * @public
4488
4488
  */
4489
- Limit?: number;
4489
+ Limit?: number | undefined;
4490
4490
  /**
4491
4491
  * <p>The <code>nextToken</code> string returned in a previous request that you use to request the next page of results in a paginated response.</p>
4492
4492
  * @public
4493
4493
  */
4494
- NextToken?: string;
4494
+ NextToken?: string | undefined;
4495
4495
  }
4496
4496
  /**
4497
4497
  * @public
@@ -4501,12 +4501,12 @@ export interface DescribeConformancePacksResponse {
4501
4501
  * <p>Returns a list of <code>ConformancePackDetail</code> objects.</p>
4502
4502
  * @public
4503
4503
  */
4504
- ConformancePackDetails?: ConformancePackDetail[];
4504
+ ConformancePackDetails?: ConformancePackDetail[] | undefined;
4505
4505
  /**
4506
4506
  * <p>The <code>nextToken</code> string returned in a previous request that you use to request the next page of results in a paginated response.</p>
4507
4507
  * @public
4508
4508
  */
4509
- NextToken?: string;
4509
+ NextToken?: string | undefined;
4510
4510
  }
4511
4511
  /**
4512
4512
  * @public
@@ -4516,17 +4516,17 @@ export interface DescribeConformancePackStatusRequest {
4516
4516
  * <p>Comma-separated list of conformance pack names.</p>
4517
4517
  * @public
4518
4518
  */
4519
- ConformancePackNames?: string[];
4519
+ ConformancePackNames?: string[] | undefined;
4520
4520
  /**
4521
4521
  * <p>The maximum number of conformance packs status returned on each page.</p>
4522
4522
  * @public
4523
4523
  */
4524
- Limit?: number;
4524
+ Limit?: number | undefined;
4525
4525
  /**
4526
4526
  * <p>The <code>nextToken</code> string returned in a previous request that you use to request the next page of results in a paginated response.</p>
4527
4527
  * @public
4528
4528
  */
4529
- NextToken?: string;
4529
+ NextToken?: string | undefined;
4530
4530
  }
4531
4531
  /**
4532
4532
  * @public
@@ -4536,12 +4536,12 @@ export interface DescribeConformancePackStatusResponse {
4536
4536
  * <p>A list of <code>ConformancePackStatusDetail</code> objects.</p>
4537
4537
  * @public
4538
4538
  */
4539
- ConformancePackStatusDetails?: ConformancePackStatusDetail[];
4539
+ ConformancePackStatusDetails?: ConformancePackStatusDetail[] | undefined;
4540
4540
  /**
4541
4541
  * <p>The <code>nextToken</code> string returned in a previous request that you use to request the next page of results in a paginated response.</p>
4542
4542
  * @public
4543
4543
  */
4544
- NextToken?: string;
4544
+ NextToken?: string | undefined;
4545
4545
  }
4546
4546
  /**
4547
4547
  * <p>The input for the <a>DescribeDeliveryChannels</a>
@@ -4553,7 +4553,7 @@ export interface DescribeDeliveryChannelsRequest {
4553
4553
  * <p>A list of delivery channel names.</p>
4554
4554
  * @public
4555
4555
  */
4556
- DeliveryChannelNames?: string[];
4556
+ DeliveryChannelNames?: string[] | undefined;
4557
4557
  }
4558
4558
  /**
4559
4559
  * <p>The output for the <a>DescribeDeliveryChannels</a>
@@ -4566,7 +4566,7 @@ export interface DescribeDeliveryChannelsResponse {
4566
4566
  * channel.</p>
4567
4567
  * @public
4568
4568
  */
4569
- DeliveryChannels?: DeliveryChannel[];
4569
+ DeliveryChannels?: DeliveryChannel[] | undefined;
4570
4570
  }
4571
4571
  /**
4572
4572
  * <p>The input for the <a>DeliveryChannelStatus</a>
@@ -4578,7 +4578,7 @@ export interface DescribeDeliveryChannelStatusRequest {
4578
4578
  * <p>A list of delivery channel names.</p>
4579
4579
  * @public
4580
4580
  */
4581
- DeliveryChannelNames?: string[];
4581
+ DeliveryChannelNames?: string[] | undefined;
4582
4582
  }
4583
4583
  /**
4584
4584
  * <p>The output for the <a>DescribeDeliveryChannelStatus</a> action.</p>
@@ -4590,7 +4590,7 @@ export interface DescribeDeliveryChannelStatusResponse {
4590
4590
  * channel.</p>
4591
4591
  * @public
4592
4592
  */
4593
- DeliveryChannelsStatus?: DeliveryChannelStatus[];
4593
+ DeliveryChannelsStatus?: DeliveryChannelStatus[] | undefined;
4594
4594
  }
4595
4595
  /**
4596
4596
  * @public
@@ -4600,17 +4600,17 @@ export interface DescribeOrganizationConfigRulesRequest {
4600
4600
  * <p>The names of organization Config rules for which you want details. If you do not specify any names, Config returns details for all your organization Config rules.</p>
4601
4601
  * @public
4602
4602
  */
4603
- OrganizationConfigRuleNames?: string[];
4603
+ OrganizationConfigRuleNames?: string[] | undefined;
4604
4604
  /**
4605
4605
  * <p>The maximum number of organization Config rules returned on each page. If you do no specify a number, Config uses the default. The default is 100.</p>
4606
4606
  * @public
4607
4607
  */
4608
- Limit?: number;
4608
+ Limit?: number | undefined;
4609
4609
  /**
4610
4610
  * <p>The <code>nextToken</code> string returned on a previous page that you use to get the next page of results in a paginated response. </p>
4611
4611
  * @public
4612
4612
  */
4613
- NextToken?: string;
4613
+ NextToken?: string | undefined;
4614
4614
  }
4615
4615
  /**
4616
4616
  * @public
@@ -4636,7 +4636,7 @@ export interface OrganizationCustomPolicyRuleMetadataNoPolicy {
4636
4636
  * <p>The description that you provide for your organization Config Custom Policy rule.</p>
4637
4637
  * @public
4638
4638
  */
4639
- Description?: string;
4639
+ Description?: string | undefined;
4640
4640
  /**
4641
4641
  * <p>The type of notification that triggers Config to run an evaluation for a rule.
4642
4642
  * For Config Custom Policy rules, Config supports change
@@ -4654,50 +4654,50 @@ export interface OrganizationCustomPolicyRuleMetadataNoPolicy {
4654
4654
  * </ul>
4655
4655
  * @public
4656
4656
  */
4657
- OrganizationConfigRuleTriggerTypes?: OrganizationConfigRuleTriggerTypeNoSN[];
4657
+ OrganizationConfigRuleTriggerTypes?: OrganizationConfigRuleTriggerTypeNoSN[] | undefined;
4658
4658
  /**
4659
4659
  * <p>A string, in JSON format, that is passed to your organization Config Custom Policy rule.</p>
4660
4660
  * @public
4661
4661
  */
4662
- InputParameters?: string;
4662
+ InputParameters?: string | undefined;
4663
4663
  /**
4664
4664
  * <p>The maximum frequency with which Config runs evaluations for a rule. Your
4665
4665
  * Config Custom Policy rule is triggered when Config delivers
4666
4666
  * the configuration snapshot. For more information, see <a>ConfigSnapshotDeliveryProperties</a>.</p>
4667
4667
  * @public
4668
4668
  */
4669
- MaximumExecutionFrequency?: MaximumExecutionFrequency;
4669
+ MaximumExecutionFrequency?: MaximumExecutionFrequency | undefined;
4670
4670
  /**
4671
4671
  * <p>The type of the Amazon Web Services resource that was evaluated.</p>
4672
4672
  * @public
4673
4673
  */
4674
- ResourceTypesScope?: string[];
4674
+ ResourceTypesScope?: string[] | undefined;
4675
4675
  /**
4676
4676
  * <p>The ID of the Amazon Web Services resource that was evaluated.</p>
4677
4677
  * @public
4678
4678
  */
4679
- ResourceIdScope?: string;
4679
+ ResourceIdScope?: string | undefined;
4680
4680
  /**
4681
4681
  * <p>One part of a key-value pair that make up a tag. A key is a general label that acts like a category for more specific tag values.</p>
4682
4682
  * @public
4683
4683
  */
4684
- TagKeyScope?: string;
4684
+ TagKeyScope?: string | undefined;
4685
4685
  /**
4686
4686
  * <p>The optional part of a key-value pair that make up a tag. A value acts as a descriptor within a tag category (key).</p>
4687
4687
  * @public
4688
4688
  */
4689
- TagValueScope?: string;
4689
+ TagValueScope?: string | undefined;
4690
4690
  /**
4691
4691
  * <p>The runtime system for your organization Config Custom Policy rules. Guard is a policy-as-code language that allows you to write policies that are enforced by Config Custom Policy rules. For more information about Guard, see the <a href="https://github.com/aws-cloudformation/cloudformation-guard">Guard GitHub
4692
4692
  * Repository</a>.</p>
4693
4693
  * @public
4694
4694
  */
4695
- PolicyRuntime?: string;
4695
+ PolicyRuntime?: string | undefined;
4696
4696
  /**
4697
4697
  * <p>A list of accounts that you can enable debug logging for your organization Config Custom Policy rule. List is null when debug logging is enabled for all accounts.</p>
4698
4698
  * @public
4699
4699
  */
4700
- DebugLogDeliveryAccounts?: string[];
4700
+ DebugLogDeliveryAccounts?: string[] | undefined;
4701
4701
  }
4702
4702
  /**
4703
4703
  * @public
@@ -4723,7 +4723,7 @@ export interface OrganizationCustomRuleMetadata {
4723
4723
  * <p>The description that you provide for your organization Config rule.</p>
4724
4724
  * @public
4725
4725
  */
4726
- Description?: string;
4726
+ Description?: string | undefined;
4727
4727
  /**
4728
4728
  * <p>The lambda function ARN.</p>
4729
4729
  * @public
@@ -4753,7 +4753,7 @@ export interface OrganizationCustomRuleMetadata {
4753
4753
  * <p>A string, in JSON format, that is passed to your organization Config rule Lambda function.</p>
4754
4754
  * @public
4755
4755
  */
4756
- InputParameters?: string;
4756
+ InputParameters?: string | undefined;
4757
4757
  /**
4758
4758
  * <p>The maximum frequency with which Config runs evaluations for a rule.
4759
4759
  * Your custom rule is triggered when Config delivers the configuration snapshot. For more information, see <a>ConfigSnapshotDeliveryProperties</a>.</p>
@@ -4763,29 +4763,29 @@ export interface OrganizationCustomRuleMetadata {
4763
4763
  * </note>
4764
4764
  * @public
4765
4765
  */
4766
- MaximumExecutionFrequency?: MaximumExecutionFrequency;
4766
+ MaximumExecutionFrequency?: MaximumExecutionFrequency | undefined;
4767
4767
  /**
4768
4768
  * <p>The type of the Amazon Web Services resource that was evaluated.</p>
4769
4769
  * @public
4770
4770
  */
4771
- ResourceTypesScope?: string[];
4771
+ ResourceTypesScope?: string[] | undefined;
4772
4772
  /**
4773
4773
  * <p>The ID of the Amazon Web Services resource that was evaluated.</p>
4774
4774
  * @public
4775
4775
  */
4776
- ResourceIdScope?: string;
4776
+ ResourceIdScope?: string | undefined;
4777
4777
  /**
4778
4778
  * <p>One part of a key-value pair that make up a tag.
4779
4779
  * A key is a general label that acts like a category for more specific tag values. </p>
4780
4780
  * @public
4781
4781
  */
4782
- TagKeyScope?: string;
4782
+ TagKeyScope?: string | undefined;
4783
4783
  /**
4784
4784
  * <p>The optional part of a key-value pair that make up a tag.
4785
4785
  * A value acts as a descriptor within a tag category (key). </p>
4786
4786
  * @public
4787
4787
  */
4788
- TagValueScope?: string;
4788
+ TagValueScope?: string | undefined;
4789
4789
  }
4790
4790
  /**
4791
4791
  * <p>An object that specifies organization managed rule metadata such as resource type and ID of Amazon Web Services resource along with the rule identifier.
@@ -4797,7 +4797,7 @@ export interface OrganizationManagedRuleMetadata {
4797
4797
  * <p>The description that you provide for your organization Config rule.</p>
4798
4798
  * @public
4799
4799
  */
4800
- Description?: string;
4800
+ Description?: string | undefined;
4801
4801
  /**
4802
4802
  * <p>For organization config managed rules, a predefined identifier from a
4803
4803
  * list. For example, <code>IAM_PASSWORD_POLICY</code> is a managed
@@ -4809,7 +4809,7 @@ export interface OrganizationManagedRuleMetadata {
4809
4809
  * <p>A string, in JSON format, that is passed to your organization Config rule Lambda function.</p>
4810
4810
  * @public
4811
4811
  */
4812
- InputParameters?: string;
4812
+ InputParameters?: string | undefined;
4813
4813
  /**
4814
4814
  * <p>The maximum frequency with which Config runs evaluations for a rule. This is for an Config managed rule that is triggered at a periodic frequency.</p>
4815
4815
  * <note>
@@ -4818,29 +4818,29 @@ export interface OrganizationManagedRuleMetadata {
4818
4818
  * </note>
4819
4819
  * @public
4820
4820
  */
4821
- MaximumExecutionFrequency?: MaximumExecutionFrequency;
4821
+ MaximumExecutionFrequency?: MaximumExecutionFrequency | undefined;
4822
4822
  /**
4823
4823
  * <p>The type of the Amazon Web Services resource that was evaluated.</p>
4824
4824
  * @public
4825
4825
  */
4826
- ResourceTypesScope?: string[];
4826
+ ResourceTypesScope?: string[] | undefined;
4827
4827
  /**
4828
4828
  * <p>The ID of the Amazon Web Services resource that was evaluated.</p>
4829
4829
  * @public
4830
4830
  */
4831
- ResourceIdScope?: string;
4831
+ ResourceIdScope?: string | undefined;
4832
4832
  /**
4833
4833
  * <p>One part of a key-value pair that make up a tag.
4834
4834
  * A key is a general label that acts like a category for more specific tag values. </p>
4835
4835
  * @public
4836
4836
  */
4837
- TagKeyScope?: string;
4837
+ TagKeyScope?: string | undefined;
4838
4838
  /**
4839
4839
  * <p>The optional part of a key-value pair that make up a tag.
4840
4840
  * A value acts as a descriptor within a tag category (key).</p>
4841
4841
  * @public
4842
4842
  */
4843
- TagValueScope?: string;
4843
+ TagValueScope?: string | undefined;
4844
4844
  }
4845
4845
  /**
4846
4846
  * <p>An organization Config rule that has information about Config rules that Config creates in member accounts.</p>
@@ -4861,22 +4861,22 @@ export interface OrganizationConfigRule {
4861
4861
  * <p>An <code>OrganizationManagedRuleMetadata</code> object.</p>
4862
4862
  * @public
4863
4863
  */
4864
- OrganizationManagedRuleMetadata?: OrganizationManagedRuleMetadata;
4864
+ OrganizationManagedRuleMetadata?: OrganizationManagedRuleMetadata | undefined;
4865
4865
  /**
4866
4866
  * <p>An <code>OrganizationCustomRuleMetadata</code> object.</p>
4867
4867
  * @public
4868
4868
  */
4869
- OrganizationCustomRuleMetadata?: OrganizationCustomRuleMetadata;
4869
+ OrganizationCustomRuleMetadata?: OrganizationCustomRuleMetadata | undefined;
4870
4870
  /**
4871
4871
  * <p>A comma-separated list of accounts excluded from organization Config rule.</p>
4872
4872
  * @public
4873
4873
  */
4874
- ExcludedAccounts?: string[];
4874
+ ExcludedAccounts?: string[] | undefined;
4875
4875
  /**
4876
4876
  * <p>The timestamp of the last update.</p>
4877
4877
  * @public
4878
4878
  */
4879
- LastUpdateTime?: Date;
4879
+ LastUpdateTime?: Date | undefined;
4880
4880
  /**
4881
4881
  * <p>An
4882
4882
  * object that specifies metadata for your organization's Config Custom Policy rule. The metadata includes the runtime system in use, which accounts have
@@ -4884,7 +4884,7 @@ export interface OrganizationConfigRule {
4884
4884
  * ID of Amazon Web Services resource, and organization trigger types that initiate Config to evaluate Amazon Web Services resources against a rule.</p>
4885
4885
  * @public
4886
4886
  */
4887
- OrganizationCustomPolicyRuleMetadata?: OrganizationCustomPolicyRuleMetadataNoPolicy;
4887
+ OrganizationCustomPolicyRuleMetadata?: OrganizationCustomPolicyRuleMetadataNoPolicy | undefined;
4888
4888
  }
4889
4889
  /**
4890
4890
  * @public
@@ -4894,12 +4894,12 @@ export interface DescribeOrganizationConfigRulesResponse {
4894
4894
  * <p>Returns a list of <code>OrganizationConfigRule</code> objects.</p>
4895
4895
  * @public
4896
4896
  */
4897
- OrganizationConfigRules?: OrganizationConfigRule[];
4897
+ OrganizationConfigRules?: OrganizationConfigRule[] | undefined;
4898
4898
  /**
4899
4899
  * <p>The <code>nextToken</code> string returned on a previous page that you use to get the next page of results in a paginated response. </p>
4900
4900
  * @public
4901
4901
  */
4902
- NextToken?: string;
4902
+ NextToken?: string | undefined;
4903
4903
  }
4904
4904
  /**
4905
4905
  * @public
@@ -4909,17 +4909,17 @@ export interface DescribeOrganizationConfigRuleStatusesRequest {
4909
4909
  * <p>The names of organization Config rules for which you want status details. If you do not specify any names, Config returns details for all your organization Config rules.</p>
4910
4910
  * @public
4911
4911
  */
4912
- OrganizationConfigRuleNames?: string[];
4912
+ OrganizationConfigRuleNames?: string[] | undefined;
4913
4913
  /**
4914
4914
  * <p>The maximum number of <code>OrganizationConfigRuleStatuses</code> returned on each page. If you do no specify a number, Config uses the default. The default is 100.</p>
4915
4915
  * @public
4916
4916
  */
4917
- Limit?: number;
4917
+ Limit?: number | undefined;
4918
4918
  /**
4919
4919
  * <p>The <code>nextToken</code> string returned on a previous page that you use to get the next page of results in a paginated response. </p>
4920
4920
  * @public
4921
4921
  */
4922
- NextToken?: string;
4922
+ NextToken?: string | undefined;
4923
4923
  }
4924
4924
  /**
4925
4925
  * @public
@@ -5001,17 +5001,17 @@ export interface OrganizationConfigRuleStatus {
5001
5001
  * <p>An error code that is returned when organization Config rule creation or deletion has failed.</p>
5002
5002
  * @public
5003
5003
  */
5004
- ErrorCode?: string;
5004
+ ErrorCode?: string | undefined;
5005
5005
  /**
5006
5006
  * <p>An error message indicating that organization Config rule creation or deletion failed due to an error.</p>
5007
5007
  * @public
5008
5008
  */
5009
- ErrorMessage?: string;
5009
+ ErrorMessage?: string | undefined;
5010
5010
  /**
5011
5011
  * <p>The timestamp of the last update.</p>
5012
5012
  * @public
5013
5013
  */
5014
- LastUpdateTime?: Date;
5014
+ LastUpdateTime?: Date | undefined;
5015
5015
  }
5016
5016
  /**
5017
5017
  * @public
@@ -5021,12 +5021,12 @@ export interface DescribeOrganizationConfigRuleStatusesResponse {
5021
5021
  * <p>A list of <code>OrganizationConfigRuleStatus</code> objects.</p>
5022
5022
  * @public
5023
5023
  */
5024
- OrganizationConfigRuleStatuses?: OrganizationConfigRuleStatus[];
5024
+ OrganizationConfigRuleStatuses?: OrganizationConfigRuleStatus[] | undefined;
5025
5025
  /**
5026
5026
  * <p>The <code>nextToken</code> string returned on a previous page that you use to get the next page of results in a paginated response. </p>
5027
5027
  * @public
5028
5028
  */
5029
- NextToken?: string;
5029
+ NextToken?: string | undefined;
5030
5030
  }
5031
5031
  /**
5032
5032
  * @public
@@ -5036,19 +5036,19 @@ export interface DescribeOrganizationConformancePacksRequest {
5036
5036
  * <p>The name that you assign to an organization conformance pack.</p>
5037
5037
  * @public
5038
5038
  */
5039
- OrganizationConformancePackNames?: string[];
5039
+ OrganizationConformancePackNames?: string[] | undefined;
5040
5040
  /**
5041
5041
  * <p>The maximum number of organization config packs returned on each page. If you do no specify a
5042
5042
  * number, Config uses the default. The default is 100.</p>
5043
5043
  * @public
5044
5044
  */
5045
- Limit?: number;
5045
+ Limit?: number | undefined;
5046
5046
  /**
5047
5047
  * <p>The nextToken string returned on a previous page that you use to get the next page of results in a
5048
5048
  * paginated response.</p>
5049
5049
  * @public
5050
5050
  */
5051
- NextToken?: string;
5051
+ NextToken?: string | undefined;
5052
5052
  }
5053
5053
  /**
5054
5054
  * <p>An organization conformance pack that has information about conformance packs that Config creates in member accounts. </p>
@@ -5072,7 +5072,7 @@ export interface OrganizationConformancePack {
5072
5072
  * </note>
5073
5073
  * @public
5074
5074
  */
5075
- DeliveryS3Bucket?: string;
5075
+ DeliveryS3Bucket?: string | undefined;
5076
5076
  /**
5077
5077
  * <p>Any folder structure you want to add to an Amazon S3 bucket.</p>
5078
5078
  * <note>
@@ -5080,17 +5080,17 @@ export interface OrganizationConformancePack {
5080
5080
  * </note>
5081
5081
  * @public
5082
5082
  */
5083
- DeliveryS3KeyPrefix?: string;
5083
+ DeliveryS3KeyPrefix?: string | undefined;
5084
5084
  /**
5085
5085
  * <p>A list of <code>ConformancePackInputParameter</code> objects.</p>
5086
5086
  * @public
5087
5087
  */
5088
- ConformancePackInputParameters?: ConformancePackInputParameter[];
5088
+ ConformancePackInputParameters?: ConformancePackInputParameter[] | undefined;
5089
5089
  /**
5090
5090
  * <p>A comma-separated list of accounts excluded from organization conformance pack.</p>
5091
5091
  * @public
5092
5092
  */
5093
- ExcludedAccounts?: string[];
5093
+ ExcludedAccounts?: string[] | undefined;
5094
5094
  /**
5095
5095
  * <p>Last time when organization conformation pack was updated.</p>
5096
5096
  * @public
@@ -5105,13 +5105,13 @@ export interface DescribeOrganizationConformancePacksResponse {
5105
5105
  * <p>Returns a list of OrganizationConformancePacks objects.</p>
5106
5106
  * @public
5107
5107
  */
5108
- OrganizationConformancePacks?: OrganizationConformancePack[];
5108
+ OrganizationConformancePacks?: OrganizationConformancePack[] | undefined;
5109
5109
  /**
5110
5110
  * <p>The nextToken string returned on a previous page that you use to get the next page of results in a
5111
5111
  * paginated response.</p>
5112
5112
  * @public
5113
5113
  */
5114
- NextToken?: string;
5114
+ NextToken?: string | undefined;
5115
5115
  }
5116
5116
  /**
5117
5117
  * @public
@@ -5122,18 +5122,18 @@ export interface DescribeOrganizationConformancePackStatusesRequest {
5122
5122
  * If you do not specify any names, Config returns details for all your organization conformance packs. </p>
5123
5123
  * @public
5124
5124
  */
5125
- OrganizationConformancePackNames?: string[];
5125
+ OrganizationConformancePackNames?: string[] | undefined;
5126
5126
  /**
5127
5127
  * <p>The maximum number of OrganizationConformancePackStatuses returned on each page.
5128
5128
  * If you do no specify a number, Config uses the default. The default is 100. </p>
5129
5129
  * @public
5130
5130
  */
5131
- Limit?: number;
5131
+ Limit?: number | undefined;
5132
5132
  /**
5133
5133
  * <p>The nextToken string returned on a previous page that you use to get the next page of results in a paginated response. </p>
5134
5134
  * @public
5135
5135
  */
5136
- NextToken?: string;
5136
+ NextToken?: string | undefined;
5137
5137
  }
5138
5138
  /**
5139
5139
  * @public
@@ -5221,17 +5221,17 @@ export interface OrganizationConformancePackStatus {
5221
5221
  * <p>An error code that is returned when organization conformance pack creation or deletion has failed in a member account. </p>
5222
5222
  * @public
5223
5223
  */
5224
- ErrorCode?: string;
5224
+ ErrorCode?: string | undefined;
5225
5225
  /**
5226
5226
  * <p>An error message indicating that organization conformance pack creation or deletion failed due to an error. </p>
5227
5227
  * @public
5228
5228
  */
5229
- ErrorMessage?: string;
5229
+ ErrorMessage?: string | undefined;
5230
5230
  /**
5231
5231
  * <p>The timestamp of the last update.</p>
5232
5232
  * @public
5233
5233
  */
5234
- LastUpdateTime?: Date;
5234
+ LastUpdateTime?: Date | undefined;
5235
5235
  }
5236
5236
  /**
5237
5237
  * @public
@@ -5241,12 +5241,12 @@ export interface DescribeOrganizationConformancePackStatusesResponse {
5241
5241
  * <p>A list of <code>OrganizationConformancePackStatus</code> objects. </p>
5242
5242
  * @public
5243
5243
  */
5244
- OrganizationConformancePackStatuses?: OrganizationConformancePackStatus[];
5244
+ OrganizationConformancePackStatuses?: OrganizationConformancePackStatus[] | undefined;
5245
5245
  /**
5246
5246
  * <p>The nextToken string returned on a previous page that you use to get the next page of results in a paginated response. </p>
5247
5247
  * @public
5248
5248
  */
5249
- NextToken?: string;
5249
+ NextToken?: string | undefined;
5250
5250
  }
5251
5251
  /**
5252
5252
  * @public
@@ -5258,13 +5258,13 @@ export interface DescribePendingAggregationRequestsRequest {
5258
5258
  * default.</p>
5259
5259
  * @public
5260
5260
  */
5261
- Limit?: number;
5261
+ Limit?: number | undefined;
5262
5262
  /**
5263
5263
  * <p>The <code>nextToken</code> string returned on a previous page that you use
5264
5264
  * to get the next page of results in a paginated response.</p>
5265
5265
  * @public
5266
5266
  */
5267
- NextToken?: string;
5267
+ NextToken?: string | undefined;
5268
5268
  }
5269
5269
  /**
5270
5270
  * <p>An object that represents the account ID and region of an
@@ -5278,12 +5278,12 @@ export interface PendingAggregationRequest {
5278
5278
  * data.</p>
5279
5279
  * @public
5280
5280
  */
5281
- RequesterAccountId?: string;
5281
+ RequesterAccountId?: string | undefined;
5282
5282
  /**
5283
5283
  * <p>The region requesting to aggregate data. </p>
5284
5284
  * @public
5285
5285
  */
5286
- RequesterAwsRegion?: string;
5286
+ RequesterAwsRegion?: string | undefined;
5287
5287
  }
5288
5288
  /**
5289
5289
  * @public
@@ -5293,13 +5293,13 @@ export interface DescribePendingAggregationRequestsResponse {
5293
5293
  * <p>Returns a PendingAggregationRequests object.</p>
5294
5294
  * @public
5295
5295
  */
5296
- PendingAggregationRequests?: PendingAggregationRequest[];
5296
+ PendingAggregationRequests?: PendingAggregationRequest[] | undefined;
5297
5297
  /**
5298
5298
  * <p>The <code>nextToken</code> string returned on a previous page that you use
5299
5299
  * to get the next page of results in a paginated response.</p>
5300
5300
  * @public
5301
5301
  */
5302
- NextToken?: string;
5302
+ NextToken?: string | undefined;
5303
5303
  }
5304
5304
  /**
5305
5305
  * @public
@@ -5320,14 +5320,14 @@ export interface SsmControls {
5320
5320
  * <p>The maximum percentage of remediation actions allowed to run in parallel on the non-compliant resources for that specific rule. You can specify a percentage, such as 10%. The default value is 10. </p>
5321
5321
  * @public
5322
5322
  */
5323
- ConcurrentExecutionRatePercentage?: number;
5323
+ ConcurrentExecutionRatePercentage?: number | undefined;
5324
5324
  /**
5325
5325
  * <p>The percentage of errors that are allowed before SSM stops running automations on non-compliant resources for that specific rule.
5326
5326
  * You can specify a percentage of errors, for example 10%. If you do not specifiy a percentage, the default is 50%.
5327
5327
  * For example, if you set the ErrorPercentage to 40% for 10 non-compliant resources, then SSM stops running the automations when the fifth error is received. </p>
5328
5328
  * @public
5329
5329
  */
5330
- ErrorPercentage?: number;
5330
+ ErrorPercentage?: number | undefined;
5331
5331
  }
5332
5332
  /**
5333
5333
  * <p>The controls that Config uses for executing remediations.</p>
@@ -5338,7 +5338,7 @@ export interface ExecutionControls {
5338
5338
  * <p>A SsmControls object.</p>
5339
5339
  * @public
5340
5340
  */
5341
- SsmControls?: SsmControls;
5341
+ SsmControls?: SsmControls | undefined;
5342
5342
  }
5343
5343
  /**
5344
5344
  * @public
@@ -5382,12 +5382,12 @@ export interface RemediationParameterValue {
5382
5382
  * <p>The value is dynamic and changes at run-time.</p>
5383
5383
  * @public
5384
5384
  */
5385
- ResourceValue?: ResourceValue;
5385
+ ResourceValue?: ResourceValue | undefined;
5386
5386
  /**
5387
5387
  * <p>The value is static and does not change at run-time.</p>
5388
5388
  * @public
5389
5389
  */
5390
- StaticValue?: StaticValue;
5390
+ StaticValue?: StaticValue | undefined;
5391
5391
  }
5392
5392
  /**
5393
5393
  * @public
@@ -5428,27 +5428,27 @@ export interface RemediationConfiguration {
5428
5428
  * </note>
5429
5429
  * @public
5430
5430
  */
5431
- TargetVersion?: string;
5431
+ TargetVersion?: string | undefined;
5432
5432
  /**
5433
5433
  * <p>An object of the RemediationParameterValue.</p>
5434
5434
  * @public
5435
5435
  */
5436
- Parameters?: Record<string, RemediationParameterValue>;
5436
+ Parameters?: Record<string, RemediationParameterValue> | undefined;
5437
5437
  /**
5438
5438
  * <p>The type of a resource. </p>
5439
5439
  * @public
5440
5440
  */
5441
- ResourceType?: string;
5441
+ ResourceType?: string | undefined;
5442
5442
  /**
5443
5443
  * <p>The remediation is triggered automatically.</p>
5444
5444
  * @public
5445
5445
  */
5446
- Automatic?: boolean;
5446
+ Automatic?: boolean | undefined;
5447
5447
  /**
5448
5448
  * <p>An ExecutionControls object.</p>
5449
5449
  * @public
5450
5450
  */
5451
- ExecutionControls?: ExecutionControls;
5451
+ ExecutionControls?: ExecutionControls | undefined;
5452
5452
  /**
5453
5453
  * <p>The maximum number of failed attempts for auto-remediation. If you do not select a number, the default is 5.</p>
5454
5454
  * <p>For example, if you specify MaximumAutomaticAttempts as 5 with RetryAttemptSeconds as 50 seconds,
@@ -5456,7 +5456,7 @@ export interface RemediationConfiguration {
5456
5456
  * Config will put a RemediationException on your behalf for the failing resource after the 5th failed attempt within 50 seconds.</p>
5457
5457
  * @public
5458
5458
  */
5459
- MaximumAutomaticAttempts?: number;
5459
+ MaximumAutomaticAttempts?: number | undefined;
5460
5460
  /**
5461
5461
  * <p>Time window to determine whether or not to add a remediation exception to prevent infinite remediation attempts.
5462
5462
  * If <code>MaximumAutomaticAttempts</code> remediation attempts have been made under <code>RetryAttemptSeconds</code>, a remediation exception will be added to the resource.
@@ -5466,17 +5466,17 @@ export interface RemediationConfiguration {
5466
5466
  * Config will run auto-remediations 5 times within 50 seconds before adding a remediation exception to the resource.</p>
5467
5467
  * @public
5468
5468
  */
5469
- RetryAttemptSeconds?: number;
5469
+ RetryAttemptSeconds?: number | undefined;
5470
5470
  /**
5471
5471
  * <p>Amazon Resource Name (ARN) of remediation configuration.</p>
5472
5472
  * @public
5473
5473
  */
5474
- Arn?: string;
5474
+ Arn?: string | undefined;
5475
5475
  /**
5476
5476
  * <p>Name of the service that owns the service-linked rule, if applicable.</p>
5477
5477
  * @public
5478
5478
  */
5479
- CreatedByService?: string;
5479
+ CreatedByService?: string | undefined;
5480
5480
  }
5481
5481
  /**
5482
5482
  * @public
@@ -5486,7 +5486,7 @@ export interface DescribeRemediationConfigurationsResponse {
5486
5486
  * <p>Returns a remediation configuration object.</p>
5487
5487
  * @public
5488
5488
  */
5489
- RemediationConfigurations?: RemediationConfiguration[];
5489
+ RemediationConfigurations?: RemediationConfiguration[] | undefined;
5490
5490
  }
5491
5491
  /**
5492
5492
  * @public
@@ -5501,17 +5501,17 @@ export interface DescribeRemediationExceptionsRequest {
5501
5501
  * <p>An exception list of resource exception keys to be processed with the current request. Config adds exception for each resource key. For example, Config adds 3 exceptions for 3 resource keys. </p>
5502
5502
  * @public
5503
5503
  */
5504
- ResourceKeys?: RemediationExceptionResourceKey[];
5504
+ ResourceKeys?: RemediationExceptionResourceKey[] | undefined;
5505
5505
  /**
5506
5506
  * <p>The maximum number of RemediationExceptionResourceKey returned on each page. The default is 25. If you specify 0, Config uses the default.</p>
5507
5507
  * @public
5508
5508
  */
5509
- Limit?: number;
5509
+ Limit?: number | undefined;
5510
5510
  /**
5511
5511
  * <p>The <code>nextToken</code> string returned in a previous request that you use to request the next page of results in a paginated response.</p>
5512
5512
  * @public
5513
5513
  */
5514
- NextToken?: string;
5514
+ NextToken?: string | undefined;
5515
5515
  }
5516
5516
  /**
5517
5517
  * <p>An object that represents the details about the remediation exception. The details include the rule name, an explanation of an exception, the time when the exception will be deleted, the resource ID, and resource type. </p>
@@ -5537,12 +5537,12 @@ export interface RemediationException {
5537
5537
  * <p>An explanation of an remediation exception.</p>
5538
5538
  * @public
5539
5539
  */
5540
- Message?: string;
5540
+ Message?: string | undefined;
5541
5541
  /**
5542
5542
  * <p>The time when the remediation exception will be deleted.</p>
5543
5543
  * @public
5544
5544
  */
5545
- ExpirationTime?: Date;
5545
+ ExpirationTime?: Date | undefined;
5546
5546
  }
5547
5547
  /**
5548
5548
  * @public
@@ -5552,12 +5552,12 @@ export interface DescribeRemediationExceptionsResponse {
5552
5552
  * <p>Returns a list of remediation exception objects.</p>
5553
5553
  * @public
5554
5554
  */
5555
- RemediationExceptions?: RemediationException[];
5555
+ RemediationExceptions?: RemediationException[] | undefined;
5556
5556
  /**
5557
5557
  * <p>The <code>nextToken</code> string returned in a previous request that you use to request the next page of results in a paginated response.</p>
5558
5558
  * @public
5559
5559
  */
5560
- NextToken?: string;
5560
+ NextToken?: string | undefined;
5561
5561
  }
5562
5562
  /**
5563
5563
  * @public
@@ -5572,17 +5572,17 @@ export interface DescribeRemediationExecutionStatusRequest {
5572
5572
  * <p>A list of resource keys to be processed with the current request. Each element in the list consists of the resource type and resource ID. </p>
5573
5573
  * @public
5574
5574
  */
5575
- ResourceKeys?: ResourceKey[];
5575
+ ResourceKeys?: ResourceKey[] | undefined;
5576
5576
  /**
5577
5577
  * <p>The maximum number of RemediationExecutionStatuses returned on each page. The default is maximum. If you specify 0, Config uses the default. </p>
5578
5578
  * @public
5579
5579
  */
5580
- Limit?: number;
5580
+ Limit?: number | undefined;
5581
5581
  /**
5582
5582
  * <p>The <code>nextToken</code> string returned on a previous page that you use to get the next page of results in a paginated response.</p>
5583
5583
  * @public
5584
5584
  */
5585
- NextToken?: string;
5585
+ NextToken?: string | undefined;
5586
5586
  }
5587
5587
  /**
5588
5588
  * @public
@@ -5620,27 +5620,27 @@ export interface RemediationExecutionStep {
5620
5620
  * <p>The details of the step.</p>
5621
5621
  * @public
5622
5622
  */
5623
- Name?: string;
5623
+ Name?: string | undefined;
5624
5624
  /**
5625
5625
  * <p>The valid status of the step.</p>
5626
5626
  * @public
5627
5627
  */
5628
- State?: RemediationExecutionStepState;
5628
+ State?: RemediationExecutionStepState | undefined;
5629
5629
  /**
5630
5630
  * <p>An error message if the step was interrupted during execution.</p>
5631
5631
  * @public
5632
5632
  */
5633
- ErrorMessage?: string;
5633
+ ErrorMessage?: string | undefined;
5634
5634
  /**
5635
5635
  * <p>The time when the step started.</p>
5636
5636
  * @public
5637
5637
  */
5638
- StartTime?: Date;
5638
+ StartTime?: Date | undefined;
5639
5639
  /**
5640
5640
  * <p>The time when the step stopped.</p>
5641
5641
  * @public
5642
5642
  */
5643
- StopTime?: Date;
5643
+ StopTime?: Date | undefined;
5644
5644
  }
5645
5645
  /**
5646
5646
  * <p>Provides details of the current status of the invoked remediation action for that resource.</p>
@@ -5652,27 +5652,27 @@ export interface RemediationExecutionStatus {
5652
5652
  * the resource type and resource ID.</p>
5653
5653
  * @public
5654
5654
  */
5655
- ResourceKey?: ResourceKey;
5655
+ ResourceKey?: ResourceKey | undefined;
5656
5656
  /**
5657
5657
  * <p>ENUM of the values.</p>
5658
5658
  * @public
5659
5659
  */
5660
- State?: RemediationExecutionState;
5660
+ State?: RemediationExecutionState | undefined;
5661
5661
  /**
5662
5662
  * <p>Details of every step.</p>
5663
5663
  * @public
5664
5664
  */
5665
- StepDetails?: RemediationExecutionStep[];
5665
+ StepDetails?: RemediationExecutionStep[] | undefined;
5666
5666
  /**
5667
5667
  * <p>Start time when the remediation was executed.</p>
5668
5668
  * @public
5669
5669
  */
5670
- InvocationTime?: Date;
5670
+ InvocationTime?: Date | undefined;
5671
5671
  /**
5672
5672
  * <p>The time when the remediation execution was last updated.</p>
5673
5673
  * @public
5674
5674
  */
5675
- LastUpdatedTime?: Date;
5675
+ LastUpdatedTime?: Date | undefined;
5676
5676
  }
5677
5677
  /**
5678
5678
  * @public
@@ -5682,12 +5682,12 @@ export interface DescribeRemediationExecutionStatusResponse {
5682
5682
  * <p>Returns a list of remediation execution statuses objects.</p>
5683
5683
  * @public
5684
5684
  */
5685
- RemediationExecutionStatuses?: RemediationExecutionStatus[];
5685
+ RemediationExecutionStatuses?: RemediationExecutionStatus[] | undefined;
5686
5686
  /**
5687
5687
  * <p>The <code>nextToken</code> string returned on a previous page that you use to get the next page of results in a paginated response.</p>
5688
5688
  * @public
5689
5689
  */
5690
- NextToken?: string;
5690
+ NextToken?: string | undefined;
5691
5691
  }
5692
5692
  /**
5693
5693
  * @public
@@ -5703,14 +5703,14 @@ export interface DescribeRetentionConfigurationsRequest {
5703
5703
  * </note>
5704
5704
  * @public
5705
5705
  */
5706
- RetentionConfigurationNames?: string[];
5706
+ RetentionConfigurationNames?: string[] | undefined;
5707
5707
  /**
5708
5708
  * <p>The <code>nextToken</code> string returned on a previous page
5709
5709
  * that you use to get the next page of results in a paginated
5710
5710
  * response. </p>
5711
5711
  * @public
5712
5712
  */
5713
- NextToken?: string;
5713
+ NextToken?: string | undefined;
5714
5714
  }
5715
5715
  /**
5716
5716
  * <p>An object with the name of the retention configuration and the retention period in days. The object stores the configuration for data retention in Config.</p>
@@ -5739,14 +5739,14 @@ export interface DescribeRetentionConfigurationsResponse {
5739
5739
  * <p>Returns a retention configuration object.</p>
5740
5740
  * @public
5741
5741
  */
5742
- RetentionConfigurations?: RetentionConfiguration[];
5742
+ RetentionConfigurations?: RetentionConfiguration[] | undefined;
5743
5743
  /**
5744
5744
  * <p>The <code>nextToken</code> string returned on a previous page
5745
5745
  * that you use to get the next page of results in a paginated
5746
5746
  * response. </p>
5747
5747
  * @public
5748
5748
  */
5749
- NextToken?: string;
5749
+ NextToken?: string | undefined;
5750
5750
  }
5751
5751
  /**
5752
5752
  * <p>Identifies an Amazon Web Services resource and indicates whether it complies
@@ -5785,7 +5785,7 @@ export interface Evaluation {
5785
5785
  * the compliance.</p>
5786
5786
  * @public
5787
5787
  */
5788
- Annotation?: string;
5788
+ Annotation?: string | undefined;
5789
5789
  /**
5790
5790
  * <p>The time of the event in Config that triggered the
5791
5791
  * evaluation. For event-based evaluations, the time indicates when Config created the configuration item that triggered the evaluation.
@@ -5806,7 +5806,7 @@ export interface EvaluationContext {
5806
5806
  * <p>A unique EvaluationContextIdentifier ID for an EvaluationContext.</p>
5807
5807
  * @public
5808
5808
  */
5809
- EvaluationContextIdentifier?: string;
5809
+ EvaluationContextIdentifier?: string | undefined;
5810
5810
  }
5811
5811
  /**
5812
5812
  * <p>The details of an Config evaluation. Provides the Amazon Web Services
@@ -5819,7 +5819,7 @@ export interface EvaluationResult {
5819
5819
  * <p>Uniquely identifies the evaluation result.</p>
5820
5820
  * @public
5821
5821
  */
5822
- EvaluationResultIdentifier?: EvaluationResultIdentifier;
5822
+ EvaluationResultIdentifier?: EvaluationResultIdentifier | undefined;
5823
5823
  /**
5824
5824
  * <p>Indicates whether the Amazon Web Services resource complies with the Config
5825
5825
  * rule that evaluated it.</p>
@@ -5830,31 +5830,31 @@ export interface EvaluationResult {
5830
5830
  * for the <code>EvaluationResult</code> data type.</p>
5831
5831
  * @public
5832
5832
  */
5833
- ComplianceType?: ComplianceType;
5833
+ ComplianceType?: ComplianceType | undefined;
5834
5834
  /**
5835
5835
  * <p>The time when Config recorded the evaluation
5836
5836
  * result.</p>
5837
5837
  * @public
5838
5838
  */
5839
- ResultRecordedTime?: Date;
5839
+ ResultRecordedTime?: Date | undefined;
5840
5840
  /**
5841
5841
  * <p>The time when the Config rule evaluated the Amazon Web Services
5842
5842
  * resource.</p>
5843
5843
  * @public
5844
5844
  */
5845
- ConfigRuleInvokedTime?: Date;
5845
+ ConfigRuleInvokedTime?: Date | undefined;
5846
5846
  /**
5847
5847
  * <p>Supplementary information about how the evaluation determined
5848
5848
  * the compliance.</p>
5849
5849
  * @public
5850
5850
  */
5851
- Annotation?: string;
5851
+ Annotation?: string | undefined;
5852
5852
  /**
5853
5853
  * <p>An encrypted token that associates an evaluation with an Config rule. The token identifies the rule, the Amazon Web Services resource being
5854
5854
  * evaluated, and the event that triggered the evaluation.</p>
5855
5855
  * @public
5856
5856
  */
5857
- ResultToken?: string;
5857
+ ResultToken?: string | undefined;
5858
5858
  }
5859
5859
  /**
5860
5860
  * @public
@@ -5883,7 +5883,7 @@ export interface EvaluationStatus {
5883
5883
  * <p>An explanation for failed execution status.</p>
5884
5884
  * @public
5885
5885
  */
5886
- FailureReason?: string;
5886
+ FailureReason?: string | undefined;
5887
5887
  }
5888
5888
  /**
5889
5889
  * <p>Identifies an Amazon Web Services resource and indicates whether it complies with the Config rule that it was evaluated against.</p>
@@ -5909,7 +5909,7 @@ export interface ExternalEvaluation {
5909
5909
  * <p>Supplementary information about the reason of compliance. For example, this task was completed on a specific date.</p>
5910
5910
  * @public
5911
5911
  */
5912
- Annotation?: string;
5912
+ Annotation?: string | undefined;
5913
5913
  /**
5914
5914
  * <p>The time when the compliance was recorded. </p>
5915
5915
  * @public
@@ -5925,12 +5925,12 @@ export interface FailedRemediationBatch {
5925
5925
  * <p>Returns a failure message. For example, the resource is already compliant.</p>
5926
5926
  * @public
5927
5927
  */
5928
- FailureMessage?: string;
5928
+ FailureMessage?: string | undefined;
5929
5929
  /**
5930
5930
  * <p>Returns remediation configurations of the failed items.</p>
5931
5931
  * @public
5932
5932
  */
5933
- FailedItems?: RemediationConfiguration[];
5933
+ FailedItems?: RemediationConfiguration[] | undefined;
5934
5934
  }
5935
5935
  /**
5936
5936
  * <p>List of each of the failed remediation exceptions with specific reasons.</p>
@@ -5941,12 +5941,12 @@ export interface FailedRemediationExceptionBatch {
5941
5941
  * <p>Returns a failure message. For example, the auto-remediation has failed.</p>
5942
5942
  * @public
5943
5943
  */
5944
- FailureMessage?: string;
5944
+ FailureMessage?: string | undefined;
5945
5945
  /**
5946
5946
  * <p>Returns remediation exception resource key object of the failed items.</p>
5947
5947
  * @public
5948
5948
  */
5949
- FailedItems?: RemediationException[];
5949
+ FailedItems?: RemediationException[] | undefined;
5950
5950
  }
5951
5951
  /**
5952
5952
  * <p>Details about the fields such as name of the field.</p>
@@ -5957,7 +5957,7 @@ export interface FieldInfo {
5957
5957
  * <p>Name of the field.</p>
5958
5958
  * @public
5959
5959
  */
5960
- Name?: string;
5960
+ Name?: string | undefined;
5961
5961
  }
5962
5962
  /**
5963
5963
  * @public
@@ -5996,20 +5996,20 @@ export interface GetAggregateComplianceDetailsByConfigRuleRequest {
5996
5996
  * </note>
5997
5997
  * @public
5998
5998
  */
5999
- ComplianceType?: ComplianceType;
5999
+ ComplianceType?: ComplianceType | undefined;
6000
6000
  /**
6001
6001
  * <p>The maximum number of evaluation results returned on each page.
6002
6002
  * The default is 50. You cannot specify a number greater than 100. If
6003
6003
  * you specify 0, Config uses the default.</p>
6004
6004
  * @public
6005
6005
  */
6006
- Limit?: number;
6006
+ Limit?: number | undefined;
6007
6007
  /**
6008
6008
  * <p>The <code>nextToken</code> string returned on a previous page that you use
6009
6009
  * to get the next page of results in a paginated response.</p>
6010
6010
  * @public
6011
6011
  */
6012
- NextToken?: string;
6012
+ NextToken?: string | undefined;
6013
6013
  }
6014
6014
  /**
6015
6015
  * @public
@@ -6019,13 +6019,13 @@ export interface GetAggregateComplianceDetailsByConfigRuleResponse {
6019
6019
  * <p>Returns an AggregateEvaluationResults object.</p>
6020
6020
  * @public
6021
6021
  */
6022
- AggregateEvaluationResults?: AggregateEvaluationResult[];
6022
+ AggregateEvaluationResults?: AggregateEvaluationResult[] | undefined;
6023
6023
  /**
6024
6024
  * <p>The <code>nextToken</code> string returned on a previous page that you use
6025
6025
  * to get the next page of results in a paginated response.</p>
6026
6026
  * @public
6027
6027
  */
6028
- NextToken?: string;
6028
+ NextToken?: string | undefined;
6029
6029
  }
6030
6030
  /**
6031
6031
  * @public
@@ -6041,25 +6041,25 @@ export interface GetAggregateConfigRuleComplianceSummaryRequest {
6041
6041
  * ConfigRuleComplianceSummaryFilters object.</p>
6042
6042
  * @public
6043
6043
  */
6044
- Filters?: ConfigRuleComplianceSummaryFilters;
6044
+ Filters?: ConfigRuleComplianceSummaryFilters | undefined;
6045
6045
  /**
6046
6046
  * <p>Groups the result based on ACCOUNT_ID or AWS_REGION.</p>
6047
6047
  * @public
6048
6048
  */
6049
- GroupByKey?: ConfigRuleComplianceSummaryGroupKey;
6049
+ GroupByKey?: ConfigRuleComplianceSummaryGroupKey | undefined;
6050
6050
  /**
6051
6051
  * <p>The maximum number of evaluation results returned on each page.
6052
6052
  * The default is 1000. You cannot specify a number greater than 1000.
6053
6053
  * If you specify 0, Config uses the default.</p>
6054
6054
  * @public
6055
6055
  */
6056
- Limit?: number;
6056
+ Limit?: number | undefined;
6057
6057
  /**
6058
6058
  * <p>The <code>nextToken</code> string returned on a previous page that you use
6059
6059
  * to get the next page of results in a paginated response.</p>
6060
6060
  * @public
6061
6061
  */
6062
- NextToken?: string;
6062
+ NextToken?: string | undefined;
6063
6063
  }
6064
6064
  /**
6065
6065
  * @public
@@ -6069,18 +6069,18 @@ export interface GetAggregateConfigRuleComplianceSummaryResponse {
6069
6069
  * <p>Groups the result based on ACCOUNT_ID or AWS_REGION.</p>
6070
6070
  * @public
6071
6071
  */
6072
- GroupByKey?: string;
6072
+ GroupByKey?: string | undefined;
6073
6073
  /**
6074
6074
  * <p>Returns a list of AggregateComplianceCounts object.</p>
6075
6075
  * @public
6076
6076
  */
6077
- AggregateComplianceCounts?: AggregateComplianceCount[];
6077
+ AggregateComplianceCounts?: AggregateComplianceCount[] | undefined;
6078
6078
  /**
6079
6079
  * <p>The <code>nextToken</code> string returned on a previous page that you use
6080
6080
  * to get the next page of results in a paginated response.</p>
6081
6081
  * @public
6082
6082
  */
6083
- NextToken?: string;
6083
+ NextToken?: string | undefined;
6084
6084
  }
6085
6085
  /**
6086
6086
  * @public
@@ -6095,22 +6095,22 @@ export interface GetAggregateConformancePackComplianceSummaryRequest {
6095
6095
  * <p>Filters the results based on the <code>AggregateConformancePackComplianceSummaryFilters</code> object.</p>
6096
6096
  * @public
6097
6097
  */
6098
- Filters?: AggregateConformancePackComplianceSummaryFilters;
6098
+ Filters?: AggregateConformancePackComplianceSummaryFilters | undefined;
6099
6099
  /**
6100
6100
  * <p>Groups the result based on Amazon Web Services account ID or Amazon Web Services Region.</p>
6101
6101
  * @public
6102
6102
  */
6103
- GroupByKey?: AggregateConformancePackComplianceSummaryGroupKey;
6103
+ GroupByKey?: AggregateConformancePackComplianceSummaryGroupKey | undefined;
6104
6104
  /**
6105
6105
  * <p>The maximum number of results returned on each page. The default is maximum. If you specify 0, Config uses the default.</p>
6106
6106
  * @public
6107
6107
  */
6108
- Limit?: number;
6108
+ Limit?: number | undefined;
6109
6109
  /**
6110
6110
  * <p>The <code>nextToken</code> string returned on a previous page that you use to get the next page of results in a paginated response.</p>
6111
6111
  * @public
6112
6112
  */
6113
- NextToken?: string;
6113
+ NextToken?: string | undefined;
6114
6114
  }
6115
6115
  /**
6116
6116
  * @public
@@ -6120,17 +6120,17 @@ export interface GetAggregateConformancePackComplianceSummaryResponse {
6120
6120
  * <p>Returns a list of <code>AggregateConformancePackComplianceSummary</code> object.</p>
6121
6121
  * @public
6122
6122
  */
6123
- AggregateConformancePackComplianceSummaries?: AggregateConformancePackComplianceSummary[];
6123
+ AggregateConformancePackComplianceSummaries?: AggregateConformancePackComplianceSummary[] | undefined;
6124
6124
  /**
6125
6125
  * <p>Groups the result based on Amazon Web Services account ID or Amazon Web Services Region.</p>
6126
6126
  * @public
6127
6127
  */
6128
- GroupByKey?: string;
6128
+ GroupByKey?: string | undefined;
6129
6129
  /**
6130
6130
  * <p>The <code>nextToken</code> string returned on a previous page that you use to get the next page of results in a paginated response.</p>
6131
6131
  * @public
6132
6132
  */
6133
- NextToken?: string;
6133
+ NextToken?: string | undefined;
6134
6134
  }
6135
6135
  /**
6136
6136
  * <p>Filters the resource count based on account ID, region, and resource type.</p>
@@ -6141,17 +6141,17 @@ export interface ResourceCountFilters {
6141
6141
  * <p>The type of the Amazon Web Services resource.</p>
6142
6142
  * @public
6143
6143
  */
6144
- ResourceType?: ResourceType;
6144
+ ResourceType?: ResourceType | undefined;
6145
6145
  /**
6146
6146
  * <p>The 12-digit ID of the account.</p>
6147
6147
  * @public
6148
6148
  */
6149
- AccountId?: string;
6149
+ AccountId?: string | undefined;
6150
6150
  /**
6151
6151
  * <p>The region where the account is located.</p>
6152
6152
  * @public
6153
6153
  */
6154
- Region?: string;
6154
+ Region?: string | undefined;
6155
6155
  }
6156
6156
  /**
6157
6157
  * @public
@@ -6179,22 +6179,22 @@ export interface GetAggregateDiscoveredResourceCountsRequest {
6179
6179
  * <p>Filters the results based on the <code>ResourceCountFilters</code> object.</p>
6180
6180
  * @public
6181
6181
  */
6182
- Filters?: ResourceCountFilters;
6182
+ Filters?: ResourceCountFilters | undefined;
6183
6183
  /**
6184
6184
  * <p>The key to group the resource counts.</p>
6185
6185
  * @public
6186
6186
  */
6187
- GroupByKey?: ResourceCountGroupKey;
6187
+ GroupByKey?: ResourceCountGroupKey | undefined;
6188
6188
  /**
6189
6189
  * <p>The maximum number of <a>GroupedResourceCount</a> objects returned on each page. The default is 1000. You cannot specify a number greater than 1000. If you specify 0, Config uses the default.</p>
6190
6190
  * @public
6191
6191
  */
6192
- Limit?: number;
6192
+ Limit?: number | undefined;
6193
6193
  /**
6194
6194
  * <p>The <code>nextToken</code> string returned on a previous page that you use to get the next page of results in a paginated response. </p>
6195
6195
  * @public
6196
6196
  */
6197
- NextToken?: string;
6197
+ NextToken?: string | undefined;
6198
6198
  }
6199
6199
  /**
6200
6200
  * <p>The count of resources that are grouped by the group name.</p>
@@ -6225,17 +6225,17 @@ export interface GetAggregateDiscoveredResourceCountsResponse {
6225
6225
  * <p>The key passed into the request object. If <code>GroupByKey</code> is not provided, the result will be empty.</p>
6226
6226
  * @public
6227
6227
  */
6228
- GroupByKey?: string;
6228
+ GroupByKey?: string | undefined;
6229
6229
  /**
6230
6230
  * <p>Returns a list of GroupedResourceCount objects.</p>
6231
6231
  * @public
6232
6232
  */
6233
- GroupedResourceCounts?: GroupedResourceCount[];
6233
+ GroupedResourceCounts?: GroupedResourceCount[] | undefined;
6234
6234
  /**
6235
6235
  * <p>The <code>nextToken</code> string returned on a previous page that you use to get the next page of results in a paginated response.</p>
6236
6236
  * @public
6237
6237
  */
6238
- NextToken?: string;
6238
+ NextToken?: string | undefined;
6239
6239
  }
6240
6240
  /**
6241
6241
  * @public
@@ -6260,7 +6260,7 @@ export interface GetAggregateResourceConfigResponse {
6260
6260
  * <p>Returns a <code>ConfigurationItem</code> object.</p>
6261
6261
  * @public
6262
6262
  */
6263
- ConfigurationItem?: ConfigurationItem;
6263
+ ConfigurationItem?: ConfigurationItem | undefined;
6264
6264
  }
6265
6265
  /**
6266
6266
  * <p>The configuration item size is outside the allowable range.</p>
@@ -6304,21 +6304,21 @@ export interface GetComplianceDetailsByConfigRuleRequest {
6304
6304
  * <code>INSUFFICIENT_DATA</code> is a valid <code>ComplianceType</code> that is returned when an Config rule cannot be evaluated. However, <code>INSUFFICIENT_DATA</code> cannot be used as a <code>ComplianceType</code> for filtering results.</p>
6305
6305
  * @public
6306
6306
  */
6307
- ComplianceTypes?: ComplianceType[];
6307
+ ComplianceTypes?: ComplianceType[] | undefined;
6308
6308
  /**
6309
6309
  * <p>The maximum number of evaluation results returned on each page.
6310
6310
  * The default is 10. You cannot specify a number greater than 100. If
6311
6311
  * you specify 0, Config uses the default.</p>
6312
6312
  * @public
6313
6313
  */
6314
- Limit?: number;
6314
+ Limit?: number | undefined;
6315
6315
  /**
6316
6316
  * <p>The <code>nextToken</code> string returned on a previous page
6317
6317
  * that you use to get the next page of results in a paginated
6318
6318
  * response.</p>
6319
6319
  * @public
6320
6320
  */
6321
- NextToken?: string;
6321
+ NextToken?: string | undefined;
6322
6322
  }
6323
6323
  /**
6324
6324
  * <p></p>
@@ -6330,13 +6330,13 @@ export interface GetComplianceDetailsByConfigRuleResponse {
6330
6330
  * Config rule.</p>
6331
6331
  * @public
6332
6332
  */
6333
- EvaluationResults?: EvaluationResult[];
6333
+ EvaluationResults?: EvaluationResult[] | undefined;
6334
6334
  /**
6335
6335
  * <p>The string that you use in a subsequent request to get the next
6336
6336
  * page of results in a paginated response.</p>
6337
6337
  * @public
6338
6338
  */
6339
- NextToken?: string;
6339
+ NextToken?: string | undefined;
6340
6340
  }
6341
6341
  /**
6342
6342
  * <p></p>
@@ -6348,27 +6348,27 @@ export interface GetComplianceDetailsByResourceRequest {
6348
6348
  * information.</p>
6349
6349
  * @public
6350
6350
  */
6351
- ResourceType?: string;
6351
+ ResourceType?: string | undefined;
6352
6352
  /**
6353
6353
  * <p>The ID of the Amazon Web Services resource for which you want compliance
6354
6354
  * information.</p>
6355
6355
  * @public
6356
6356
  */
6357
- ResourceId?: string;
6357
+ ResourceId?: string | undefined;
6358
6358
  /**
6359
6359
  * <p>Filters the results by compliance.</p>
6360
6360
  * <p>
6361
6361
  * <code>INSUFFICIENT_DATA</code> is a valid <code>ComplianceType</code> that is returned when an Config rule cannot be evaluated. However, <code>INSUFFICIENT_DATA</code> cannot be used as a <code>ComplianceType</code> for filtering results.</p>
6362
6362
  * @public
6363
6363
  */
6364
- ComplianceTypes?: ComplianceType[];
6364
+ ComplianceTypes?: ComplianceType[] | undefined;
6365
6365
  /**
6366
6366
  * <p>The <code>nextToken</code> string returned on a previous page
6367
6367
  * that you use to get the next page of results in a paginated
6368
6368
  * response.</p>
6369
6369
  * @public
6370
6370
  */
6371
- NextToken?: string;
6371
+ NextToken?: string | undefined;
6372
6372
  /**
6373
6373
  * <p>The unique ID of Amazon Web Services resource execution for which you want to retrieve evaluation results. </p>
6374
6374
  * <note>
@@ -6376,7 +6376,7 @@ export interface GetComplianceDetailsByResourceRequest {
6376
6376
  * </note>
6377
6377
  * @public
6378
6378
  */
6379
- ResourceEvaluationId?: string;
6379
+ ResourceEvaluationId?: string | undefined;
6380
6380
  }
6381
6381
  /**
6382
6382
  * <p></p>
@@ -6387,13 +6387,13 @@ export interface GetComplianceDetailsByResourceResponse {
6387
6387
  * <p>Indicates whether the specified Amazon Web Services resource complies each Config rule.</p>
6388
6388
  * @public
6389
6389
  */
6390
- EvaluationResults?: EvaluationResult[];
6390
+ EvaluationResults?: EvaluationResult[] | undefined;
6391
6391
  /**
6392
6392
  * <p>The string that you use in a subsequent request to get the next
6393
6393
  * page of results in a paginated response.</p>
6394
6394
  * @public
6395
6395
  */
6396
- NextToken?: string;
6396
+ NextToken?: string | undefined;
6397
6397
  }
6398
6398
  /**
6399
6399
  * <p></p>
@@ -6406,7 +6406,7 @@ export interface GetComplianceSummaryByConfigRuleResponse {
6406
6406
  * each.</p>
6407
6407
  * @public
6408
6408
  */
6409
- ComplianceSummary?: ComplianceSummary;
6409
+ ComplianceSummary?: ComplianceSummary | undefined;
6410
6410
  }
6411
6411
  /**
6412
6412
  * <p></p>
@@ -6423,7 +6423,7 @@ export interface GetComplianceSummaryByResourceTypeRequest {
6423
6423
  * <code>AWS::::Account</code>.</p>
6424
6424
  * @public
6425
6425
  */
6426
- ResourceTypes?: string[];
6426
+ ResourceTypes?: string[] | undefined;
6427
6427
  }
6428
6428
  /**
6429
6429
  * <p></p>
@@ -6437,7 +6437,7 @@ export interface GetComplianceSummaryByResourceTypeResponse {
6437
6437
  * maximum number returned is 100.</p>
6438
6438
  * @public
6439
6439
  */
6440
- ComplianceSummariesByResourceType?: ComplianceSummaryByResourceType[];
6440
+ ComplianceSummariesByResourceType?: ComplianceSummaryByResourceType[] | undefined;
6441
6441
  }
6442
6442
  /**
6443
6443
  * @public
@@ -6452,17 +6452,17 @@ export interface GetConformancePackComplianceDetailsRequest {
6452
6452
  * <p>A <code>ConformancePackEvaluationFilters</code> object.</p>
6453
6453
  * @public
6454
6454
  */
6455
- Filters?: ConformancePackEvaluationFilters;
6455
+ Filters?: ConformancePackEvaluationFilters | undefined;
6456
6456
  /**
6457
6457
  * <p>The maximum number of evaluation results returned on each page. If you do no specify a number, Config uses the default. The default is 100.</p>
6458
6458
  * @public
6459
6459
  */
6460
- Limit?: number;
6460
+ Limit?: number | undefined;
6461
6461
  /**
6462
6462
  * <p>The <code>nextToken</code> string returned in a previous request that you use to request the next page of results in a paginated response.</p>
6463
6463
  * @public
6464
6464
  */
6465
- NextToken?: string;
6465
+ NextToken?: string | undefined;
6466
6466
  }
6467
6467
  /**
6468
6468
  * @public
@@ -6477,12 +6477,12 @@ export interface GetConformancePackComplianceDetailsResponse {
6477
6477
  * <p>Returns a list of <code>ConformancePackEvaluationResult</code> objects.</p>
6478
6478
  * @public
6479
6479
  */
6480
- ConformancePackRuleEvaluationResults?: ConformancePackEvaluationResult[];
6480
+ ConformancePackRuleEvaluationResults?: ConformancePackEvaluationResult[] | undefined;
6481
6481
  /**
6482
6482
  * <p>The <code>nextToken</code> string returned in a previous request that you use to request the next page of results in a paginated response.</p>
6483
6483
  * @public
6484
6484
  */
6485
- NextToken?: string;
6485
+ NextToken?: string | undefined;
6486
6486
  }
6487
6487
  /**
6488
6488
  * @public
@@ -6497,12 +6497,12 @@ export interface GetConformancePackComplianceSummaryRequest {
6497
6497
  * <p>The maximum number of conformance packs returned on each page.</p>
6498
6498
  * @public
6499
6499
  */
6500
- Limit?: number;
6500
+ Limit?: number | undefined;
6501
6501
  /**
6502
6502
  * <p>The nextToken string returned on a previous page that you use to get the next page of results in a paginated response.</p>
6503
6503
  * @public
6504
6504
  */
6505
- NextToken?: string;
6505
+ NextToken?: string | undefined;
6506
6506
  }
6507
6507
  /**
6508
6508
  * @public
@@ -6512,12 +6512,12 @@ export interface GetConformancePackComplianceSummaryResponse {
6512
6512
  * <p>A list of <code>ConformancePackComplianceSummary</code> objects. </p>
6513
6513
  * @public
6514
6514
  */
6515
- ConformancePackComplianceSummaryList?: ConformancePackComplianceSummary[];
6515
+ ConformancePackComplianceSummaryList?: ConformancePackComplianceSummary[] | undefined;
6516
6516
  /**
6517
6517
  * <p>The nextToken string returned on a previous page that you use to get the next page of results in a paginated response.</p>
6518
6518
  * @public
6519
6519
  */
6520
- NextToken?: string;
6520
+ NextToken?: string | undefined;
6521
6521
  }
6522
6522
  /**
6523
6523
  * @public
@@ -6527,7 +6527,7 @@ export interface GetCustomRulePolicyRequest {
6527
6527
  * <p>The name of your Config Custom Policy rule.</p>
6528
6528
  * @public
6529
6529
  */
6530
- ConfigRuleName?: string;
6530
+ ConfigRuleName?: string | undefined;
6531
6531
  }
6532
6532
  /**
6533
6533
  * @public
@@ -6537,7 +6537,7 @@ export interface GetCustomRulePolicyResponse {
6537
6537
  * <p>The policy definition containing the logic for your Config Custom Policy rule.</p>
6538
6538
  * @public
6539
6539
  */
6540
- PolicyText?: string;
6540
+ PolicyText?: string | undefined;
6541
6541
  }
6542
6542
  /**
6543
6543
  * @public
@@ -6559,7 +6559,7 @@ export interface GetDiscoveredResourceCountsRequest {
6559
6559
  * </note>
6560
6560
  * @public
6561
6561
  */
6562
- resourceTypes?: string[];
6562
+ resourceTypes?: string[] | undefined;
6563
6563
  /**
6564
6564
  * <p>The maximum number of <a>ResourceCount</a> objects
6565
6565
  * returned on each page. The default is 100. You cannot specify a
@@ -6567,14 +6567,14 @@ export interface GetDiscoveredResourceCountsRequest {
6567
6567
  * default.</p>
6568
6568
  * @public
6569
6569
  */
6570
- limit?: number;
6570
+ limit?: number | undefined;
6571
6571
  /**
6572
6572
  * <p>The <code>nextToken</code> string returned on a previous page
6573
6573
  * that you use to get the next page of results in a paginated
6574
6574
  * response.</p>
6575
6575
  * @public
6576
6576
  */
6577
- nextToken?: string;
6577
+ nextToken?: string | undefined;
6578
6578
  }
6579
6579
  /**
6580
6580
  * <p>An object that contains the resource type and the number of
@@ -6587,12 +6587,12 @@ export interface ResourceCount {
6587
6587
  * <code>"AWS::EC2::Instance"</code>).</p>
6588
6588
  * @public
6589
6589
  */
6590
- resourceType?: ResourceType;
6590
+ resourceType?: ResourceType | undefined;
6591
6591
  /**
6592
6592
  * <p>The number of resources.</p>
6593
6593
  * @public
6594
6594
  */
6595
- count?: number;
6595
+ count?: number | undefined;
6596
6596
  }
6597
6597
  /**
6598
6598
  * @public
@@ -6627,19 +6627,19 @@ export interface GetDiscoveredResourceCountsResponse {
6627
6627
  * </ol>
6628
6628
  * @public
6629
6629
  */
6630
- totalDiscoveredResources?: number;
6630
+ totalDiscoveredResources?: number | undefined;
6631
6631
  /**
6632
6632
  * <p>The list of <code>ResourceCount</code> objects. Each object is
6633
6633
  * listed in descending order by the number of resources.</p>
6634
6634
  * @public
6635
6635
  */
6636
- resourceCounts?: ResourceCount[];
6636
+ resourceCounts?: ResourceCount[] | undefined;
6637
6637
  /**
6638
6638
  * <p>The string that you use in a subsequent request to get the next
6639
6639
  * page of results in a paginated response.</p>
6640
6640
  * @public
6641
6641
  */
6642
- nextToken?: string;
6642
+ nextToken?: string | undefined;
6643
6643
  }
6644
6644
  /**
6645
6645
  * @public
@@ -6669,7 +6669,7 @@ export interface StatusDetailFilters {
6669
6669
  * <p>The 12-digit account ID of the member account within an organization.</p>
6670
6670
  * @public
6671
6671
  */
6672
- AccountId?: string;
6672
+ AccountId?: string | undefined;
6673
6673
  /**
6674
6674
  * <p>Indicates deployment status for Config rule in the member account.
6675
6675
  * When management account calls <code>PutOrganizationConfigRule</code> action for the first time, Config rule status is created in the member account.
@@ -6717,7 +6717,7 @@ export interface StatusDetailFilters {
6717
6717
  * </ul>
6718
6718
  * @public
6719
6719
  */
6720
- MemberAccountRuleStatus?: MemberAccountRuleStatus;
6720
+ MemberAccountRuleStatus?: MemberAccountRuleStatus | undefined;
6721
6721
  }
6722
6722
  /**
6723
6723
  * @public
@@ -6732,17 +6732,17 @@ export interface GetOrganizationConfigRuleDetailedStatusRequest {
6732
6732
  * <p>A <code>StatusDetailFilters</code> object.</p>
6733
6733
  * @public
6734
6734
  */
6735
- Filters?: StatusDetailFilters;
6735
+ Filters?: StatusDetailFilters | undefined;
6736
6736
  /**
6737
6737
  * <p>The maximum number of <code>OrganizationConfigRuleDetailedStatus</code> returned on each page. If you do not specify a number, Config uses the default. The default is 100.</p>
6738
6738
  * @public
6739
6739
  */
6740
- Limit?: number;
6740
+ Limit?: number | undefined;
6741
6741
  /**
6742
6742
  * <p>The <code>nextToken</code> string returned on a previous page that you use to get the next page of results in a paginated response. </p>
6743
6743
  * @public
6744
6744
  */
6745
- NextToken?: string;
6745
+ NextToken?: string | undefined;
6746
6746
  }
6747
6747
  /**
6748
6748
  * <p>Organization Config rule creation or deletion status in each member account. This includes the name of the rule, the status, error code and error message when the rule creation or deletion failed.</p>
@@ -6811,17 +6811,17 @@ export interface MemberAccountStatus {
6811
6811
  * <p>An error code that is returned when Config rule creation or deletion failed in the member account.</p>
6812
6812
  * @public
6813
6813
  */
6814
- ErrorCode?: string;
6814
+ ErrorCode?: string | undefined;
6815
6815
  /**
6816
6816
  * <p>An error message indicating that Config rule account creation or deletion has failed due to an error in the member account.</p>
6817
6817
  * @public
6818
6818
  */
6819
- ErrorMessage?: string;
6819
+ ErrorMessage?: string | undefined;
6820
6820
  /**
6821
6821
  * <p>The timestamp of the last status update.</p>
6822
6822
  * @public
6823
6823
  */
6824
- LastUpdateTime?: Date;
6824
+ LastUpdateTime?: Date | undefined;
6825
6825
  }
6826
6826
  /**
6827
6827
  * @public
@@ -6831,12 +6831,12 @@ export interface GetOrganizationConfigRuleDetailedStatusResponse {
6831
6831
  * <p>A list of <code>MemberAccountStatus</code> objects.</p>
6832
6832
  * @public
6833
6833
  */
6834
- OrganizationConfigRuleDetailedStatus?: MemberAccountStatus[];
6834
+ OrganizationConfigRuleDetailedStatus?: MemberAccountStatus[] | undefined;
6835
6835
  /**
6836
6836
  * <p>The <code>nextToken</code> string returned on a previous page that you use to get the next page of results in a paginated response. </p>
6837
6837
  * @public
6838
6838
  */
6839
- NextToken?: string;
6839
+ NextToken?: string | undefined;
6840
6840
  }
6841
6841
  /**
6842
6842
  * @public
@@ -6866,7 +6866,7 @@ export interface OrganizationResourceDetailedStatusFilters {
6866
6866
  * <p>The 12-digit account ID of the member account within an organization.</p>
6867
6867
  * @public
6868
6868
  */
6869
- AccountId?: string;
6869
+ AccountId?: string | undefined;
6870
6870
  /**
6871
6871
  * <p>Indicates deployment status for conformance pack in a member account.
6872
6872
  * When management account calls <code>PutOrganizationConformancePack</code> action for the first time, conformance pack status is created in the member account.
@@ -6914,7 +6914,7 @@ export interface OrganizationResourceDetailedStatusFilters {
6914
6914
  * </ul>
6915
6915
  * @public
6916
6916
  */
6917
- Status?: OrganizationResourceDetailedStatus;
6917
+ Status?: OrganizationResourceDetailedStatus | undefined;
6918
6918
  }
6919
6919
  /**
6920
6920
  * @public
@@ -6929,18 +6929,18 @@ export interface GetOrganizationConformancePackDetailedStatusRequest {
6929
6929
  * <p>An <code>OrganizationResourceDetailedStatusFilters</code> object.</p>
6930
6930
  * @public
6931
6931
  */
6932
- Filters?: OrganizationResourceDetailedStatusFilters;
6932
+ Filters?: OrganizationResourceDetailedStatusFilters | undefined;
6933
6933
  /**
6934
6934
  * <p>The maximum number of <code>OrganizationConformancePackDetailedStatuses</code> returned on each page.
6935
6935
  * If you do not specify a number, Config uses the default. The default is 100. </p>
6936
6936
  * @public
6937
6937
  */
6938
- Limit?: number;
6938
+ Limit?: number | undefined;
6939
6939
  /**
6940
6940
  * <p>The nextToken string returned on a previous page that you use to get the next page of results in a paginated response. </p>
6941
6941
  * @public
6942
6942
  */
6943
- NextToken?: string;
6943
+ NextToken?: string | undefined;
6944
6944
  }
6945
6945
  /**
6946
6946
  * <p>Organization conformance pack creation or deletion status in each member account.
@@ -7012,18 +7012,18 @@ export interface OrganizationConformancePackDetailedStatus {
7012
7012
  * deletion failed in the member account. </p>
7013
7013
  * @public
7014
7014
  */
7015
- ErrorCode?: string;
7015
+ ErrorCode?: string | undefined;
7016
7016
  /**
7017
7017
  * <p>An error message indicating that conformance pack account creation or deletion
7018
7018
  * has failed due to an error in the member account. </p>
7019
7019
  * @public
7020
7020
  */
7021
- ErrorMessage?: string;
7021
+ ErrorMessage?: string | undefined;
7022
7022
  /**
7023
7023
  * <p>The timestamp of the last status update.</p>
7024
7024
  * @public
7025
7025
  */
7026
- LastUpdateTime?: Date;
7026
+ LastUpdateTime?: Date | undefined;
7027
7027
  }
7028
7028
  /**
7029
7029
  * @public
@@ -7033,12 +7033,12 @@ export interface GetOrganizationConformancePackDetailedStatusResponse {
7033
7033
  * <p>A list of <code>OrganizationConformancePackDetailedStatus</code> objects. </p>
7034
7034
  * @public
7035
7035
  */
7036
- OrganizationConformancePackDetailedStatuses?: OrganizationConformancePackDetailedStatus[];
7036
+ OrganizationConformancePackDetailedStatuses?: OrganizationConformancePackDetailedStatus[] | undefined;
7037
7037
  /**
7038
7038
  * <p>The nextToken string returned on a previous page that you use to get the next page of results in a paginated response. </p>
7039
7039
  * @public
7040
7040
  */
7041
- NextToken?: string;
7041
+ NextToken?: string | undefined;
7042
7042
  }
7043
7043
  /**
7044
7044
  * @public
@@ -7058,7 +7058,7 @@ export interface GetOrganizationCustomRulePolicyResponse {
7058
7058
  * <p>The policy definition containing the logic for your organization Config Custom Policy rule.</p>
7059
7059
  * @public
7060
7060
  */
7061
- PolicyText?: string;
7061
+ PolicyText?: string | undefined;
7062
7062
  }
7063
7063
  /**
7064
7064
  * <p>The input for the <a>GetResourceConfigHistory</a>
@@ -7082,7 +7082,7 @@ export interface GetResourceConfigHistoryRequest {
7082
7082
  * current time is taken.</p>
7083
7083
  * @public
7084
7084
  */
7085
- laterTime?: Date;
7085
+ laterTime?: Date | undefined;
7086
7086
  /**
7087
7087
  * <p>The chronologically earliest time in the time range for which the history requested. If not
7088
7088
  * specified, the action returns paginated results that contain
@@ -7090,28 +7090,28 @@ export interface GetResourceConfigHistoryRequest {
7090
7090
  * recorded.</p>
7091
7091
  * @public
7092
7092
  */
7093
- earlierTime?: Date;
7093
+ earlierTime?: Date | undefined;
7094
7094
  /**
7095
7095
  * <p>The chronological order for configuration items listed. By
7096
7096
  * default, the results are listed in reverse chronological
7097
7097
  * order.</p>
7098
7098
  * @public
7099
7099
  */
7100
- chronologicalOrder?: ChronologicalOrder;
7100
+ chronologicalOrder?: ChronologicalOrder | undefined;
7101
7101
  /**
7102
7102
  * <p>The maximum number of configuration items returned on each
7103
7103
  * page. The default is 10. You cannot specify a number greater than
7104
7104
  * 100. If you specify 0, Config uses the default.</p>
7105
7105
  * @public
7106
7106
  */
7107
- limit?: number;
7107
+ limit?: number | undefined;
7108
7108
  /**
7109
7109
  * <p>The <code>nextToken</code> string returned on a previous page
7110
7110
  * that you use to get the next page of results in a paginated
7111
7111
  * response.</p>
7112
7112
  * @public
7113
7113
  */
7114
- nextToken?: string;
7114
+ nextToken?: string | undefined;
7115
7115
  }
7116
7116
  /**
7117
7117
  * <p>The output for the <a>GetResourceConfigHistory</a>
@@ -7124,13 +7124,13 @@ export interface GetResourceConfigHistoryResponse {
7124
7124
  * resources.</p>
7125
7125
  * @public
7126
7126
  */
7127
- configurationItems?: ConfigurationItem[];
7127
+ configurationItems?: ConfigurationItem[] | undefined;
7128
7128
  /**
7129
7129
  * <p>The string that you use in a subsequent request to get the next
7130
7130
  * page of results in a paginated response.</p>
7131
7131
  * @public
7132
7132
  */
7133
- nextToken?: string;
7133
+ nextToken?: string | undefined;
7134
7134
  }
7135
7135
  /**
7136
7136
  * <p>The specified time range is not valid. The earlier time is not
@@ -7197,7 +7197,7 @@ export interface ResourceDetails {
7197
7197
  * </note>
7198
7198
  * @public
7199
7199
  */
7200
- ResourceConfigurationSchemaType?: ResourceConfigurationSchemaType;
7200
+ ResourceConfigurationSchemaType?: ResourceConfigurationSchemaType | undefined;
7201
7201
  }
7202
7202
  /**
7203
7203
  * @public
@@ -7207,37 +7207,37 @@ export interface GetResourceEvaluationSummaryResponse {
7207
7207
  * <p>The unique <code>ResourceEvaluationId</code> of Amazon Web Services resource execution for which you want to retrieve the evaluation summary.</p>
7208
7208
  * @public
7209
7209
  */
7210
- ResourceEvaluationId?: string;
7210
+ ResourceEvaluationId?: string | undefined;
7211
7211
  /**
7212
7212
  * <p>Lists results of the mode that you requested to retrieve the resource evaluation summary. The valid values are Detective or Proactive.</p>
7213
7213
  * @public
7214
7214
  */
7215
- EvaluationMode?: EvaluationMode;
7215
+ EvaluationMode?: EvaluationMode | undefined;
7216
7216
  /**
7217
7217
  * <p>Returns an <code>EvaluationStatus</code> object.</p>
7218
7218
  * @public
7219
7219
  */
7220
- EvaluationStatus?: EvaluationStatus;
7220
+ EvaluationStatus?: EvaluationStatus | undefined;
7221
7221
  /**
7222
7222
  * <p>The start timestamp when Config rule starts evaluating compliance for the provided resource details.</p>
7223
7223
  * @public
7224
7224
  */
7225
- EvaluationStartTimestamp?: Date;
7225
+ EvaluationStartTimestamp?: Date | undefined;
7226
7226
  /**
7227
7227
  * <p>The compliance status of the resource evaluation summary.</p>
7228
7228
  * @public
7229
7229
  */
7230
- Compliance?: ComplianceType;
7230
+ Compliance?: ComplianceType | undefined;
7231
7231
  /**
7232
7232
  * <p>Returns an <code>EvaluationContext</code> object.</p>
7233
7233
  * @public
7234
7234
  */
7235
- EvaluationContext?: EvaluationContext;
7235
+ EvaluationContext?: EvaluationContext | undefined;
7236
7236
  /**
7237
7237
  * <p>Returns a <code>ResourceDetails</code> object.</p>
7238
7238
  * @public
7239
7239
  */
7240
- ResourceDetails?: ResourceDetails;
7240
+ ResourceDetails?: ResourceDetails | undefined;
7241
7241
  }
7242
7242
  /**
7243
7243
  * @public
@@ -7258,12 +7258,12 @@ export interface StoredQuery {
7258
7258
  * <p>The ID of the query.</p>
7259
7259
  * @public
7260
7260
  */
7261
- QueryId?: string;
7261
+ QueryId?: string | undefined;
7262
7262
  /**
7263
7263
  * <p>Amazon Resource Name (ARN) of the query. For example, arn:partition:service:region:account-id:resource-type/resource-name/resource-id.</p>
7264
7264
  * @public
7265
7265
  */
7266
- QueryArn?: string;
7266
+ QueryArn?: string | undefined;
7267
7267
  /**
7268
7268
  * <p>The name of the query.</p>
7269
7269
  * @public
@@ -7273,7 +7273,7 @@ export interface StoredQuery {
7273
7273
  * <p>A unique description for the query.</p>
7274
7274
  * @public
7275
7275
  */
7276
- Description?: string;
7276
+ Description?: string | undefined;
7277
7277
  /**
7278
7278
  * <p>The expression of the query. For example, <code>SELECT
7279
7279
  * resourceId,
@@ -7285,7 +7285,7 @@ export interface StoredQuery {
7285
7285
  * </p>
7286
7286
  * @public
7287
7287
  */
7288
- Expression?: string;
7288
+ Expression?: string | undefined;
7289
7289
  }
7290
7290
  /**
7291
7291
  * @public
@@ -7295,7 +7295,7 @@ export interface GetStoredQueryResponse {
7295
7295
  * <p>Returns a <code>StoredQuery</code> object.</p>
7296
7296
  * @public
7297
7297
  */
7298
- StoredQuery?: StoredQuery;
7298
+ StoredQuery?: StoredQuery | undefined;
7299
7299
  }
7300
7300
  /**
7301
7301
  * <p>Using the same client token with one or more different parameters. Specify a new client token with the parameter changes and try again.</p>
@@ -7480,22 +7480,22 @@ export interface ResourceFilters {
7480
7480
  * <p>The 12-digit source account ID.</p>
7481
7481
  * @public
7482
7482
  */
7483
- AccountId?: string;
7483
+ AccountId?: string | undefined;
7484
7484
  /**
7485
7485
  * <p>The ID of the resource.</p>
7486
7486
  * @public
7487
7487
  */
7488
- ResourceId?: string;
7488
+ ResourceId?: string | undefined;
7489
7489
  /**
7490
7490
  * <p>The name of the resource.</p>
7491
7491
  * @public
7492
7492
  */
7493
- ResourceName?: string;
7493
+ ResourceName?: string | undefined;
7494
7494
  /**
7495
7495
  * <p>The source region.</p>
7496
7496
  * @public
7497
7497
  */
7498
- Region?: string;
7498
+ Region?: string | undefined;
7499
7499
  }
7500
7500
  /**
7501
7501
  * @public
@@ -7515,17 +7515,17 @@ export interface ListAggregateDiscoveredResourcesRequest {
7515
7515
  * <p>Filters the results based on the <code>ResourceFilters</code> object.</p>
7516
7516
  * @public
7517
7517
  */
7518
- Filters?: ResourceFilters;
7518
+ Filters?: ResourceFilters | undefined;
7519
7519
  /**
7520
7520
  * <p>The maximum number of resource identifiers returned on each page. You cannot specify a number greater than 100. If you specify 0, Config uses the default.</p>
7521
7521
  * @public
7522
7522
  */
7523
- Limit?: number;
7523
+ Limit?: number | undefined;
7524
7524
  /**
7525
7525
  * <p>The <code>nextToken</code> string returned on a previous page that you use to get the next page of results in a paginated response.</p>
7526
7526
  * @public
7527
7527
  */
7528
- NextToken?: string;
7528
+ NextToken?: string | undefined;
7529
7529
  }
7530
7530
  /**
7531
7531
  * @public
@@ -7535,12 +7535,12 @@ export interface ListAggregateDiscoveredResourcesResponse {
7535
7535
  * <p>Returns a list of <code>ResourceIdentifiers</code> objects.</p>
7536
7536
  * @public
7537
7537
  */
7538
- ResourceIdentifiers?: AggregateResourceIdentifier[];
7538
+ ResourceIdentifiers?: AggregateResourceIdentifier[] | undefined;
7539
7539
  /**
7540
7540
  * <p>The <code>nextToken</code> string returned on a previous page that you use to get the next page of results in a paginated response.</p>
7541
7541
  * @public
7542
7542
  */
7543
- NextToken?: string;
7543
+ NextToken?: string | undefined;
7544
7544
  }
7545
7545
  /**
7546
7546
  * @public
@@ -7573,31 +7573,31 @@ export interface ListConformancePackComplianceScoresRequest {
7573
7573
  * <p>Filters the results based on the <code>ConformancePackComplianceScoresFilters</code>.</p>
7574
7574
  * @public
7575
7575
  */
7576
- Filters?: ConformancePackComplianceScoresFilters;
7576
+ Filters?: ConformancePackComplianceScoresFilters | undefined;
7577
7577
  /**
7578
7578
  * <p>Determines the order in which conformance pack compliance scores are sorted. Either in ascending or descending order.</p>
7579
7579
  * <p>By default, conformance pack compliance scores are sorted in alphabetical order by name of the conformance pack. Conformance pack compliance scores are sorted in reverse alphabetical order if you enter <code>DESCENDING</code>.</p>
7580
7580
  * <p>You can sort conformance pack compliance scores by the numerical value of the compliance score by entering <code>SCORE</code> in the <code>SortBy</code> action. When compliance scores are sorted by <code>SCORE</code>, conformance packs with a compliance score of <code>INSUFFICIENT_DATA</code> will be last when sorting by ascending order and first when sorting by descending order.</p>
7581
7581
  * @public
7582
7582
  */
7583
- SortOrder?: SortOrder;
7583
+ SortOrder?: SortOrder | undefined;
7584
7584
  /**
7585
7585
  * <p>Sorts your conformance pack compliance scores in either ascending or descending order, depending on <code>SortOrder</code>.</p>
7586
7586
  * <p>By default, conformance pack compliance scores are sorted in alphabetical order by name of the conformance pack.
7587
7587
  * Enter <code>SCORE</code>, to sort conformance pack compliance scores by the numerical value of the compliance score.</p>
7588
7588
  * @public
7589
7589
  */
7590
- SortBy?: SortBy;
7590
+ SortBy?: SortBy | undefined;
7591
7591
  /**
7592
7592
  * <p>The maximum number of conformance pack compliance scores returned on each page.</p>
7593
7593
  * @public
7594
7594
  */
7595
- Limit?: number;
7595
+ Limit?: number | undefined;
7596
7596
  /**
7597
7597
  * <p>The <code>nextToken</code> string in a prior request that you can use to get the paginated response for the next set of conformance pack compliance scores.</p>
7598
7598
  * @public
7599
7599
  */
7600
- NextToken?: string;
7600
+ NextToken?: string | undefined;
7601
7601
  }
7602
7602
  /**
7603
7603
  * @public
@@ -7607,7 +7607,7 @@ export interface ListConformancePackComplianceScoresResponse {
7607
7607
  * <p>The <code>nextToken</code> string that you can use to get the next page of results in a paginated response.</p>
7608
7608
  * @public
7609
7609
  */
7610
- NextToken?: string;
7610
+ NextToken?: string | undefined;
7611
7611
  /**
7612
7612
  * <p>A list of <code>ConformancePackComplianceScore</code> objects.</p>
7613
7613
  * @public
@@ -7631,34 +7631,34 @@ export interface ListDiscoveredResourcesRequest {
7631
7631
  * discovered. You can list a minimum of 1 resourceID and a maximum of 20 resourceIds.</p>
7632
7632
  * @public
7633
7633
  */
7634
- resourceIds?: string[];
7634
+ resourceIds?: string[] | undefined;
7635
7635
  /**
7636
7636
  * <p>The custom name of only those resources that you want Config to list in the response. If you do not specify this
7637
7637
  * parameter, Config lists all resources of the specified type that
7638
7638
  * it has discovered.</p>
7639
7639
  * @public
7640
7640
  */
7641
- resourceName?: string;
7641
+ resourceName?: string | undefined;
7642
7642
  /**
7643
7643
  * <p>The maximum number of resource identifiers returned on each
7644
7644
  * page. The default is 100. You cannot specify a number greater than
7645
7645
  * 100. If you specify 0, Config uses the default.</p>
7646
7646
  * @public
7647
7647
  */
7648
- limit?: number;
7648
+ limit?: number | undefined;
7649
7649
  /**
7650
7650
  * <p>Specifies whether Config includes deleted resources in the
7651
7651
  * results. By default, deleted resources are not included.</p>
7652
7652
  * @public
7653
7653
  */
7654
- includeDeletedResources?: boolean;
7654
+ includeDeletedResources?: boolean | undefined;
7655
7655
  /**
7656
7656
  * <p>The <code>nextToken</code> string returned on a previous page
7657
7657
  * that you use to get the next page of results in a paginated
7658
7658
  * response.</p>
7659
7659
  * @public
7660
7660
  */
7661
- nextToken?: string;
7661
+ nextToken?: string | undefined;
7662
7662
  }
7663
7663
  /**
7664
7664
  * <p>The details that identify a resource that is discovered by Config, including the resource type, ID, and (if available) the
@@ -7670,23 +7670,23 @@ export interface ResourceIdentifier {
7670
7670
  * <p>The type of resource.</p>
7671
7671
  * @public
7672
7672
  */
7673
- resourceType?: ResourceType;
7673
+ resourceType?: ResourceType | undefined;
7674
7674
  /**
7675
7675
  * <p>The ID of the resource (for example,
7676
7676
  * <code>sg-xxxxxx</code>).</p>
7677
7677
  * @public
7678
7678
  */
7679
- resourceId?: string;
7679
+ resourceId?: string | undefined;
7680
7680
  /**
7681
7681
  * <p>The custom name of the resource (if available).</p>
7682
7682
  * @public
7683
7683
  */
7684
- resourceName?: string;
7684
+ resourceName?: string | undefined;
7685
7685
  /**
7686
7686
  * <p>The time that the resource was deleted.</p>
7687
7687
  * @public
7688
7688
  */
7689
- resourceDeletionTime?: Date;
7689
+ resourceDeletionTime?: Date | undefined;
7690
7690
  }
7691
7691
  /**
7692
7692
  * <p></p>
@@ -7698,13 +7698,13 @@ export interface ListDiscoveredResourcesResponse {
7698
7698
  * custom resource name.</p>
7699
7699
  * @public
7700
7700
  */
7701
- resourceIdentifiers?: ResourceIdentifier[];
7701
+ resourceIdentifiers?: ResourceIdentifier[] | undefined;
7702
7702
  /**
7703
7703
  * <p>The string that you use in a subsequent request to get the next
7704
7704
  * page of results in a paginated response.</p>
7705
7705
  * @public
7706
7706
  */
7707
- nextToken?: string;
7707
+ nextToken?: string | undefined;
7708
7708
  }
7709
7709
  /**
7710
7710
  * <p>Filters evaluation results based on start and end times.</p>
@@ -7715,12 +7715,12 @@ export interface TimeWindow {
7715
7715
  * <p>The start time of an execution.</p>
7716
7716
  * @public
7717
7717
  */
7718
- StartTime?: Date;
7718
+ StartTime?: Date | undefined;
7719
7719
  /**
7720
7720
  * <p>The end time of an execution. The end time must be after the start date.</p>
7721
7721
  * @public
7722
7722
  */
7723
- EndTime?: Date;
7723
+ EndTime?: Date | undefined;
7724
7724
  }
7725
7725
  /**
7726
7726
  * <p>Returns details of a resource evaluation based on the selected filter.</p>
@@ -7734,17 +7734,17 @@ export interface ResourceEvaluationFilters {
7734
7734
  * </important>
7735
7735
  * @public
7736
7736
  */
7737
- EvaluationMode?: EvaluationMode;
7737
+ EvaluationMode?: EvaluationMode | undefined;
7738
7738
  /**
7739
7739
  * <p>Returns a <code>TimeWindow</code> object.</p>
7740
7740
  * @public
7741
7741
  */
7742
- TimeWindow?: TimeWindow;
7742
+ TimeWindow?: TimeWindow | undefined;
7743
7743
  /**
7744
7744
  * <p>Filters evaluations for a given infrastructure deployment. For example: CFN Stack.</p>
7745
7745
  * @public
7746
7746
  */
7747
- EvaluationContextIdentifier?: string;
7747
+ EvaluationContextIdentifier?: string | undefined;
7748
7748
  }
7749
7749
  /**
7750
7750
  * @public
@@ -7754,18 +7754,18 @@ export interface ListResourceEvaluationsRequest {
7754
7754
  * <p>Returns a <code>ResourceEvaluationFilters</code> object.</p>
7755
7755
  * @public
7756
7756
  */
7757
- Filters?: ResourceEvaluationFilters;
7757
+ Filters?: ResourceEvaluationFilters | undefined;
7758
7758
  /**
7759
7759
  * <p>The maximum number of evaluations returned on each page. The default is 10.
7760
7760
  * You cannot specify a number greater than 100. If you specify 0, Config uses the default.</p>
7761
7761
  * @public
7762
7762
  */
7763
- Limit?: number;
7763
+ Limit?: number | undefined;
7764
7764
  /**
7765
7765
  * <p>The <code>nextToken</code> string returned on a previous page that you use to get the next page of results in a paginated response.</p>
7766
7766
  * @public
7767
7767
  */
7768
- NextToken?: string;
7768
+ NextToken?: string | undefined;
7769
7769
  }
7770
7770
  /**
7771
7771
  * <p>Returns details of a resource evaluation.</p>
@@ -7776,17 +7776,17 @@ export interface ResourceEvaluation {
7776
7776
  * <p>The ResourceEvaluationId of a evaluation.</p>
7777
7777
  * @public
7778
7778
  */
7779
- ResourceEvaluationId?: string;
7779
+ ResourceEvaluationId?: string | undefined;
7780
7780
  /**
7781
7781
  * <p>The mode of an evaluation. The valid values are Detective or Proactive.</p>
7782
7782
  * @public
7783
7783
  */
7784
- EvaluationMode?: EvaluationMode;
7784
+ EvaluationMode?: EvaluationMode | undefined;
7785
7785
  /**
7786
7786
  * <p>The starting time of an execution.</p>
7787
7787
  * @public
7788
7788
  */
7789
- EvaluationStartTimestamp?: Date;
7789
+ EvaluationStartTimestamp?: Date | undefined;
7790
7790
  }
7791
7791
  /**
7792
7792
  * @public
@@ -7796,12 +7796,12 @@ export interface ListResourceEvaluationsResponse {
7796
7796
  * <p>Returns a <code>ResourceEvaluations</code> object.</p>
7797
7797
  * @public
7798
7798
  */
7799
- ResourceEvaluations?: ResourceEvaluation[];
7799
+ ResourceEvaluations?: ResourceEvaluation[] | undefined;
7800
7800
  /**
7801
7801
  * <p>The <code>nextToken</code> string returned on a previous page that you use to get the next page of results in a paginated response.</p>
7802
7802
  * @public
7803
7803
  */
7804
- NextToken?: string;
7804
+ NextToken?: string | undefined;
7805
7805
  }
7806
7806
  /**
7807
7807
  * @public
@@ -7811,12 +7811,12 @@ export interface ListStoredQueriesRequest {
7811
7811
  * <p>The nextToken string returned in a previous request that you use to request the next page of results in a paginated response.</p>
7812
7812
  * @public
7813
7813
  */
7814
- NextToken?: string;
7814
+ NextToken?: string | undefined;
7815
7815
  /**
7816
7816
  * <p>The maximum number of results to be returned with a single call.</p>
7817
7817
  * @public
7818
7818
  */
7819
- MaxResults?: number;
7819
+ MaxResults?: number | undefined;
7820
7820
  }
7821
7821
  /**
7822
7822
  * <p>Returns details of a specific query. </p>
@@ -7842,7 +7842,7 @@ export interface StoredQueryMetadata {
7842
7842
  * <p>A unique description for the query.</p>
7843
7843
  * @public
7844
7844
  */
7845
- Description?: string;
7845
+ Description?: string | undefined;
7846
7846
  }
7847
7847
  /**
7848
7848
  * @public
@@ -7852,14 +7852,14 @@ export interface ListStoredQueriesResponse {
7852
7852
  * <p>A list of <code>StoredQueryMetadata</code> objects.</p>
7853
7853
  * @public
7854
7854
  */
7855
- StoredQueryMetadata?: StoredQueryMetadata[];
7855
+ StoredQueryMetadata?: StoredQueryMetadata[] | undefined;
7856
7856
  /**
7857
7857
  * <p>If the previous paginated request didn't return all of the remaining results, the response object's <code>NextToken</code> parameter value is set to a token.
7858
7858
  * To retrieve the next set of results, call this action again and assign that token to the request object's <code>NextToken</code> parameter.
7859
7859
  * If there are no remaining results, the previous response object's <code>NextToken</code> parameter is set to <code>null</code>. </p>
7860
7860
  * @public
7861
7861
  */
7862
- NextToken?: string;
7862
+ NextToken?: string | undefined;
7863
7863
  }
7864
7864
  /**
7865
7865
  * @public
@@ -7874,10 +7874,10 @@ export interface ListTagsForResourceRequest {
7874
7874
  * <p>The maximum number of tags returned on each page. The limit maximum is 50. You cannot specify a number greater than 50. If you specify 0, Config uses the default. </p>
7875
7875
  * @public
7876
7876
  */
7877
- Limit?: number;
7877
+ Limit?: number | undefined;
7878
7878
  /**
7879
7879
  * <p>The <code>nextToken</code> string returned on a previous page that you use to get the next page of results in a paginated response. </p>
7880
7880
  * @public
7881
7881
  */
7882
- NextToken?: string;
7882
+ NextToken?: string | undefined;
7883
7883
  }