@aws-sdk/client-config-service 3.687.0 → 3.691.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.
@@ -12,12 +12,12 @@ export interface Tag {
12
12
  * <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>
13
13
  * @public
14
14
  */
15
- Key?: string;
15
+ Key?: string | undefined;
16
16
  /**
17
17
  * <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>
18
18
  * @public
19
19
  */
20
- Value?: string;
20
+ Value?: string | undefined;
21
21
  }
22
22
  /**
23
23
  * @public
@@ -27,12 +27,12 @@ export interface ListTagsForResourceResponse {
27
27
  * <p>The tags for the resource.</p>
28
28
  * @public
29
29
  */
30
- Tags?: Tag[];
30
+ Tags?: Tag[] | undefined;
31
31
  /**
32
32
  * <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>
33
33
  * @public
34
34
  */
35
- NextToken?: string;
35
+ NextToken?: string | undefined;
36
36
  }
37
37
  /**
38
38
  * <p>You have reached the limit of active custom resource types in your account. There is a limit of 100,000.
@@ -215,7 +215,7 @@ export interface OrganizationCustomPolicyRuleMetadata {
215
215
  * <p>The description that you provide for your organization Config Custom Policy rule.</p>
216
216
  * @public
217
217
  */
218
- Description?: string;
218
+ Description?: string | undefined;
219
219
  /**
220
220
  * <p>The type of notification that initiates Config to run an evaluation for a rule.
221
221
  * For Config Custom Policy rules, Config supports change-initiated notification types:</p>
@@ -234,39 +234,39 @@ export interface OrganizationCustomPolicyRuleMetadata {
234
234
  * </ul>
235
235
  * @public
236
236
  */
237
- OrganizationConfigRuleTriggerTypes?: OrganizationConfigRuleTriggerTypeNoSN[];
237
+ OrganizationConfigRuleTriggerTypes?: OrganizationConfigRuleTriggerTypeNoSN[] | undefined;
238
238
  /**
239
239
  * <p>A string, in JSON format, that is passed to your organization Config Custom Policy rule.</p>
240
240
  * @public
241
241
  */
242
- InputParameters?: string;
242
+ InputParameters?: string | undefined;
243
243
  /**
244
244
  * <p>The maximum frequency with which Config runs evaluations for a rule. Your
245
245
  * Config Custom Policy rule is triggered when Config delivers
246
246
  * the configuration snapshot. For more information, see <a>ConfigSnapshotDeliveryProperties</a>.</p>
247
247
  * @public
248
248
  */
249
- MaximumExecutionFrequency?: MaximumExecutionFrequency;
249
+ MaximumExecutionFrequency?: MaximumExecutionFrequency | undefined;
250
250
  /**
251
251
  * <p>The type of the Amazon Web Services resource that was evaluated.</p>
252
252
  * @public
253
253
  */
254
- ResourceTypesScope?: string[];
254
+ ResourceTypesScope?: string[] | undefined;
255
255
  /**
256
256
  * <p>The ID of the Amazon Web Services resource that was evaluated.</p>
257
257
  * @public
258
258
  */
259
- ResourceIdScope?: string;
259
+ ResourceIdScope?: string | undefined;
260
260
  /**
261
261
  * <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>
262
262
  * @public
263
263
  */
264
- TagKeyScope?: string;
264
+ TagKeyScope?: string | undefined;
265
265
  /**
266
266
  * <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>
267
267
  * @public
268
268
  */
269
- TagValueScope?: string;
269
+ TagValueScope?: string | undefined;
270
270
  /**
271
271
  * <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
272
272
  * Repository</a>.</p>
@@ -282,7 +282,7 @@ export interface OrganizationCustomPolicyRuleMetadata {
282
282
  * <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>
283
283
  * @public
284
284
  */
285
- DebugLogDeliveryAccounts?: string[];
285
+ DebugLogDeliveryAccounts?: string[] | undefined;
286
286
  }
287
287
  /**
288
288
  * @public
@@ -302,7 +302,7 @@ export interface PutAggregationAuthorizationRequest {
302
302
  * <p>An array of tag object.</p>
303
303
  * @public
304
304
  */
305
- Tags?: Tag[];
305
+ Tags?: Tag[] | undefined;
306
306
  }
307
307
  /**
308
308
  * @public
@@ -314,7 +314,7 @@ export interface PutAggregationAuthorizationResponse {
314
314
  * </p>
315
315
  * @public
316
316
  */
317
- AggregationAuthorization?: AggregationAuthorization;
317
+ AggregationAuthorization?: AggregationAuthorization | undefined;
318
318
  }
319
319
  /**
320
320
  * @public
@@ -329,7 +329,7 @@ export interface PutConfigRuleRequest {
329
329
  * <p>An array of tag object.</p>
330
330
  * @public
331
331
  */
332
- Tags?: Tag[];
332
+ Tags?: Tag[] | undefined;
333
333
  }
334
334
  /**
335
335
  * @public
@@ -346,17 +346,17 @@ export interface PutConfigurationAggregatorRequest {
346
346
  * </p>
347
347
  * @public
348
348
  */
349
- AccountAggregationSources?: AccountAggregationSource[];
349
+ AccountAggregationSources?: AccountAggregationSource[] | undefined;
350
350
  /**
351
351
  * <p>An OrganizationAggregationSource object.</p>
352
352
  * @public
353
353
  */
354
- OrganizationAggregationSource?: OrganizationAggregationSource;
354
+ OrganizationAggregationSource?: OrganizationAggregationSource | undefined;
355
355
  /**
356
356
  * <p>An array of tag object.</p>
357
357
  * @public
358
358
  */
359
- Tags?: Tag[];
359
+ Tags?: Tag[] | undefined;
360
360
  }
361
361
  /**
362
362
  * @public
@@ -366,7 +366,7 @@ export interface PutConfigurationAggregatorResponse {
366
366
  * <p>Returns a ConfigurationAggregator object.</p>
367
367
  * @public
368
368
  */
369
- ConfigurationAggregator?: ConfigurationAggregator;
369
+ ConfigurationAggregator?: ConfigurationAggregator | undefined;
370
370
  }
371
371
  /**
372
372
  * <p>The input for the <a>PutConfigurationRecorder</a>
@@ -397,7 +397,7 @@ export interface PutConformancePackRequest {
397
397
  * </note>
398
398
  * @public
399
399
  */
400
- TemplateS3Uri?: string;
400
+ TemplateS3Uri?: string | undefined;
401
401
  /**
402
402
  * <p>A string containing the full conformance pack template body. The structure containing the template body has a minimum length of 1 byte and a maximum length of 51,200 bytes.</p>
403
403
  * <note>
@@ -405,7 +405,7 @@ export interface PutConformancePackRequest {
405
405
  * </note>
406
406
  * @public
407
407
  */
408
- TemplateBody?: string;
408
+ TemplateBody?: string | undefined;
409
409
  /**
410
410
  * <p>The name of the Amazon S3 bucket where Config stores conformance pack templates.</p>
411
411
  * <note>
@@ -413,7 +413,7 @@ export interface PutConformancePackRequest {
413
413
  * </note>
414
414
  * @public
415
415
  */
416
- DeliveryS3Bucket?: string;
416
+ DeliveryS3Bucket?: string | undefined;
417
417
  /**
418
418
  * <p>The prefix for the Amazon S3 bucket. </p>
419
419
  * <note>
@@ -421,17 +421,17 @@ export interface PutConformancePackRequest {
421
421
  * </note>
422
422
  * @public
423
423
  */
424
- DeliveryS3KeyPrefix?: string;
424
+ DeliveryS3KeyPrefix?: string | undefined;
425
425
  /**
426
426
  * <p>A list of <code>ConformancePackInputParameter</code> objects.</p>
427
427
  * @public
428
428
  */
429
- ConformancePackInputParameters?: ConformancePackInputParameter[];
429
+ ConformancePackInputParameters?: ConformancePackInputParameter[] | undefined;
430
430
  /**
431
431
  * <p>An object of type <code>TemplateSSMDocumentDetails</code>, which contains the name or the 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>
432
432
  * @public
433
433
  */
434
- TemplateSSMDocumentDetails?: TemplateSSMDocumentDetails;
434
+ TemplateSSMDocumentDetails?: TemplateSSMDocumentDetails | undefined;
435
435
  }
436
436
  /**
437
437
  * @public
@@ -441,7 +441,7 @@ export interface PutConformancePackResponse {
441
441
  * <p>ARN of the conformance pack.</p>
442
442
  * @public
443
443
  */
444
- ConformancePackArn?: string;
444
+ ConformancePackArn?: string | undefined;
445
445
  }
446
446
  /**
447
447
  * <p>The input for the <a>PutDeliveryChannel</a>
@@ -469,7 +469,7 @@ export interface PutEvaluationsRequest {
469
469
  * function.</p>
470
470
  * @public
471
471
  */
472
- Evaluations?: Evaluation[];
472
+ Evaluations?: Evaluation[] | undefined;
473
473
  /**
474
474
  * <p>An encrypted token that associates an evaluation with an Config rule. Identifies the rule and the event that triggered the
475
475
  * evaluation.</p>
@@ -489,7 +489,7 @@ export interface PutEvaluationsRequest {
489
489
  * </note>
490
490
  * @public
491
491
  */
492
- TestMode?: boolean;
492
+ TestMode?: boolean | undefined;
493
493
  }
494
494
  /**
495
495
  * <p></p>
@@ -501,7 +501,7 @@ export interface PutEvaluationsResponse {
501
501
  * error.</p>
502
502
  * @public
503
503
  */
504
- FailedEvaluations?: Evaluation[];
504
+ FailedEvaluations?: Evaluation[] | undefined;
505
505
  }
506
506
  /**
507
507
  * @public
@@ -538,26 +538,26 @@ export interface PutOrganizationConfigRuleRequest {
538
538
  * It also provides the frequency with which you want Config to run evaluations for the rule if the trigger type is periodic.</p>
539
539
  * @public
540
540
  */
541
- OrganizationManagedRuleMetadata?: OrganizationManagedRuleMetadata;
541
+ OrganizationManagedRuleMetadata?: OrganizationManagedRuleMetadata | undefined;
542
542
  /**
543
543
  * <p>An <code>OrganizationCustomRuleMetadata</code> object. This object specifies organization custom rule metadata such as resource type,
544
544
  * resource ID of Amazon Web Services resource, Lambda function ARN, and organization trigger types that trigger Config to evaluate your Amazon Web Services resources against a rule.
545
545
  * It also provides the frequency with which you want Config to run evaluations for the rule if the trigger type is periodic.</p>
546
546
  * @public
547
547
  */
548
- OrganizationCustomRuleMetadata?: OrganizationCustomRuleMetadata;
548
+ OrganizationCustomRuleMetadata?: OrganizationCustomRuleMetadata | undefined;
549
549
  /**
550
550
  * <p>A comma-separated list of accounts that you want to exclude from an organization Config rule.</p>
551
551
  * @public
552
552
  */
553
- ExcludedAccounts?: string[];
553
+ ExcludedAccounts?: string[] | undefined;
554
554
  /**
555
555
  * <p>An <code>OrganizationCustomPolicyRuleMetadata</code> object. This object specifies metadata for your organization's Config Custom Policy rule. The metadata includes the runtime system in use, which accounts have debug
556
556
  * logging enabled, and other custom rule metadata, such as resource type, resource ID of
557
557
  * Amazon Web Services resource, and organization trigger types that initiate Config to evaluate Amazon Web Services resources against a rule.</p>
558
558
  * @public
559
559
  */
560
- OrganizationCustomPolicyRuleMetadata?: OrganizationCustomPolicyRuleMetadata;
560
+ OrganizationCustomPolicyRuleMetadata?: OrganizationCustomPolicyRuleMetadata | undefined;
561
561
  }
562
562
  /**
563
563
  * @public
@@ -567,7 +567,7 @@ export interface PutOrganizationConfigRuleResponse {
567
567
  * <p>The Amazon Resource Name (ARN) of an organization Config rule.</p>
568
568
  * @public
569
569
  */
570
- OrganizationConfigRuleArn?: string;
570
+ OrganizationConfigRuleArn?: string | undefined;
571
571
  }
572
572
  /**
573
573
  * @public
@@ -587,13 +587,13 @@ export interface PutOrganizationConformancePackRequest {
587
587
  * </note>
588
588
  * @public
589
589
  */
590
- TemplateS3Uri?: string;
590
+ TemplateS3Uri?: string | undefined;
591
591
  /**
592
592
  * <p>A string containing full conformance pack template body. Structure containing the template body
593
593
  * with a minimum length of 1 byte and a maximum length of 51,200 bytes.</p>
594
594
  * @public
595
595
  */
596
- TemplateBody?: string;
596
+ TemplateBody?: string | undefined;
597
597
  /**
598
598
  * <p>The name of the Amazon S3 bucket where Config stores conformance pack templates.</p>
599
599
  * <note>
@@ -601,7 +601,7 @@ export interface PutOrganizationConformancePackRequest {
601
601
  * </note>
602
602
  * @public
603
603
  */
604
- DeliveryS3Bucket?: string;
604
+ DeliveryS3Bucket?: string | undefined;
605
605
  /**
606
606
  * <p>The prefix for the Amazon S3 bucket.</p>
607
607
  * <note>
@@ -609,17 +609,17 @@ export interface PutOrganizationConformancePackRequest {
609
609
  * </note>
610
610
  * @public
611
611
  */
612
- DeliveryS3KeyPrefix?: string;
612
+ DeliveryS3KeyPrefix?: string | undefined;
613
613
  /**
614
614
  * <p>A list of <code>ConformancePackInputParameter</code> objects.</p>
615
615
  * @public
616
616
  */
617
- ConformancePackInputParameters?: ConformancePackInputParameter[];
617
+ ConformancePackInputParameters?: ConformancePackInputParameter[] | undefined;
618
618
  /**
619
619
  * <p>A list of Amazon Web Services accounts to be excluded from an organization conformance pack while deploying a conformance pack.</p>
620
620
  * @public
621
621
  */
622
- ExcludedAccounts?: string[];
622
+ ExcludedAccounts?: string[] | undefined;
623
623
  }
624
624
  /**
625
625
  * @public
@@ -629,7 +629,7 @@ export interface PutOrganizationConformancePackResponse {
629
629
  * <p>ARN of the organization conformance pack.</p>
630
630
  * @public
631
631
  */
632
- OrganizationConformancePackArn?: string;
632
+ OrganizationConformancePackArn?: string | undefined;
633
633
  }
634
634
  /**
635
635
  * @public
@@ -649,7 +649,7 @@ export interface PutRemediationConfigurationsResponse {
649
649
  * <p>Returns a list of failed remediation batch objects.</p>
650
650
  * @public
651
651
  */
652
- FailedBatches?: FailedRemediationBatch[];
652
+ FailedBatches?: FailedRemediationBatch[] | undefined;
653
653
  }
654
654
  /**
655
655
  * @public
@@ -669,12 +669,12 @@ export interface PutRemediationExceptionsRequest {
669
669
  * <p>The message contains an explanation of the exception.</p>
670
670
  * @public
671
671
  */
672
- Message?: string;
672
+ Message?: string | undefined;
673
673
  /**
674
674
  * <p>The exception is automatically deleted after the expiration date.</p>
675
675
  * @public
676
676
  */
677
- ExpirationTime?: Date;
677
+ ExpirationTime?: Date | undefined;
678
678
  }
679
679
  /**
680
680
  * @public
@@ -684,7 +684,7 @@ export interface PutRemediationExceptionsResponse {
684
684
  * <p>Returns a list of failed remediation exceptions batch objects. Each object in the batch consists of a list of failed items and failure messages.</p>
685
685
  * @public
686
686
  */
687
- FailedBatches?: FailedRemediationExceptionBatch[];
687
+ FailedBatches?: FailedRemediationExceptionBatch[] | undefined;
688
688
  }
689
689
  /**
690
690
  * @public
@@ -712,7 +712,7 @@ export interface PutResourceConfigRequest {
712
712
  * <p>Name of the resource.</p>
713
713
  * @public
714
714
  */
715
- ResourceName?: string;
715
+ ResourceName?: string | undefined;
716
716
  /**
717
717
  * <p>The configuration object of the resource in valid JSON format. It must match the schema registered with CloudFormation.</p>
718
718
  * <note>
@@ -729,7 +729,7 @@ export interface PutResourceConfigRequest {
729
729
  * </note>
730
730
  * @public
731
731
  */
732
- Tags?: Record<string, string>;
732
+ Tags?: Record<string, string> | undefined;
733
733
  }
734
734
  /**
735
735
  * @public
@@ -754,7 +754,7 @@ export interface PutRetentionConfigurationResponse {
754
754
  * <p>Returns a retention configuration object.</p>
755
755
  * @public
756
756
  */
757
- RetentionConfiguration?: RetentionConfiguration;
757
+ RetentionConfiguration?: RetentionConfiguration | undefined;
758
758
  }
759
759
  /**
760
760
  * @public
@@ -774,7 +774,7 @@ export interface PutStoredQueryRequest {
774
774
  * <p>A list of <code>Tags</code> object.</p>
775
775
  * @public
776
776
  */
777
- Tags?: Tag[];
777
+ Tags?: Tag[] | undefined;
778
778
  }
779
779
  /**
780
780
  * @public
@@ -785,7 +785,7 @@ export interface PutStoredQueryResponse {
785
785
  * For example, arn:partition:service:region:account-id:resource-type/resource-name/resource-id.</p>
786
786
  * @public
787
787
  */
788
- QueryArn?: string;
788
+ QueryArn?: string | undefined;
789
789
  }
790
790
  /**
791
791
  * <p>Two users are trying to modify the same query at the same time. Wait for a moment and try again.</p>
@@ -823,7 +823,7 @@ export interface QueryInfo {
823
823
  * <p>Returns a <code>FieldInfo</code> object.</p>
824
824
  * @public
825
825
  */
826
- SelectFields?: FieldInfo[];
826
+ SelectFields?: FieldInfo[] | undefined;
827
827
  }
828
828
  /**
829
829
  * @public
@@ -843,17 +843,17 @@ export interface SelectAggregateResourceConfigRequest {
843
843
  * <p>The maximum number of query results returned on each page. </p>
844
844
  * @public
845
845
  */
846
- Limit?: number;
846
+ Limit?: number | undefined;
847
847
  /**
848
848
  * <p>The maximum number of query results returned on each page. Config also allows the Limit request parameter.</p>
849
849
  * @public
850
850
  */
851
- MaxResults?: number;
851
+ MaxResults?: number | undefined;
852
852
  /**
853
853
  * <p>The nextToken string returned in a previous request that you use to request the next page of results in a paginated response. </p>
854
854
  * @public
855
855
  */
856
- NextToken?: string;
856
+ NextToken?: string | undefined;
857
857
  }
858
858
  /**
859
859
  * @public
@@ -863,17 +863,17 @@ export interface SelectAggregateResourceConfigResponse {
863
863
  * <p>Returns the results for the SQL query.</p>
864
864
  * @public
865
865
  */
866
- Results?: string[];
866
+ Results?: string[] | undefined;
867
867
  /**
868
868
  * <p>Details about the query.</p>
869
869
  * @public
870
870
  */
871
- QueryInfo?: QueryInfo;
871
+ QueryInfo?: QueryInfo | undefined;
872
872
  /**
873
873
  * <p>The nextToken string returned in a previous request that you use to request the next page of results in a paginated response. </p>
874
874
  * @public
875
875
  */
876
- NextToken?: string;
876
+ NextToken?: string | undefined;
877
877
  }
878
878
  /**
879
879
  * @public
@@ -888,12 +888,12 @@ export interface SelectResourceConfigRequest {
888
888
  * <p>The maximum number of query results returned on each page. </p>
889
889
  * @public
890
890
  */
891
- Limit?: number;
891
+ Limit?: number | undefined;
892
892
  /**
893
893
  * <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>
894
894
  * @public
895
895
  */
896
- NextToken?: string;
896
+ NextToken?: string | undefined;
897
897
  }
898
898
  /**
899
899
  * @public
@@ -903,17 +903,17 @@ export interface SelectResourceConfigResponse {
903
903
  * <p>Returns the results for the SQL query.</p>
904
904
  * @public
905
905
  */
906
- Results?: string[];
906
+ Results?: string[] | undefined;
907
907
  /**
908
908
  * <p>Returns the <code>QueryInfo</code> object.</p>
909
909
  * @public
910
910
  */
911
- QueryInfo?: QueryInfo;
911
+ QueryInfo?: QueryInfo | undefined;
912
912
  /**
913
913
  * <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>
914
914
  * @public
915
915
  */
916
- NextToken?: string;
916
+ NextToken?: string | undefined;
917
917
  }
918
918
  /**
919
919
  * <p></p>
@@ -925,7 +925,7 @@ export interface StartConfigRulesEvaluationRequest {
925
925
  * evaluations for.</p>
926
926
  * @public
927
927
  */
928
- ConfigRuleNames?: string[];
928
+ ConfigRuleNames?: string[] | undefined;
929
929
  }
930
930
  /**
931
931
  * <p>The output when you start the evaluation for the specified Config rule.</p>
@@ -969,12 +969,12 @@ export interface StartRemediationExecutionResponse {
969
969
  * <p>Returns a failure message. For example, the resource is already compliant.</p>
970
970
  * @public
971
971
  */
972
- FailureMessage?: string;
972
+ FailureMessage?: string | undefined;
973
973
  /**
974
974
  * <p>For resources that have failed to start execution, the API returns a resource key object.</p>
975
975
  * @public
976
976
  */
977
- FailedItems?: ResourceKey[];
977
+ FailedItems?: ResourceKey[] | undefined;
978
978
  }
979
979
  /**
980
980
  * @public
@@ -989,7 +989,7 @@ export interface StartResourceEvaluationRequest {
989
989
  * <p>Returns an <code>EvaluationContext</code> object.</p>
990
990
  * @public
991
991
  */
992
- EvaluationContext?: EvaluationContext;
992
+ EvaluationContext?: EvaluationContext | undefined;
993
993
  /**
994
994
  * <p>The mode of an evaluation. The valid values for this API are <code>DETECTIVE</code> and <code>PROACTIVE</code>.</p>
995
995
  * @public
@@ -999,7 +999,7 @@ export interface StartResourceEvaluationRequest {
999
999
  * <p>The timeout for an evaluation. The default is 900 seconds. You cannot specify a number greater than 3600. If you specify 0, Config uses the default.</p>
1000
1000
  * @public
1001
1001
  */
1002
- EvaluationTimeout?: number;
1002
+ EvaluationTimeout?: number | undefined;
1003
1003
  /**
1004
1004
  * <p>A client token is a unique, case-sensitive string of up to 64 ASCII characters.
1005
1005
  * To make an idempotent API request using one of these actions, specify a client token in the request.</p>
@@ -1013,7 +1013,7 @@ export interface StartResourceEvaluationRequest {
1013
1013
  * </note>
1014
1014
  * @public
1015
1015
  */
1016
- ClientToken?: string;
1016
+ ClientToken?: string | undefined;
1017
1017
  }
1018
1018
  /**
1019
1019
  * @public
@@ -1024,7 +1024,7 @@ export interface StartResourceEvaluationResponse {
1024
1024
  * unique ResourceEvaluationId that is associated with a single execution.</p>
1025
1025
  * @public
1026
1026
  */
1027
- ResourceEvaluationId?: string;
1027
+ ResourceEvaluationId?: string | undefined;
1028
1028
  }
1029
1029
  /**
1030
1030
  * <p>The input for the <a>StopConfigurationRecorder</a> action.</p>