@aws-sdk/client-docdb 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.
@@ -46,17 +46,17 @@ export interface EventSubscription {
46
46
  * subscription.</p>
47
47
  * @public
48
48
  */
49
- CustomerAwsId?: string;
49
+ CustomerAwsId?: string | undefined;
50
50
  /**
51
51
  * <p>The Amazon DocumentDB event notification subscription ID.</p>
52
52
  * @public
53
53
  */
54
- CustSubscriptionId?: string;
54
+ CustSubscriptionId?: string | undefined;
55
55
  /**
56
56
  * <p>The topic ARN of the Amazon DocumentDB event notification subscription.</p>
57
57
  * @public
58
58
  */
59
- SnsTopicArn?: string;
59
+ SnsTopicArn?: string | undefined;
60
60
  /**
61
61
  * <p>The status of the Amazon DocumentDB event notification subscription.</p>
62
62
  * <p>Constraints:</p>
@@ -69,38 +69,38 @@ export interface EventSubscription {
69
69
  * topic was deleted after the subscription was created.</p>
70
70
  * @public
71
71
  */
72
- Status?: string;
72
+ Status?: string | undefined;
73
73
  /**
74
74
  * <p>The time at which the Amazon DocumentDB event notification subscription was created.</p>
75
75
  * @public
76
76
  */
77
- SubscriptionCreationTime?: string;
77
+ SubscriptionCreationTime?: string | undefined;
78
78
  /**
79
79
  * <p>The source type for the Amazon DocumentDB event notification subscription.</p>
80
80
  * @public
81
81
  */
82
- SourceType?: string;
82
+ SourceType?: string | undefined;
83
83
  /**
84
84
  * <p>A list of source IDs for the Amazon DocumentDB event notification subscription.</p>
85
85
  * @public
86
86
  */
87
- SourceIdsList?: string[];
87
+ SourceIdsList?: string[] | undefined;
88
88
  /**
89
89
  * <p>A list of event categories for the Amazon DocumentDB event notification subscription.</p>
90
90
  * @public
91
91
  */
92
- EventCategoriesList?: string[];
92
+ EventCategoriesList?: string[] | undefined;
93
93
  /**
94
94
  * <p>A Boolean value indicating whether the subscription is enabled. A value of
95
95
  * <code>true</code> indicates that the subscription is enabled.</p>
96
96
  * @public
97
97
  */
98
- Enabled?: boolean;
98
+ Enabled?: boolean | undefined;
99
99
  /**
100
100
  * <p>The Amazon Resource Name (ARN) for the event subscription.</p>
101
101
  * @public
102
102
  */
103
- EventSubscriptionArn?: string;
103
+ EventSubscriptionArn?: string | undefined;
104
104
  }
105
105
  /**
106
106
  * @public
@@ -110,7 +110,7 @@ export interface AddSourceIdentifierToSubscriptionResult {
110
110
  * <p>Detailed information about an event to which you have subscribed.</p>
111
111
  * @public
112
112
  */
113
- EventSubscription?: EventSubscription;
113
+ EventSubscription?: EventSubscription | undefined;
114
114
  }
115
115
  /**
116
116
  * <p>The requested source could not be found. </p>
@@ -145,12 +145,12 @@ export interface Tag {
145
145
  * <p>The required name of the tag. The string value can be from 1 to 128 Unicode characters in length and can't be prefixed with "<code>aws:</code>" or "<code>rds:</code>". The string can contain only the set of Unicode letters, digits, white space, '_', '.', '/', '=', '+', '-' (Java regex: "^([\\p\{L\}\\p\{Z\}\\p\{N\}_.:/=+\\-]*)$").</p>
146
146
  * @public
147
147
  */
148
- Key?: string;
148
+ Key?: string | undefined;
149
149
  /**
150
150
  * <p>The optional value of the tag. The string value can be from 1 to 256 Unicode characters in length and can't be prefixed with "<code>aws:</code>" or "<code>rds:</code>". The string can contain only the set of Unicode letters, digits, white space, '_', '.', '/', '=', '+', '-' (Java regex: "^([\\p\{L\}\\p\{Z\}\\p\{N\}_.:/=+\\-]*)$").</p>
151
151
  * @public
152
152
  */
153
- Value?: string;
153
+ Value?: string | undefined;
154
154
  }
155
155
  /**
156
156
  * <p>Represents the input to <a>AddTagsToResource</a>.
@@ -264,14 +264,14 @@ export interface PendingMaintenanceAction {
264
264
  * <p>The type of pending maintenance action that is available for the resource.</p>
265
265
  * @public
266
266
  */
267
- Action?: string;
267
+ Action?: string | undefined;
268
268
  /**
269
269
  * <p>The date of the maintenance window when the action is applied. The maintenance action
270
270
  * is applied to the resource during its first maintenance window after this date. If this
271
271
  * date is specified, any <code>next-maintenance</code> opt-in requests are ignored.</p>
272
272
  * @public
273
273
  */
274
- AutoAppliedAfterDate?: Date;
274
+ AutoAppliedAfterDate?: Date | undefined;
275
275
  /**
276
276
  * <p>The date when the maintenance action is automatically applied. The maintenance action
277
277
  * is applied to the resource on this date regardless of the maintenance window for the
@@ -279,23 +279,23 @@ export interface PendingMaintenanceAction {
279
279
  * ignored.</p>
280
280
  * @public
281
281
  */
282
- ForcedApplyDate?: Date;
282
+ ForcedApplyDate?: Date | undefined;
283
283
  /**
284
284
  * <p>Indicates the type of opt-in request that has been received for the resource.</p>
285
285
  * @public
286
286
  */
287
- OptInStatus?: string;
287
+ OptInStatus?: string | undefined;
288
288
  /**
289
289
  * <p>The effective date when the pending maintenance action is applied to the
290
290
  * resource.</p>
291
291
  * @public
292
292
  */
293
- CurrentApplyDate?: Date;
293
+ CurrentApplyDate?: Date | undefined;
294
294
  /**
295
295
  * <p>A description providing more detail about the maintenance action.</p>
296
296
  * @public
297
297
  */
298
- Description?: string;
298
+ Description?: string | undefined;
299
299
  }
300
300
  /**
301
301
  * <p>Represents the output of <a>ApplyPendingMaintenanceAction</a>.
@@ -308,13 +308,13 @@ export interface ResourcePendingMaintenanceActions {
308
308
  * maintenance actions.</p>
309
309
  * @public
310
310
  */
311
- ResourceIdentifier?: string;
311
+ ResourceIdentifier?: string | undefined;
312
312
  /**
313
313
  * <p>A list that provides details about the pending maintenance actions
314
314
  * for the resource.</p>
315
315
  * @public
316
316
  */
317
- PendingMaintenanceActionDetails?: PendingMaintenanceAction[];
317
+ PendingMaintenanceActionDetails?: PendingMaintenanceAction[] | undefined;
318
318
  }
319
319
  /**
320
320
  * @public
@@ -325,7 +325,7 @@ export interface ApplyPendingMaintenanceActionResult {
325
325
  * </p>
326
326
  * @public
327
327
  */
328
- ResourcePendingMaintenanceActions?: ResourcePendingMaintenanceActions;
328
+ ResourcePendingMaintenanceActions?: ResourcePendingMaintenanceActions | undefined;
329
329
  }
330
330
  /**
331
331
  * <p>The cluster isn't in a valid state.</p>
@@ -420,7 +420,7 @@ export interface CopyDBClusterParameterGroupMessage {
420
420
  * <p>The tags that are to be assigned to the parameter group.</p>
421
421
  * @public
422
422
  */
423
- Tags?: Tag[];
423
+ Tags?: Tag[] | undefined;
424
424
  }
425
425
  /**
426
426
  * <p>Detailed information about a cluster parameter group. </p>
@@ -431,24 +431,24 @@ export interface DBClusterParameterGroup {
431
431
  * <p>Provides the name of the cluster parameter group.</p>
432
432
  * @public
433
433
  */
434
- DBClusterParameterGroupName?: string;
434
+ DBClusterParameterGroupName?: string | undefined;
435
435
  /**
436
436
  * <p>Provides the name of the parameter group family that this cluster parameter
437
437
  * group is compatible with.</p>
438
438
  * @public
439
439
  */
440
- DBParameterGroupFamily?: string;
440
+ DBParameterGroupFamily?: string | undefined;
441
441
  /**
442
442
  * <p>Provides the customer-specified description for this cluster parameter
443
443
  * group.</p>
444
444
  * @public
445
445
  */
446
- Description?: string;
446
+ Description?: string | undefined;
447
447
  /**
448
448
  * <p>The Amazon Resource Name (ARN) for the cluster parameter group.</p>
449
449
  * @public
450
450
  */
451
- DBClusterParameterGroupArn?: string;
451
+ DBClusterParameterGroupArn?: string | undefined;
452
452
  }
453
453
  /**
454
454
  * @public
@@ -458,7 +458,7 @@ export interface CopyDBClusterParameterGroupResult {
458
458
  * <p>Detailed information about a cluster parameter group. </p>
459
459
  * @public
460
460
  */
461
- DBClusterParameterGroup?: DBClusterParameterGroup;
461
+ DBClusterParameterGroup?: DBClusterParameterGroup | undefined;
462
462
  }
463
463
  /**
464
464
  * <p>A parameter group with the same name already exists.</p>
@@ -556,7 +556,7 @@ export interface CopyDBClusterSnapshotMessage {
556
556
  * <p>If you copy an unencrypted cluster snapshot and specify a value for the <code>KmsKeyId</code> parameter, an error is returned.</p>
557
557
  * @public
558
558
  */
559
- KmsKeyId?: string;
559
+ KmsKeyId?: string | undefined;
560
560
  /**
561
561
  * <p>The URL that contains a Signature Version 4 signed request for the<code>CopyDBClusterSnapshot</code> API action in the Amazon Web Services Region that contains the source cluster snapshot to copy. You must use the <code>PreSignedUrl</code> parameter when copying a cluster snapshot from another Amazon Web Services Region.</p>
562
562
  * <p>If you are using an Amazon Web Services SDK tool or the CLI, you can specify
@@ -597,19 +597,19 @@ export interface CopyDBClusterSnapshotMessage {
597
597
  * </ul>
598
598
  * @public
599
599
  */
600
- PreSignedUrl?: string;
600
+ PreSignedUrl?: string | undefined;
601
601
  /**
602
602
  * <p>Set to <code>true</code> to copy all tags from the source cluster
603
603
  * snapshot to the target cluster snapshot, and otherwise
604
604
  * <code>false</code>. The default is <code>false</code>.</p>
605
605
  * @public
606
606
  */
607
- CopyTags?: boolean;
607
+ CopyTags?: boolean | undefined;
608
608
  /**
609
609
  * <p>The tags to be assigned to the cluster snapshot.</p>
610
610
  * @public
611
611
  */
612
- Tags?: Tag[];
612
+ Tags?: Tag[] | undefined;
613
613
  }
614
614
  /**
615
615
  * <p>Detailed information about a cluster snapshot. </p>
@@ -621,92 +621,92 @@ export interface DBClusterSnapshot {
621
621
  * snapshot can be restored in.</p>
622
622
  * @public
623
623
  */
624
- AvailabilityZones?: string[];
624
+ AvailabilityZones?: string[] | undefined;
625
625
  /**
626
626
  * <p>Specifies the identifier for the cluster snapshot.</p>
627
627
  * @public
628
628
  */
629
- DBClusterSnapshotIdentifier?: string;
629
+ DBClusterSnapshotIdentifier?: string | undefined;
630
630
  /**
631
631
  * <p>Specifies the cluster identifier of the cluster that this cluster snapshot
632
632
  * was created from.</p>
633
633
  * @public
634
634
  */
635
- DBClusterIdentifier?: string;
635
+ DBClusterIdentifier?: string | undefined;
636
636
  /**
637
637
  * <p>Provides the time when the snapshot was taken, in UTC.</p>
638
638
  * @public
639
639
  */
640
- SnapshotCreateTime?: Date;
640
+ SnapshotCreateTime?: Date | undefined;
641
641
  /**
642
642
  * <p>Specifies the name of the database engine.</p>
643
643
  * @public
644
644
  */
645
- Engine?: string;
645
+ Engine?: string | undefined;
646
646
  /**
647
647
  * <p>Specifies the status of this cluster snapshot.</p>
648
648
  * @public
649
649
  */
650
- Status?: string;
650
+ Status?: string | undefined;
651
651
  /**
652
652
  * <p>Specifies the port that the cluster was listening on at the time of the
653
653
  * snapshot.</p>
654
654
  * @public
655
655
  */
656
- Port?: number;
656
+ Port?: number | undefined;
657
657
  /**
658
658
  * <p>Provides the virtual private cloud (VPC) ID that is associated with the cluster
659
659
  * snapshot.</p>
660
660
  * @public
661
661
  */
662
- VpcId?: string;
662
+ VpcId?: string | undefined;
663
663
  /**
664
664
  * <p>Specifies the time when the cluster was created, in Universal Coordinated Time
665
665
  * (UTC).</p>
666
666
  * @public
667
667
  */
668
- ClusterCreateTime?: Date;
668
+ ClusterCreateTime?: Date | undefined;
669
669
  /**
670
670
  * <p>Provides the master user name for the cluster snapshot.</p>
671
671
  * @public
672
672
  */
673
- MasterUsername?: string;
673
+ MasterUsername?: string | undefined;
674
674
  /**
675
675
  * <p>Provides the version of the database engine for this cluster snapshot.</p>
676
676
  * @public
677
677
  */
678
- EngineVersion?: string;
678
+ EngineVersion?: string | undefined;
679
679
  /**
680
680
  * <p>Provides the type of the cluster snapshot.</p>
681
681
  * @public
682
682
  */
683
- SnapshotType?: string;
683
+ SnapshotType?: string | undefined;
684
684
  /**
685
685
  * <p>Specifies the percentage of the estimated data that has been transferred.</p>
686
686
  * @public
687
687
  */
688
- PercentProgress?: number;
688
+ PercentProgress?: number | undefined;
689
689
  /**
690
690
  * <p>Specifies whether the cluster snapshot is encrypted.</p>
691
691
  * @public
692
692
  */
693
- StorageEncrypted?: boolean;
693
+ StorageEncrypted?: boolean | undefined;
694
694
  /**
695
695
  * <p>If <code>StorageEncrypted</code> is <code>true</code>, the KMS key identifier for the encrypted cluster snapshot.</p>
696
696
  * @public
697
697
  */
698
- KmsKeyId?: string;
698
+ KmsKeyId?: string | undefined;
699
699
  /**
700
700
  * <p>The Amazon Resource Name (ARN) for the cluster snapshot.</p>
701
701
  * @public
702
702
  */
703
- DBClusterSnapshotArn?: string;
703
+ DBClusterSnapshotArn?: string | undefined;
704
704
  /**
705
705
  * <p>If the cluster snapshot was copied from a source cluster snapshot, the ARN for
706
706
  * the source cluster snapshot; otherwise, a null value.</p>
707
707
  * @public
708
708
  */
709
- SourceDBClusterSnapshotArn?: string;
709
+ SourceDBClusterSnapshotArn?: string | undefined;
710
710
  /**
711
711
  * <p>Storage type associated with your cluster snapshot </p>
712
712
  * <p>For information on storage types for Amazon DocumentDB clusters, see
@@ -717,7 +717,7 @@ export interface DBClusterSnapshot {
717
717
  * </p>
718
718
  * @public
719
719
  */
720
- StorageType?: string;
720
+ StorageType?: string | undefined;
721
721
  }
722
722
  /**
723
723
  * @public
@@ -727,7 +727,7 @@ export interface CopyDBClusterSnapshotResult {
727
727
  * <p>Detailed information about a cluster snapshot. </p>
728
728
  * @public
729
729
  */
730
- DBClusterSnapshot?: DBClusterSnapshot;
730
+ DBClusterSnapshot?: DBClusterSnapshot | undefined;
731
731
  }
732
732
  /**
733
733
  * <p>You already have a cluster snapshot with the given identifier.</p>
@@ -801,7 +801,7 @@ export interface CreateDBClusterMessage {
801
801
  * cluster can be created in.</p>
802
802
  * @public
803
803
  */
804
- AvailabilityZones?: string[];
804
+ AvailabilityZones?: string[] | undefined;
805
805
  /**
806
806
  * <p>The number of days for which automated backups are retained. You
807
807
  * must specify a minimum value of 1.</p>
@@ -814,7 +814,7 @@ export interface CreateDBClusterMessage {
814
814
  * </ul>
815
815
  * @public
816
816
  */
817
- BackupRetentionPeriod?: number;
817
+ BackupRetentionPeriod?: number | undefined;
818
818
  /**
819
819
  * <p>The cluster identifier. This parameter is stored as a lowercase
820
820
  * string.</p>
@@ -842,13 +842,13 @@ export interface CreateDBClusterMessage {
842
842
  * cluster.</p>
843
843
  * @public
844
844
  */
845
- DBClusterParameterGroupName?: string;
845
+ DBClusterParameterGroupName?: string | undefined;
846
846
  /**
847
847
  * <p>A list of EC2 VPC security groups to associate with this cluster.
848
848
  * </p>
849
849
  * @public
850
850
  */
851
- VpcSecurityGroupIds?: string[];
851
+ VpcSecurityGroupIds?: string[] | undefined;
852
852
  /**
853
853
  * <p>A subnet group to associate with this cluster.</p>
854
854
  * <p>Constraints: Must match the name of an existing
@@ -857,7 +857,7 @@ export interface CreateDBClusterMessage {
857
857
  * </p>
858
858
  * @public
859
859
  */
860
- DBSubnetGroupName?: string;
860
+ DBSubnetGroupName?: string | undefined;
861
861
  /**
862
862
  * <p>The name of the database engine to be used for this cluster.</p>
863
863
  * <p>Valid values: <code>docdb</code>
@@ -869,13 +869,13 @@ export interface CreateDBClusterMessage {
869
869
  * <p>The version number of the database engine to use. The <code>--engine-version</code> will default to the latest major engine version. For production workloads, we recommend explicitly declaring this parameter with the intended major engine version.</p>
870
870
  * @public
871
871
  */
872
- EngineVersion?: string;
872
+ EngineVersion?: string | undefined;
873
873
  /**
874
874
  * <p>The port number on which the instances in the cluster accept
875
875
  * connections.</p>
876
876
  * @public
877
877
  */
878
- Port?: number;
878
+ Port?: number | undefined;
879
879
  /**
880
880
  * <p>The name of the master user for the cluster.</p>
881
881
  * <p>Constraints:</p>
@@ -893,7 +893,7 @@ export interface CreateDBClusterMessage {
893
893
  * </ul>
894
894
  * @public
895
895
  */
896
- MasterUsername?: string;
896
+ MasterUsername?: string | undefined;
897
897
  /**
898
898
  * <p>The password for the master database user. This password can
899
899
  * contain any printable ASCII character except forward slash (/),
@@ -901,7 +901,7 @@ export interface CreateDBClusterMessage {
901
901
  * <p>Constraints: Must contain from 8 to 100 characters.</p>
902
902
  * @public
903
903
  */
904
- MasterUserPassword?: string;
904
+ MasterUserPassword?: string | undefined;
905
905
  /**
906
906
  * <p>The daily time range during which automated backups are created if
907
907
  * automated backups are enabled using the <code>BackupRetentionPeriod</code> parameter. </p>
@@ -924,7 +924,7 @@ export interface CreateDBClusterMessage {
924
924
  * </ul>
925
925
  * @public
926
926
  */
927
- PreferredBackupWindow?: string;
927
+ PreferredBackupWindow?: string | undefined;
928
928
  /**
929
929
  * <p>The weekly time range during which system maintenance can occur,
930
930
  * in Universal Coordinated Time (UTC).</p>
@@ -935,17 +935,17 @@ export interface CreateDBClusterMessage {
935
935
  * <p>Constraints: Minimum 30-minute window.</p>
936
936
  * @public
937
937
  */
938
- PreferredMaintenanceWindow?: string;
938
+ PreferredMaintenanceWindow?: string | undefined;
939
939
  /**
940
940
  * <p>The tags to be assigned to the cluster.</p>
941
941
  * @public
942
942
  */
943
- Tags?: Tag[];
943
+ Tags?: Tag[] | undefined;
944
944
  /**
945
945
  * <p>Specifies whether the cluster is encrypted.</p>
946
946
  * @public
947
947
  */
948
- StorageEncrypted?: boolean;
948
+ StorageEncrypted?: boolean | undefined;
949
949
  /**
950
950
  * <p>The KMS key identifier for an encrypted cluster.</p>
951
951
  * <p>The KMS key identifier is the Amazon Resource Name (ARN) for the KMS encryption key. If you are creating a cluster using the same Amazon Web Services account that owns the KMS encryption key that is used to encrypt the new cluster, you can use the KMS key alias instead of the ARN for the KMS encryption key.</p>
@@ -961,13 +961,13 @@ export interface CreateDBClusterMessage {
961
961
  * <p>KMS creates the default encryption key for your Amazon Web Services account. Your Amazon Web Services account has a different default encryption key for each Amazon Web Services Regions.</p>
962
962
  * @public
963
963
  */
964
- KmsKeyId?: string;
964
+ KmsKeyId?: string | undefined;
965
965
  /**
966
966
  * <p>Not currently supported.
967
967
  * </p>
968
968
  * @public
969
969
  */
970
- PreSignedUrl?: string;
970
+ PreSignedUrl?: string | undefined;
971
971
  /**
972
972
  * <p>A list of log types that need to be enabled for exporting to Amazon
973
973
  * CloudWatch Logs. You can enable audit logs or profiler logs. For more
@@ -978,7 +978,7 @@ export interface CreateDBClusterMessage {
978
978
  * </p>
979
979
  * @public
980
980
  */
981
- EnableCloudwatchLogsExports?: string[];
981
+ EnableCloudwatchLogsExports?: string[] | undefined;
982
982
  /**
983
983
  * <p>Specifies whether this cluster can be deleted. If
984
984
  * <code>DeletionProtection</code> is enabled, the cluster cannot be
@@ -987,12 +987,12 @@ export interface CreateDBClusterMessage {
987
987
  * being accidentally deleted.</p>
988
988
  * @public
989
989
  */
990
- DeletionProtection?: boolean;
990
+ DeletionProtection?: boolean | undefined;
991
991
  /**
992
992
  * <p>The cluster identifier of the new global cluster.</p>
993
993
  * @public
994
994
  */
995
- GlobalClusterIdentifier?: string;
995
+ GlobalClusterIdentifier?: string | undefined;
996
996
  /**
997
997
  * <p>The storage type to associate with the DB cluster.</p>
998
998
  * <p>For information on storage types for Amazon DocumentDB clusters, see
@@ -1007,7 +1007,7 @@ export interface CreateDBClusterMessage {
1007
1007
  * </note>
1008
1008
  * @public
1009
1009
  */
1010
- StorageType?: string;
1010
+ StorageType?: string | undefined;
1011
1011
  }
1012
1012
  /**
1013
1013
  * <p>Describes an Identity and Access Management (IAM) role that is associated with a
@@ -1020,7 +1020,7 @@ export interface DBClusterRole {
1020
1020
  * cluster.</p>
1021
1021
  * @public
1022
1022
  */
1023
- RoleArn?: string;
1023
+ RoleArn?: string | undefined;
1024
1024
  /**
1025
1025
  * <p>Describes the state of association between the IAMrole and the cluster. The <code>Status</code> property returns one of the following values:</p>
1026
1026
  * <ul>
@@ -1039,7 +1039,7 @@ export interface DBClusterRole {
1039
1039
  * </ul>
1040
1040
  * @public
1041
1041
  */
1042
- Status?: string;
1042
+ Status?: string | undefined;
1043
1043
  }
1044
1044
  /**
1045
1045
  * <p>Contains information about an instance that is part of a cluster.</p>
@@ -1050,25 +1050,25 @@ export interface DBClusterMember {
1050
1050
  * <p>Specifies the instance identifier for this member of the cluster.</p>
1051
1051
  * @public
1052
1052
  */
1053
- DBInstanceIdentifier?: string;
1053
+ DBInstanceIdentifier?: string | undefined;
1054
1054
  /**
1055
1055
  * <p>A value that is <code>true</code> if the cluster member is the primary instance for
1056
1056
  * the cluster and <code>false</code> otherwise.</p>
1057
1057
  * @public
1058
1058
  */
1059
- IsClusterWriter?: boolean;
1059
+ IsClusterWriter?: boolean | undefined;
1060
1060
  /**
1061
1061
  * <p>Specifies the status of the cluster parameter group for this member of the DB
1062
1062
  * cluster.</p>
1063
1063
  * @public
1064
1064
  */
1065
- DBClusterParameterGroupStatus?: string;
1065
+ DBClusterParameterGroupStatus?: string | undefined;
1066
1066
  /**
1067
1067
  * <p>A value that specifies the order in which an Amazon DocumentDB replica is promoted to the
1068
1068
  * primary instance after a failure of the existing primary instance. </p>
1069
1069
  * @public
1070
1070
  */
1071
- PromotionTier?: number;
1071
+ PromotionTier?: number | undefined;
1072
1072
  }
1073
1073
  /**
1074
1074
  * <p>Used as a response element for queries on virtual private cloud (VPC) security group
@@ -1080,12 +1080,12 @@ export interface VpcSecurityGroupMembership {
1080
1080
  * <p>The name of the VPC security group.</p>
1081
1081
  * @public
1082
1082
  */
1083
- VpcSecurityGroupId?: string;
1083
+ VpcSecurityGroupId?: string | undefined;
1084
1084
  /**
1085
1085
  * <p>The status of the VPC security group.</p>
1086
1086
  * @public
1087
1087
  */
1088
- Status?: string;
1088
+ Status?: string | undefined;
1089
1089
  }
1090
1090
  /**
1091
1091
  * <p>Detailed information about a cluster. </p>
@@ -1097,168 +1097,168 @@ export interface DBCluster {
1097
1097
  * can be created in.</p>
1098
1098
  * @public
1099
1099
  */
1100
- AvailabilityZones?: string[];
1100
+ AvailabilityZones?: string[] | undefined;
1101
1101
  /**
1102
1102
  * <p>Specifies the number of days for which automatic snapshots are retained.</p>
1103
1103
  * @public
1104
1104
  */
1105
- BackupRetentionPeriod?: number;
1105
+ BackupRetentionPeriod?: number | undefined;
1106
1106
  /**
1107
1107
  * <p>Contains a user-supplied cluster identifier. This identifier is the unique key that
1108
1108
  * identifies a cluster.</p>
1109
1109
  * @public
1110
1110
  */
1111
- DBClusterIdentifier?: string;
1111
+ DBClusterIdentifier?: string | undefined;
1112
1112
  /**
1113
1113
  * <p>Specifies the name of the cluster parameter group for the cluster.</p>
1114
1114
  * @public
1115
1115
  */
1116
- DBClusterParameterGroup?: string;
1116
+ DBClusterParameterGroup?: string | undefined;
1117
1117
  /**
1118
1118
  * <p>Specifies information on the subnet group that is associated with the cluster, including the name, description, and subnets in the subnet group.</p>
1119
1119
  * @public
1120
1120
  */
1121
- DBSubnetGroup?: string;
1121
+ DBSubnetGroup?: string | undefined;
1122
1122
  /**
1123
1123
  * <p>Specifies the current state of this cluster.</p>
1124
1124
  * @public
1125
1125
  */
1126
- Status?: string;
1126
+ Status?: string | undefined;
1127
1127
  /**
1128
1128
  * <p>Specifies the progress of the operation as a percentage.</p>
1129
1129
  * @public
1130
1130
  */
1131
- PercentProgress?: string;
1131
+ PercentProgress?: string | undefined;
1132
1132
  /**
1133
1133
  * <p>The earliest time to which a database can be restored with point-in-time
1134
1134
  * restore.</p>
1135
1135
  * @public
1136
1136
  */
1137
- EarliestRestorableTime?: Date;
1137
+ EarliestRestorableTime?: Date | undefined;
1138
1138
  /**
1139
1139
  * <p>Specifies the connection endpoint for the primary instance of the cluster.</p>
1140
1140
  * @public
1141
1141
  */
1142
- Endpoint?: string;
1142
+ Endpoint?: string | undefined;
1143
1143
  /**
1144
1144
  * <p>The reader endpoint for the cluster. The reader endpoint for a cluster load balances connections across the Amazon DocumentDB replicas that are available in a cluster. As clients request new connections to the reader endpoint, Amazon DocumentDB distributes the connection requests among the Amazon DocumentDB replicas in the cluster. This functionality can help balance your read workload across multiple Amazon DocumentDB replicas in your cluster. </p>
1145
1145
  * <p>If a failover occurs, and the Amazon DocumentDB replica that you are connected to is promoted to be the primary instance, your connection is dropped. To continue sending your read workload to other Amazon DocumentDB replicas in the cluster, you can then reconnect to the reader endpoint.</p>
1146
1146
  * @public
1147
1147
  */
1148
- ReaderEndpoint?: string;
1148
+ ReaderEndpoint?: string | undefined;
1149
1149
  /**
1150
1150
  * <p>Specifies whether the cluster has instances in multiple Availability Zones.</p>
1151
1151
  * @public
1152
1152
  */
1153
- MultiAZ?: boolean;
1153
+ MultiAZ?: boolean | undefined;
1154
1154
  /**
1155
1155
  * <p>Provides the name of the database engine to be used for this cluster.</p>
1156
1156
  * @public
1157
1157
  */
1158
- Engine?: string;
1158
+ Engine?: string | undefined;
1159
1159
  /**
1160
1160
  * <p>Indicates the database engine version.</p>
1161
1161
  * @public
1162
1162
  */
1163
- EngineVersion?: string;
1163
+ EngineVersion?: string | undefined;
1164
1164
  /**
1165
1165
  * <p>Specifies the latest time to which a database can be restored with point-in-time
1166
1166
  * restore.</p>
1167
1167
  * @public
1168
1168
  */
1169
- LatestRestorableTime?: Date;
1169
+ LatestRestorableTime?: Date | undefined;
1170
1170
  /**
1171
1171
  * <p>Specifies the port that the database engine is listening on.</p>
1172
1172
  * @public
1173
1173
  */
1174
- Port?: number;
1174
+ Port?: number | undefined;
1175
1175
  /**
1176
1176
  * <p>Contains the master user name for the cluster.</p>
1177
1177
  * @public
1178
1178
  */
1179
- MasterUsername?: string;
1179
+ MasterUsername?: string | undefined;
1180
1180
  /**
1181
1181
  * <p>Specifies the daily time range during which automated backups are created if automated
1182
1182
  * backups are enabled, as determined by the <code>BackupRetentionPeriod</code>. </p>
1183
1183
  * @public
1184
1184
  */
1185
- PreferredBackupWindow?: string;
1185
+ PreferredBackupWindow?: string | undefined;
1186
1186
  /**
1187
1187
  * <p>Specifies the weekly time range during which system maintenance can occur, in
1188
1188
  * Universal Coordinated Time (UTC).</p>
1189
1189
  * @public
1190
1190
  */
1191
- PreferredMaintenanceWindow?: string;
1191
+ PreferredMaintenanceWindow?: string | undefined;
1192
1192
  /**
1193
1193
  * <p>Contains the identifier of the source cluster if this cluster is a secondary cluster.</p>
1194
1194
  * @public
1195
1195
  */
1196
- ReplicationSourceIdentifier?: string;
1196
+ ReplicationSourceIdentifier?: string | undefined;
1197
1197
  /**
1198
1198
  * <p>Contains one or more identifiers of the secondary clusters that are associated with this cluster.</p>
1199
1199
  * @public
1200
1200
  */
1201
- ReadReplicaIdentifiers?: string[];
1201
+ ReadReplicaIdentifiers?: string[] | undefined;
1202
1202
  /**
1203
1203
  * <p>Provides the list of instances that make up the cluster.</p>
1204
1204
  * @public
1205
1205
  */
1206
- DBClusterMembers?: DBClusterMember[];
1206
+ DBClusterMembers?: DBClusterMember[] | undefined;
1207
1207
  /**
1208
1208
  * <p>Provides a list of virtual private cloud (VPC) security groups that the cluster
1209
1209
  * belongs to.</p>
1210
1210
  * @public
1211
1211
  */
1212
- VpcSecurityGroups?: VpcSecurityGroupMembership[];
1212
+ VpcSecurityGroups?: VpcSecurityGroupMembership[] | undefined;
1213
1213
  /**
1214
1214
  * <p>Specifies the ID that Amazon Route 53 assigns when you create a hosted zone.</p>
1215
1215
  * @public
1216
1216
  */
1217
- HostedZoneId?: string;
1217
+ HostedZoneId?: string | undefined;
1218
1218
  /**
1219
1219
  * <p>Specifies whether the cluster is encrypted.</p>
1220
1220
  * @public
1221
1221
  */
1222
- StorageEncrypted?: boolean;
1222
+ StorageEncrypted?: boolean | undefined;
1223
1223
  /**
1224
1224
  * <p>If <code>StorageEncrypted</code> is <code>true</code>, the KMS key identifier for
1225
1225
  * the encrypted cluster.</p>
1226
1226
  * @public
1227
1227
  */
1228
- KmsKeyId?: string;
1228
+ KmsKeyId?: string | undefined;
1229
1229
  /**
1230
1230
  * <p>The Amazon Web Services Region-unique, immutable identifier for the cluster. This identifier is
1231
1231
  * found in CloudTrail log entries whenever the KMS key for the cluster is accessed.</p>
1232
1232
  * @public
1233
1233
  */
1234
- DbClusterResourceId?: string;
1234
+ DbClusterResourceId?: string | undefined;
1235
1235
  /**
1236
1236
  * <p>The Amazon Resource Name (ARN) for the cluster.</p>
1237
1237
  * @public
1238
1238
  */
1239
- DBClusterArn?: string;
1239
+ DBClusterArn?: string | undefined;
1240
1240
  /**
1241
1241
  * <p>Provides a list of the Identity and Access Management (IAM) roles that are associated with the cluster. (IAM) roles that are associated with a cluster grant permission for the cluster to access other Amazon Web Services services on your behalf.</p>
1242
1242
  * @public
1243
1243
  */
1244
- AssociatedRoles?: DBClusterRole[];
1244
+ AssociatedRoles?: DBClusterRole[] | undefined;
1245
1245
  /**
1246
1246
  * <p>Identifies the clone group to which the DB cluster is associated.</p>
1247
1247
  * @public
1248
1248
  */
1249
- CloneGroupId?: string;
1249
+ CloneGroupId?: string | undefined;
1250
1250
  /**
1251
1251
  * <p>Specifies the time when the cluster was created, in Universal Coordinated Time
1252
1252
  * (UTC).</p>
1253
1253
  * @public
1254
1254
  */
1255
- ClusterCreateTime?: Date;
1255
+ ClusterCreateTime?: Date | undefined;
1256
1256
  /**
1257
1257
  * <p>A list of log types that this cluster is configured to export to Amazon CloudWatch
1258
1258
  * Logs.</p>
1259
1259
  * @public
1260
1260
  */
1261
- EnabledCloudwatchLogsExports?: string[];
1261
+ EnabledCloudwatchLogsExports?: string[] | undefined;
1262
1262
  /**
1263
1263
  * <p>Specifies whether this cluster can be deleted. If <code>DeletionProtection</code> is
1264
1264
  * enabled, the cluster cannot be deleted unless it is modified and
@@ -1266,7 +1266,7 @@ export interface DBCluster {
1266
1266
  * protects clusters from being accidentally deleted.</p>
1267
1267
  * @public
1268
1268
  */
1269
- DeletionProtection?: boolean;
1269
+ DeletionProtection?: boolean | undefined;
1270
1270
  /**
1271
1271
  * <p>Storage type associated with your cluster</p>
1272
1272
  * <p>Storage type associated with your cluster</p>
@@ -1278,7 +1278,7 @@ export interface DBCluster {
1278
1278
  * </p>
1279
1279
  * @public
1280
1280
  */
1281
- StorageType?: string;
1281
+ StorageType?: string | undefined;
1282
1282
  }
1283
1283
  /**
1284
1284
  * @public
@@ -1288,7 +1288,7 @@ export interface CreateDBClusterResult {
1288
1288
  * <p>Detailed information about a cluster. </p>
1289
1289
  * @public
1290
1290
  */
1291
- DBCluster?: DBCluster;
1291
+ DBCluster?: DBCluster | undefined;
1292
1292
  }
1293
1293
  /**
1294
1294
  * <p>You already have a cluster with the given identifier.</p>
@@ -1473,7 +1473,7 @@ export interface CreateDBClusterParameterGroupMessage {
1473
1473
  * <p>The tags to be assigned to the cluster parameter group.</p>
1474
1474
  * @public
1475
1475
  */
1476
- Tags?: Tag[];
1476
+ Tags?: Tag[] | undefined;
1477
1477
  }
1478
1478
  /**
1479
1479
  * @public
@@ -1483,7 +1483,7 @@ export interface CreateDBClusterParameterGroupResult {
1483
1483
  * <p>Detailed information about a cluster parameter group. </p>
1484
1484
  * @public
1485
1485
  */
1486
- DBClusterParameterGroup?: DBClusterParameterGroup;
1486
+ DBClusterParameterGroup?: DBClusterParameterGroup | undefined;
1487
1487
  }
1488
1488
  /**
1489
1489
  * <p>Represents the input of <a>CreateDBClusterSnapshot</a>.</p>
@@ -1530,7 +1530,7 @@ export interface CreateDBClusterSnapshotMessage {
1530
1530
  * <p>The tags to be assigned to the cluster snapshot.</p>
1531
1531
  * @public
1532
1532
  */
1533
- Tags?: Tag[];
1533
+ Tags?: Tag[] | undefined;
1534
1534
  }
1535
1535
  /**
1536
1536
  * @public
@@ -1540,7 +1540,7 @@ export interface CreateDBClusterSnapshotResult {
1540
1540
  * <p>Detailed information about a cluster snapshot. </p>
1541
1541
  * @public
1542
1542
  */
1543
- DBClusterSnapshot?: DBClusterSnapshot;
1543
+ DBClusterSnapshot?: DBClusterSnapshot | undefined;
1544
1544
  }
1545
1545
  /**
1546
1546
  * <p>The specified CIDR IP or Amazon EC2 security group isn't authorized for the specified security group.</p>
@@ -1599,7 +1599,7 @@ export interface CreateDBInstanceMessage {
1599
1599
  * </p>
1600
1600
  * @public
1601
1601
  */
1602
- AvailabilityZone?: string;
1602
+ AvailabilityZone?: string | undefined;
1603
1603
  /**
1604
1604
  * <p>The time range each week during which system maintenance can occur, in Universal
1605
1605
  * Coordinated Time (UTC).</p>
@@ -1611,20 +1611,20 @@ export interface CreateDBInstanceMessage {
1611
1611
  * <p>Constraints: Minimum 30-minute window.</p>
1612
1612
  * @public
1613
1613
  */
1614
- PreferredMaintenanceWindow?: string;
1614
+ PreferredMaintenanceWindow?: string | undefined;
1615
1615
  /**
1616
1616
  * <p>This parameter does not apply to Amazon DocumentDB. Amazon DocumentDB does not perform minor version upgrades regardless of the value set.</p>
1617
1617
  * <p>Default: <code>false</code>
1618
1618
  * </p>
1619
1619
  * @public
1620
1620
  */
1621
- AutoMinorVersionUpgrade?: boolean;
1621
+ AutoMinorVersionUpgrade?: boolean | undefined;
1622
1622
  /**
1623
1623
  * <p>The tags to be assigned to the instance. You can assign up to
1624
1624
  * 10 tags to an instance.</p>
1625
1625
  * @public
1626
1626
  */
1627
- Tags?: Tag[];
1627
+ Tags?: Tag[] | undefined;
1628
1628
  /**
1629
1629
  * <p>The identifier of the cluster that the instance will belong to.</p>
1630
1630
  * @public
@@ -1634,7 +1634,7 @@ export interface CreateDBInstanceMessage {
1634
1634
  * <p>A value that indicates whether to copy tags from the DB instance to snapshots of the DB instance. By default, tags are not copied.</p>
1635
1635
  * @public
1636
1636
  */
1637
- CopyTagsToSnapshot?: boolean;
1637
+ CopyTagsToSnapshot?: boolean | undefined;
1638
1638
  /**
1639
1639
  * <p>A value that specifies the order in which an Amazon DocumentDB replica is promoted to the
1640
1640
  * primary instance after a failure of the existing primary instance.</p>
@@ -1642,14 +1642,14 @@ export interface CreateDBInstanceMessage {
1642
1642
  * <p>Valid values: 0-15</p>
1643
1643
  * @public
1644
1644
  */
1645
- PromotionTier?: number;
1645
+ PromotionTier?: number | undefined;
1646
1646
  /**
1647
1647
  * <p>A value that indicates whether to enable Performance Insights for the DB Instance. For
1648
1648
  * more information, see <a href="https://docs.aws.amazon.com/documentdb/latest/developerguide/performance-insights.html">Using Amazon
1649
1649
  * Performance Insights</a>.</p>
1650
1650
  * @public
1651
1651
  */
1652
- EnablePerformanceInsights?: boolean;
1652
+ EnablePerformanceInsights?: boolean | undefined;
1653
1653
  /**
1654
1654
  * <p>The KMS key identifier for encryption of Performance Insights
1655
1655
  * data.</p>
@@ -1661,7 +1661,7 @@ export interface CreateDBInstanceMessage {
1661
1661
  * default KMS key for each Amazon Web Services region.</p>
1662
1662
  * @public
1663
1663
  */
1664
- PerformanceInsightsKMSKeyId?: string;
1664
+ PerformanceInsightsKMSKeyId?: string | undefined;
1665
1665
  /**
1666
1666
  * <p>The CA certificate identifier to use for the DB instance's server certificate.</p>
1667
1667
  * <p>For more information, see <a href="https://docs.aws.amazon.com/documentdb/latest/developerguide/ca_cert_rotation.html">Updating Your Amazon DocumentDB TLS
@@ -1671,7 +1671,7 @@ export interface CreateDBInstanceMessage {
1671
1671
  * Guide</i>.</p>
1672
1672
  * @public
1673
1673
  */
1674
- CACertificateIdentifier?: string;
1674
+ CACertificateIdentifier?: string | undefined;
1675
1675
  }
1676
1676
  /**
1677
1677
  * <p>Returns the details of the DB instance’s server certificate.</p>
@@ -1687,12 +1687,12 @@ export interface CertificateDetails {
1687
1687
  * <p>The CA identifier of the CA certificate used for the DB instance's server certificate.</p>
1688
1688
  * @public
1689
1689
  */
1690
- CAIdentifier?: string;
1690
+ CAIdentifier?: string | undefined;
1691
1691
  /**
1692
1692
  * <p>The expiration date of the DB instance’s server certificate.</p>
1693
1693
  * @public
1694
1694
  */
1695
- ValidTill?: Date;
1695
+ ValidTill?: Date | undefined;
1696
1696
  }
1697
1697
  /**
1698
1698
  * <p>Information about an Availability Zone.</p>
@@ -1703,7 +1703,7 @@ export interface AvailabilityZone {
1703
1703
  * <p>The name of the Availability Zone.</p>
1704
1704
  * @public
1705
1705
  */
1706
- Name?: string;
1706
+ Name?: string | undefined;
1707
1707
  }
1708
1708
  /**
1709
1709
  * <p> Detailed information about a subnet. </p>
@@ -1714,17 +1714,17 @@ export interface Subnet {
1714
1714
  * <p>Specifies the identifier of the subnet.</p>
1715
1715
  * @public
1716
1716
  */
1717
- SubnetIdentifier?: string;
1717
+ SubnetIdentifier?: string | undefined;
1718
1718
  /**
1719
1719
  * <p>Specifies the Availability Zone for the subnet.</p>
1720
1720
  * @public
1721
1721
  */
1722
- SubnetAvailabilityZone?: AvailabilityZone;
1722
+ SubnetAvailabilityZone?: AvailabilityZone | undefined;
1723
1723
  /**
1724
1724
  * <p>Specifies the status of the subnet.</p>
1725
1725
  * @public
1726
1726
  */
1727
- SubnetStatus?: string;
1727
+ SubnetStatus?: string | undefined;
1728
1728
  }
1729
1729
  /**
1730
1730
  * <p>Detailed information about a subnet group. </p>
@@ -1735,32 +1735,32 @@ export interface DBSubnetGroup {
1735
1735
  * <p>The name of the subnet group.</p>
1736
1736
  * @public
1737
1737
  */
1738
- DBSubnetGroupName?: string;
1738
+ DBSubnetGroupName?: string | undefined;
1739
1739
  /**
1740
1740
  * <p>Provides the description of the subnet group.</p>
1741
1741
  * @public
1742
1742
  */
1743
- DBSubnetGroupDescription?: string;
1743
+ DBSubnetGroupDescription?: string | undefined;
1744
1744
  /**
1745
1745
  * <p>Provides the virtual private cloud (VPC) ID of the subnet group.</p>
1746
1746
  * @public
1747
1747
  */
1748
- VpcId?: string;
1748
+ VpcId?: string | undefined;
1749
1749
  /**
1750
1750
  * <p>Provides the status of the subnet group.</p>
1751
1751
  * @public
1752
1752
  */
1753
- SubnetGroupStatus?: string;
1753
+ SubnetGroupStatus?: string | undefined;
1754
1754
  /**
1755
1755
  * <p>Detailed information about one or more subnets within a subnet group.</p>
1756
1756
  * @public
1757
1757
  */
1758
- Subnets?: Subnet[];
1758
+ Subnets?: Subnet[] | undefined;
1759
1759
  /**
1760
1760
  * <p>The Amazon Resource Name (ARN) for the DB subnet group.</p>
1761
1761
  * @public
1762
1762
  */
1763
- DBSubnetGroupArn?: string;
1763
+ DBSubnetGroupArn?: string | undefined;
1764
1764
  }
1765
1765
  /**
1766
1766
  * <p>Network information for accessing a cluster or instance. Client programs must
@@ -1772,17 +1772,17 @@ export interface Endpoint {
1772
1772
  * <p>Specifies the DNS address of the instance.</p>
1773
1773
  * @public
1774
1774
  */
1775
- Address?: string;
1775
+ Address?: string | undefined;
1776
1776
  /**
1777
1777
  * <p>Specifies the port that the database engine is listening on.</p>
1778
1778
  * @public
1779
1779
  */
1780
- Port?: number;
1780
+ Port?: number | undefined;
1781
1781
  /**
1782
1782
  * <p>Specifies the ID that Amazon Route 53 assigns when you create a hosted zone.</p>
1783
1783
  * @public
1784
1784
  */
1785
- HostedZoneId?: string;
1785
+ HostedZoneId?: string | undefined;
1786
1786
  }
1787
1787
  /**
1788
1788
  * <p>A list of the log types whose configuration is still pending. These log types are in
@@ -1795,13 +1795,13 @@ export interface PendingCloudwatchLogsExports {
1795
1795
  * these log types aren't exported to CloudWatch Logs.</p>
1796
1796
  * @public
1797
1797
  */
1798
- LogTypesToEnable?: string[];
1798
+ LogTypesToEnable?: string[] | undefined;
1799
1799
  /**
1800
1800
  * <p>Log types that are in the process of being enabled. After they are enabled, these log
1801
1801
  * types are exported to Amazon CloudWatch Logs.</p>
1802
1802
  * @public
1803
1803
  */
1804
- LogTypesToDisable?: string[];
1804
+ LogTypesToDisable?: string[] | undefined;
1805
1805
  }
1806
1806
  /**
1807
1807
  * <p> One or more modified settings for an instance. These modified settings have been
@@ -1814,39 +1814,39 @@ export interface PendingModifiedValues {
1814
1814
  * applied or is currently being applied. </p>
1815
1815
  * @public
1816
1816
  */
1817
- DBInstanceClass?: string;
1817
+ DBInstanceClass?: string | undefined;
1818
1818
  /**
1819
1819
  * <p> Contains the new <code>AllocatedStorage</code> size for then instance that will be
1820
1820
  * applied or is currently being applied. </p>
1821
1821
  * @public
1822
1822
  */
1823
- AllocatedStorage?: number;
1823
+ AllocatedStorage?: number | undefined;
1824
1824
  /**
1825
1825
  * <p>Contains the pending or currently in-progress change of the master credentials for the
1826
1826
  * instance.</p>
1827
1827
  * @public
1828
1828
  */
1829
- MasterUserPassword?: string;
1829
+ MasterUserPassword?: string | undefined;
1830
1830
  /**
1831
1831
  * <p>Specifies the pending port for the instance.</p>
1832
1832
  * @public
1833
1833
  */
1834
- Port?: number;
1834
+ Port?: number | undefined;
1835
1835
  /**
1836
1836
  * <p>Specifies the pending number of days for which automated backups are retained.</p>
1837
1837
  * @public
1838
1838
  */
1839
- BackupRetentionPeriod?: number;
1839
+ BackupRetentionPeriod?: number | undefined;
1840
1840
  /**
1841
1841
  * <p>Indicates that the Single-AZ instance is to change to a Multi-AZ deployment.</p>
1842
1842
  * @public
1843
1843
  */
1844
- MultiAZ?: boolean;
1844
+ MultiAZ?: boolean | undefined;
1845
1845
  /**
1846
1846
  * <p>Indicates the database engine version.</p>
1847
1847
  * @public
1848
1848
  */
1849
- EngineVersion?: string;
1849
+ EngineVersion?: string | undefined;
1850
1850
  /**
1851
1851
  * <p>The license model for the instance.</p>
1852
1852
  * <p>Valid values: <code>license-included</code>, <code>bring-your-own-license</code>,
@@ -1854,41 +1854,41 @@ export interface PendingModifiedValues {
1854
1854
  * </p>
1855
1855
  * @public
1856
1856
  */
1857
- LicenseModel?: string;
1857
+ LicenseModel?: string | undefined;
1858
1858
  /**
1859
1859
  * <p>Specifies the new Provisioned IOPS value for the instance that will be applied or
1860
1860
  * is currently being applied.</p>
1861
1861
  * @public
1862
1862
  */
1863
- Iops?: number;
1863
+ Iops?: number | undefined;
1864
1864
  /**
1865
1865
  * <p> Contains the new <code>DBInstanceIdentifier</code> for the instance that will be
1866
1866
  * applied or is currently being applied. </p>
1867
1867
  * @public
1868
1868
  */
1869
- DBInstanceIdentifier?: string;
1869
+ DBInstanceIdentifier?: string | undefined;
1870
1870
  /**
1871
1871
  * <p>Specifies the storage type to be associated with the instance.</p>
1872
1872
  * @public
1873
1873
  */
1874
- StorageType?: string;
1874
+ StorageType?: string | undefined;
1875
1875
  /**
1876
1876
  * <p>Specifies the identifier of the certificate authority (CA) certificate for the DB
1877
1877
  * instance.</p>
1878
1878
  * @public
1879
1879
  */
1880
- CACertificateIdentifier?: string;
1880
+ CACertificateIdentifier?: string | undefined;
1881
1881
  /**
1882
1882
  * <p>The new subnet group for the instance. </p>
1883
1883
  * @public
1884
1884
  */
1885
- DBSubnetGroupName?: string;
1885
+ DBSubnetGroupName?: string | undefined;
1886
1886
  /**
1887
1887
  * <p>A list of the log types whose configuration is still pending. These log types are in
1888
1888
  * the process of being activated or deactivated.</p>
1889
1889
  * @public
1890
1890
  */
1891
- PendingCloudwatchLogsExports?: PendingCloudwatchLogsExports;
1891
+ PendingCloudwatchLogsExports?: PendingCloudwatchLogsExports | undefined;
1892
1892
  }
1893
1893
  /**
1894
1894
  * <p>Provides a list of status information for an instance.</p>
@@ -1899,26 +1899,26 @@ export interface DBInstanceStatusInfo {
1899
1899
  * <p>This value is currently "<code>read replication</code>."</p>
1900
1900
  * @public
1901
1901
  */
1902
- StatusType?: string;
1902
+ StatusType?: string | undefined;
1903
1903
  /**
1904
1904
  * <p>A Boolean value that is <code>true</code> if the instance is operating normally, or
1905
1905
  * <code>false</code> if the instance is in an error state.</p>
1906
1906
  * @public
1907
1907
  */
1908
- Normal?: boolean;
1908
+ Normal?: boolean | undefined;
1909
1909
  /**
1910
1910
  * <p>Status of the instance. For a <code>StatusType</code> of read replica, the values
1911
1911
  * can be <code>replicating</code>, error, <code>stopped</code>, or
1912
1912
  * <code>terminated</code>.</p>
1913
1913
  * @public
1914
1914
  */
1915
- Status?: string;
1915
+ Status?: string | undefined;
1916
1916
  /**
1917
1917
  * <p>Details of the error if there is an error for the instance. If the instance is not in
1918
1918
  * an error state, this value is blank.</p>
1919
1919
  * @public
1920
1920
  */
1921
- Message?: string;
1921
+ Message?: string | undefined;
1922
1922
  }
1923
1923
  /**
1924
1924
  * <p>Detailed information about an instance. </p>
@@ -1930,162 +1930,162 @@ export interface DBInstance {
1930
1930
  * identifies an instance.</p>
1931
1931
  * @public
1932
1932
  */
1933
- DBInstanceIdentifier?: string;
1933
+ DBInstanceIdentifier?: string | undefined;
1934
1934
  /**
1935
1935
  * <p>Contains the name of the compute and memory capacity class of the instance.</p>
1936
1936
  * @public
1937
1937
  */
1938
- DBInstanceClass?: string;
1938
+ DBInstanceClass?: string | undefined;
1939
1939
  /**
1940
1940
  * <p>Provides the name of the database engine to be used for this instance.</p>
1941
1941
  * @public
1942
1942
  */
1943
- Engine?: string;
1943
+ Engine?: string | undefined;
1944
1944
  /**
1945
1945
  * <p>Specifies the current state of this database.</p>
1946
1946
  * @public
1947
1947
  */
1948
- DBInstanceStatus?: string;
1948
+ DBInstanceStatus?: string | undefined;
1949
1949
  /**
1950
1950
  * <p>Specifies the connection endpoint.</p>
1951
1951
  * @public
1952
1952
  */
1953
- Endpoint?: Endpoint;
1953
+ Endpoint?: Endpoint | undefined;
1954
1954
  /**
1955
1955
  * <p>Provides the date and time that the instance was created.</p>
1956
1956
  * @public
1957
1957
  */
1958
- InstanceCreateTime?: Date;
1958
+ InstanceCreateTime?: Date | undefined;
1959
1959
  /**
1960
1960
  * <p> Specifies the daily time range during which automated backups are created if
1961
1961
  * automated backups are enabled, as determined by the <code>BackupRetentionPeriod</code>.
1962
1962
  * </p>
1963
1963
  * @public
1964
1964
  */
1965
- PreferredBackupWindow?: string;
1965
+ PreferredBackupWindow?: string | undefined;
1966
1966
  /**
1967
1967
  * <p>Specifies the number of days for which automatic snapshots are retained.</p>
1968
1968
  * @public
1969
1969
  */
1970
- BackupRetentionPeriod?: number;
1970
+ BackupRetentionPeriod?: number | undefined;
1971
1971
  /**
1972
1972
  * <p>Provides a list of VPC security group elements that the instance belongs to.</p>
1973
1973
  * @public
1974
1974
  */
1975
- VpcSecurityGroups?: VpcSecurityGroupMembership[];
1975
+ VpcSecurityGroups?: VpcSecurityGroupMembership[] | undefined;
1976
1976
  /**
1977
1977
  * <p>Specifies the name of the Availability Zone that the instance is located in.</p>
1978
1978
  * @public
1979
1979
  */
1980
- AvailabilityZone?: string;
1980
+ AvailabilityZone?: string | undefined;
1981
1981
  /**
1982
1982
  * <p>Specifies information on the subnet group that is associated with the instance, including the name, description, and subnets in the subnet group.</p>
1983
1983
  * @public
1984
1984
  */
1985
- DBSubnetGroup?: DBSubnetGroup;
1985
+ DBSubnetGroup?: DBSubnetGroup | undefined;
1986
1986
  /**
1987
1987
  * <p>Specifies the weekly time range during which system maintenance can occur, in
1988
1988
  * Universal Coordinated Time (UTC).</p>
1989
1989
  * @public
1990
1990
  */
1991
- PreferredMaintenanceWindow?: string;
1991
+ PreferredMaintenanceWindow?: string | undefined;
1992
1992
  /**
1993
1993
  * <p>Specifies that changes to the instance are pending. This element is included only when changes are pending. Specific changes are identified by subelements.</p>
1994
1994
  * @public
1995
1995
  */
1996
- PendingModifiedValues?: PendingModifiedValues;
1996
+ PendingModifiedValues?: PendingModifiedValues | undefined;
1997
1997
  /**
1998
1998
  * <p>Specifies the latest time to which a database can be restored with point-in-time
1999
1999
  * restore.</p>
2000
2000
  * @public
2001
2001
  */
2002
- LatestRestorableTime?: Date;
2002
+ LatestRestorableTime?: Date | undefined;
2003
2003
  /**
2004
2004
  * <p>Indicates the database engine version.</p>
2005
2005
  * @public
2006
2006
  */
2007
- EngineVersion?: string;
2007
+ EngineVersion?: string | undefined;
2008
2008
  /**
2009
2009
  * <p>Does not apply. This parameter does not apply to Amazon DocumentDB. Amazon DocumentDB does not perform minor version upgrades regardless of the value set.</p>
2010
2010
  * @public
2011
2011
  */
2012
- AutoMinorVersionUpgrade?: boolean;
2012
+ AutoMinorVersionUpgrade?: boolean | undefined;
2013
2013
  /**
2014
2014
  * <p>Not supported. Amazon DocumentDB does not currently support public endpoints. The value
2015
2015
  * of <code>PubliclyAccessible</code> is always <code>false</code>.</p>
2016
2016
  * @public
2017
2017
  */
2018
- PubliclyAccessible?: boolean;
2018
+ PubliclyAccessible?: boolean | undefined;
2019
2019
  /**
2020
2020
  * <p>The status of a read replica. If the instance is not a read replica, this is
2021
2021
  * blank.</p>
2022
2022
  * @public
2023
2023
  */
2024
- StatusInfos?: DBInstanceStatusInfo[];
2024
+ StatusInfos?: DBInstanceStatusInfo[] | undefined;
2025
2025
  /**
2026
2026
  * <p>Contains the name of the cluster that the instance is a member of if the
2027
2027
  * instance is a member of a cluster.</p>
2028
2028
  * @public
2029
2029
  */
2030
- DBClusterIdentifier?: string;
2030
+ DBClusterIdentifier?: string | undefined;
2031
2031
  /**
2032
2032
  * <p>Specifies whether or not the instance is encrypted.</p>
2033
2033
  * @public
2034
2034
  */
2035
- StorageEncrypted?: boolean;
2035
+ StorageEncrypted?: boolean | undefined;
2036
2036
  /**
2037
2037
  * <p> If <code>StorageEncrypted</code> is <code>true</code>, the KMS key identifier for
2038
2038
  * the encrypted instance. </p>
2039
2039
  * @public
2040
2040
  */
2041
- KmsKeyId?: string;
2041
+ KmsKeyId?: string | undefined;
2042
2042
  /**
2043
2043
  * <p>The Amazon Web Services Region-unique, immutable identifier for the instance. This identifier is found in CloudTrail log entries whenever the KMS key for the instance is
2044
2044
  * accessed.</p>
2045
2045
  * @public
2046
2046
  */
2047
- DbiResourceId?: string;
2047
+ DbiResourceId?: string | undefined;
2048
2048
  /**
2049
2049
  * <p>The identifier of the CA certificate for this DB instance.</p>
2050
2050
  * @public
2051
2051
  */
2052
- CACertificateIdentifier?: string;
2052
+ CACertificateIdentifier?: string | undefined;
2053
2053
  /**
2054
2054
  * <p>A value that indicates whether to copy tags from the DB instance to snapshots of the DB instance. By default, tags are not copied.</p>
2055
2055
  * @public
2056
2056
  */
2057
- CopyTagsToSnapshot?: boolean;
2057
+ CopyTagsToSnapshot?: boolean | undefined;
2058
2058
  /**
2059
2059
  * <p>A value that specifies the order in which an Amazon DocumentDB replica is promoted to the
2060
2060
  * primary instance after a failure of the existing primary instance.</p>
2061
2061
  * @public
2062
2062
  */
2063
- PromotionTier?: number;
2063
+ PromotionTier?: number | undefined;
2064
2064
  /**
2065
2065
  * <p>The Amazon Resource Name (ARN) for the instance.</p>
2066
2066
  * @public
2067
2067
  */
2068
- DBInstanceArn?: string;
2068
+ DBInstanceArn?: string | undefined;
2069
2069
  /**
2070
2070
  * <p>A list of log types that this instance is configured to export to CloudWatch Logs.</p>
2071
2071
  * @public
2072
2072
  */
2073
- EnabledCloudwatchLogsExports?: string[];
2073
+ EnabledCloudwatchLogsExports?: string[] | undefined;
2074
2074
  /**
2075
2075
  * <p>The details of the DB instance's server certificate.</p>
2076
2076
  * @public
2077
2077
  */
2078
- CertificateDetails?: CertificateDetails;
2078
+ CertificateDetails?: CertificateDetails | undefined;
2079
2079
  /**
2080
2080
  * <p>Set to <code>true</code> if Amazon RDS Performance Insights is enabled for the DB instance, and otherwise <code>false</code>.</p>
2081
2081
  * @public
2082
2082
  */
2083
- PerformanceInsightsEnabled?: boolean;
2083
+ PerformanceInsightsEnabled?: boolean | undefined;
2084
2084
  /**
2085
2085
  * <p>The KMS key identifier for encryption of Performance Insights data. The KMS key ID is the Amazon Resource Name (ARN), KMS key identifier, or the KMS key alias for the KMS encryption key.</p>
2086
2086
  * @public
2087
2087
  */
2088
- PerformanceInsightsKMSKeyId?: string;
2088
+ PerformanceInsightsKMSKeyId?: string | undefined;
2089
2089
  }
2090
2090
  /**
2091
2091
  * @public
@@ -2095,7 +2095,7 @@ export interface CreateDBInstanceResult {
2095
2095
  * <p>Detailed information about an instance. </p>
2096
2096
  * @public
2097
2097
  */
2098
- DBInstance?: DBInstance;
2098
+ DBInstance?: DBInstance | undefined;
2099
2099
  }
2100
2100
  /**
2101
2101
  * <p>You already have a instance with the given identifier.</p>
@@ -2187,7 +2187,7 @@ export interface CreateDBSubnetGroupMessage {
2187
2187
  * <p>The tags to be assigned to the subnet group.</p>
2188
2188
  * @public
2189
2189
  */
2190
- Tags?: Tag[];
2190
+ Tags?: Tag[] | undefined;
2191
2191
  }
2192
2192
  /**
2193
2193
  * @public
@@ -2197,7 +2197,7 @@ export interface CreateDBSubnetGroupResult {
2197
2197
  * <p>Detailed information about a subnet group. </p>
2198
2198
  * @public
2199
2199
  */
2200
- DBSubnetGroup?: DBSubnetGroup;
2200
+ DBSubnetGroup?: DBSubnetGroup | undefined;
2201
2201
  }
2202
2202
  /**
2203
2203
  * <p>
@@ -2260,12 +2260,12 @@ export interface CreateEventSubscriptionMessage {
2260
2260
  * </p>
2261
2261
  * @public
2262
2262
  */
2263
- SourceType?: string;
2263
+ SourceType?: string | undefined;
2264
2264
  /**
2265
2265
  * <p> A list of event categories for a <code>SourceType</code> that you want to subscribe to. </p>
2266
2266
  * @public
2267
2267
  */
2268
- EventCategories?: string[];
2268
+ EventCategories?: string[] | undefined;
2269
2269
  /**
2270
2270
  * <p>The list of identifiers of the event sources for which events are returned. If not specified, then all sources are included in the response. An identifier must begin with a letter and must contain only ASCII letters, digits, and hyphens; it can't end with a
2271
2271
  * hyphen or contain two consecutive hyphens.</p>
@@ -2294,17 +2294,17 @@ export interface CreateEventSubscriptionMessage {
2294
2294
  * </ul>
2295
2295
  * @public
2296
2296
  */
2297
- SourceIds?: string[];
2297
+ SourceIds?: string[] | undefined;
2298
2298
  /**
2299
2299
  * <p> A Boolean value; set to <code>true</code> to activate the subscription, set to <code>false</code> to create the subscription but not active it. </p>
2300
2300
  * @public
2301
2301
  */
2302
- Enabled?: boolean;
2302
+ Enabled?: boolean | undefined;
2303
2303
  /**
2304
2304
  * <p>The tags to be assigned to the event subscription.</p>
2305
2305
  * @public
2306
2306
  */
2307
- Tags?: Tag[];
2307
+ Tags?: Tag[] | undefined;
2308
2308
  }
2309
2309
  /**
2310
2310
  * @public
@@ -2314,7 +2314,7 @@ export interface CreateEventSubscriptionResult {
2314
2314
  * <p>Detailed information about an event to which you have subscribed.</p>
2315
2315
  * @public
2316
2316
  */
2317
- EventSubscription?: EventSubscription;
2317
+ EventSubscription?: EventSubscription | undefined;
2318
2318
  }
2319
2319
  /**
2320
2320
  * <p>You have reached the maximum number of event subscriptions. </p>
@@ -2402,32 +2402,32 @@ export interface CreateGlobalClusterMessage {
2402
2402
  * <p>The Amazon Resource Name (ARN) to use as the primary cluster of the global cluster. This parameter is optional.</p>
2403
2403
  * @public
2404
2404
  */
2405
- SourceDBClusterIdentifier?: string;
2405
+ SourceDBClusterIdentifier?: string | undefined;
2406
2406
  /**
2407
2407
  * <p>The name of the database engine to be used for this cluster.</p>
2408
2408
  * @public
2409
2409
  */
2410
- Engine?: string;
2410
+ Engine?: string | undefined;
2411
2411
  /**
2412
2412
  * <p>The engine version of the global cluster.</p>
2413
2413
  * @public
2414
2414
  */
2415
- EngineVersion?: string;
2415
+ EngineVersion?: string | undefined;
2416
2416
  /**
2417
2417
  * <p>The deletion protection setting for the new global cluster. The global cluster can't be deleted when deletion protection is enabled. </p>
2418
2418
  * @public
2419
2419
  */
2420
- DeletionProtection?: boolean;
2420
+ DeletionProtection?: boolean | undefined;
2421
2421
  /**
2422
2422
  * <p>The name for your database of up to 64 alpha-numeric characters. If you do not provide a name, Amazon DocumentDB will not create a database in the global cluster you are creating.</p>
2423
2423
  * @public
2424
2424
  */
2425
- DatabaseName?: string;
2425
+ DatabaseName?: string | undefined;
2426
2426
  /**
2427
2427
  * <p>The storage encryption setting for the new global cluster. </p>
2428
2428
  * @public
2429
2429
  */
2430
- StorageEncrypted?: boolean;
2430
+ StorageEncrypted?: boolean | undefined;
2431
2431
  }
2432
2432
  /**
2433
2433
  * <p>A data structure with information about any primary and secondary clusters associated with an Amazon DocumentDB global clusters. </p>
@@ -2438,17 +2438,17 @@ export interface GlobalClusterMember {
2438
2438
  * <p>The Amazon Resource Name (ARN) for each Amazon DocumentDB cluster.</p>
2439
2439
  * @public
2440
2440
  */
2441
- DBClusterArn?: string;
2441
+ DBClusterArn?: string | undefined;
2442
2442
  /**
2443
2443
  * <p>The Amazon Resource Name (ARN) for each read-only secondary cluster associated with the Aurora global cluster.</p>
2444
2444
  * @public
2445
2445
  */
2446
- Readers?: string[];
2446
+ Readers?: string[] | undefined;
2447
2447
  /**
2448
2448
  * <p> Specifies whether the Amazon DocumentDB cluster is the primary cluster (that is, has read-write capability) for the Amazon DocumentDB global cluster with which it is associated. </p>
2449
2449
  * @public
2450
2450
  */
2451
- IsWriter?: boolean;
2451
+ IsWriter?: boolean | undefined;
2452
2452
  }
2453
2453
  /**
2454
2454
  * <p>A data type representing an Amazon DocumentDB global cluster.</p>
@@ -2459,52 +2459,52 @@ export interface GlobalCluster {
2459
2459
  * <p>Contains a user-supplied global cluster identifier. This identifier is the unique key that identifies a global cluster. </p>
2460
2460
  * @public
2461
2461
  */
2462
- GlobalClusterIdentifier?: string;
2462
+ GlobalClusterIdentifier?: string | undefined;
2463
2463
  /**
2464
2464
  * <p>The Amazon Web Services Region-unique, immutable identifier for the global database cluster. This identifier is found in CloudTrail log entries whenever the KMS customer master key (CMK) for the cluster is accessed. </p>
2465
2465
  * @public
2466
2466
  */
2467
- GlobalClusterResourceId?: string;
2467
+ GlobalClusterResourceId?: string | undefined;
2468
2468
  /**
2469
2469
  * <p>The Amazon Resource Name (ARN) for the global cluster.</p>
2470
2470
  * @public
2471
2471
  */
2472
- GlobalClusterArn?: string;
2472
+ GlobalClusterArn?: string | undefined;
2473
2473
  /**
2474
2474
  * <p>Specifies the current state of this global cluster.</p>
2475
2475
  * @public
2476
2476
  */
2477
- Status?: string;
2477
+ Status?: string | undefined;
2478
2478
  /**
2479
2479
  * <p>The Amazon DocumentDB database engine used by the global cluster. </p>
2480
2480
  * @public
2481
2481
  */
2482
- Engine?: string;
2482
+ Engine?: string | undefined;
2483
2483
  /**
2484
2484
  * <p>Indicates the database engine version.</p>
2485
2485
  * @public
2486
2486
  */
2487
- EngineVersion?: string;
2487
+ EngineVersion?: string | undefined;
2488
2488
  /**
2489
2489
  * <p>The default database name within the new global cluster.</p>
2490
2490
  * @public
2491
2491
  */
2492
- DatabaseName?: string;
2492
+ DatabaseName?: string | undefined;
2493
2493
  /**
2494
2494
  * <p>The storage encryption setting for the global cluster.</p>
2495
2495
  * @public
2496
2496
  */
2497
- StorageEncrypted?: boolean;
2497
+ StorageEncrypted?: boolean | undefined;
2498
2498
  /**
2499
2499
  * <p>The deletion protection setting for the new global cluster.</p>
2500
2500
  * @public
2501
2501
  */
2502
- DeletionProtection?: boolean;
2502
+ DeletionProtection?: boolean | undefined;
2503
2503
  /**
2504
2504
  * <p>The list of cluster IDs for secondary clusters within the global cluster. Currently limited to one item. </p>
2505
2505
  * @public
2506
2506
  */
2507
- GlobalClusterMembers?: GlobalClusterMember[];
2507
+ GlobalClusterMembers?: GlobalClusterMember[] | undefined;
2508
2508
  }
2509
2509
  /**
2510
2510
  * @public
@@ -2514,7 +2514,7 @@ export interface CreateGlobalClusterResult {
2514
2514
  * <p>A data type representing an Amazon DocumentDB global cluster.</p>
2515
2515
  * @public
2516
2516
  */
2517
- GlobalCluster?: GlobalCluster;
2517
+ GlobalCluster?: GlobalCluster | undefined;
2518
2518
  }
2519
2519
  /**
2520
2520
  * <p>The <code>GlobalClusterIdentifier</code> already exists. Choose a new global cluster identifier (unique name) to create a new global cluster. </p>
@@ -2565,7 +2565,7 @@ export interface DeleteDBClusterMessage {
2565
2565
  * </p>
2566
2566
  * @public
2567
2567
  */
2568
- SkipFinalSnapshot?: boolean;
2568
+ SkipFinalSnapshot?: boolean | undefined;
2569
2569
  /**
2570
2570
  * <p> The cluster snapshot identifier of the new cluster snapshot created when <code>SkipFinalSnapshot</code> is set to <code>false</code>. </p>
2571
2571
  * <note>
@@ -2585,7 +2585,7 @@ export interface DeleteDBClusterMessage {
2585
2585
  * </ul>
2586
2586
  * @public
2587
2587
  */
2588
- FinalDBSnapshotIdentifier?: string;
2588
+ FinalDBSnapshotIdentifier?: string | undefined;
2589
2589
  }
2590
2590
  /**
2591
2591
  * @public
@@ -2595,7 +2595,7 @@ export interface DeleteDBClusterResult {
2595
2595
  * <p>Detailed information about a cluster. </p>
2596
2596
  * @public
2597
2597
  */
2598
- DBCluster?: DBCluster;
2598
+ DBCluster?: DBCluster | undefined;
2599
2599
  }
2600
2600
  /**
2601
2601
  * <p>Represents the input to <a>DeleteDBClusterParameterGroup</a>.</p>
@@ -2652,7 +2652,7 @@ export interface DeleteDBClusterSnapshotResult {
2652
2652
  * <p>Detailed information about a cluster snapshot. </p>
2653
2653
  * @public
2654
2654
  */
2655
- DBClusterSnapshot?: DBClusterSnapshot;
2655
+ DBClusterSnapshot?: DBClusterSnapshot | undefined;
2656
2656
  }
2657
2657
  /**
2658
2658
  * <p>
@@ -2693,7 +2693,7 @@ export interface DeleteDBInstanceResult {
2693
2693
  * <p>Detailed information about an instance. </p>
2694
2694
  * @public
2695
2695
  */
2696
- DBInstance?: DBInstance;
2696
+ DBInstance?: DBInstance | undefined;
2697
2697
  }
2698
2698
  /**
2699
2699
  * <p>Represents the input to <a>DeleteDBSubnetGroup</a>.</p>
@@ -2744,7 +2744,7 @@ export interface DeleteEventSubscriptionResult {
2744
2744
  * <p>Detailed information about an event to which you have subscribed.</p>
2745
2745
  * @public
2746
2746
  */
2747
- EventSubscription?: EventSubscription;
2747
+ EventSubscription?: EventSubscription | undefined;
2748
2748
  }
2749
2749
  /**
2750
2750
  * <p>Someone else might be modifying a subscription. Wait a few seconds, and try
@@ -2778,7 +2778,7 @@ export interface DeleteGlobalClusterResult {
2778
2778
  * <p>A data type representing an Amazon DocumentDB global cluster.</p>
2779
2779
  * @public
2780
2780
  */
2781
- GlobalCluster?: GlobalCluster;
2781
+ GlobalCluster?: GlobalCluster | undefined;
2782
2782
  }
2783
2783
  /**
2784
2784
  * <p>A certificate authority (CA) certificate for an Amazon Web Services account.</p>
@@ -2791,40 +2791,40 @@ export interface Certificate {
2791
2791
  * </p>
2792
2792
  * @public
2793
2793
  */
2794
- CertificateIdentifier?: string;
2794
+ CertificateIdentifier?: string | undefined;
2795
2795
  /**
2796
2796
  * <p>The type of the certificate.</p>
2797
2797
  * <p>Example: <code>CA</code>
2798
2798
  * </p>
2799
2799
  * @public
2800
2800
  */
2801
- CertificateType?: string;
2801
+ CertificateType?: string | undefined;
2802
2802
  /**
2803
2803
  * <p>The thumbprint of the certificate.</p>
2804
2804
  * @public
2805
2805
  */
2806
- Thumbprint?: string;
2806
+ Thumbprint?: string | undefined;
2807
2807
  /**
2808
2808
  * <p>The starting date-time from which the certificate is valid.</p>
2809
2809
  * <p>Example: <code>2019-07-31T17:57:09Z</code>
2810
2810
  * </p>
2811
2811
  * @public
2812
2812
  */
2813
- ValidFrom?: Date;
2813
+ ValidFrom?: Date | undefined;
2814
2814
  /**
2815
2815
  * <p>The date-time after which the certificate is no longer valid.</p>
2816
2816
  * <p>Example: <code>2024-07-31T17:57:09Z</code>
2817
2817
  * </p>
2818
2818
  * @public
2819
2819
  */
2820
- ValidTill?: Date;
2820
+ ValidTill?: Date | undefined;
2821
2821
  /**
2822
2822
  * <p>The Amazon Resource Name (ARN) for the certificate.</p>
2823
2823
  * <p>Example: <code>arn:aws:rds:us-east-1::cert:rds-ca-2019</code>
2824
2824
  * </p>
2825
2825
  * @public
2826
2826
  */
2827
- CertificateArn?: string;
2827
+ CertificateArn?: string | undefined;
2828
2828
  }
2829
2829
  /**
2830
2830
  * @public
@@ -2834,12 +2834,12 @@ export interface CertificateMessage {
2834
2834
  * <p>A list of certificates for this Amazon Web Services account.</p>
2835
2835
  * @public
2836
2836
  */
2837
- Certificates?: Certificate[];
2837
+ Certificates?: Certificate[] | undefined;
2838
2838
  /**
2839
2839
  * <p>An optional pagination token provided if the number of records retrieved is greater than <code>MaxRecords</code>. If this parameter is specified, the marker specifies the next record in the list. Including the value of <code>Marker</code> in the next call to <code>DescribeCertificates</code> results in the next page of certificates.</p>
2840
2840
  * @public
2841
2841
  */
2842
- Marker?: string;
2842
+ Marker?: string | undefined;
2843
2843
  }
2844
2844
  /**
2845
2845
  * <p>
@@ -2886,12 +2886,12 @@ export interface DescribeCertificatesMessage {
2886
2886
  * </ul>
2887
2887
  * @public
2888
2888
  */
2889
- CertificateIdentifier?: string;
2889
+ CertificateIdentifier?: string | undefined;
2890
2890
  /**
2891
2891
  * <p>This parameter is not currently supported.</p>
2892
2892
  * @public
2893
2893
  */
2894
- Filters?: Filter[];
2894
+ Filters?: Filter[] | undefined;
2895
2895
  /**
2896
2896
  * <p>The maximum number of records to include in the response. If more records exist than the specified <code>MaxRecords</code> value, a pagination token called a marker is included in the response so that the remaining results can be retrieved.</p>
2897
2897
  * <p>Default: 100</p>
@@ -2906,12 +2906,12 @@ export interface DescribeCertificatesMessage {
2906
2906
  * </ul>
2907
2907
  * @public
2908
2908
  */
2909
- MaxRecords?: number;
2909
+ MaxRecords?: number | undefined;
2910
2910
  /**
2911
2911
  * <p>An optional pagination token provided by a previous <code>DescribeCertificates</code> request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by <code>MaxRecords</code>.</p>
2912
2912
  * @public
2913
2913
  */
2914
- Marker?: string;
2914
+ Marker?: string | undefined;
2915
2915
  }
2916
2916
  /**
2917
2917
  * <p>Represents the output of <a>DBClusterParameterGroups</a>.</p>
@@ -2924,12 +2924,12 @@ export interface DBClusterParameterGroupsMessage {
2924
2924
  * <code>MaxRecords</code>.</p>
2925
2925
  * @public
2926
2926
  */
2927
- Marker?: string;
2927
+ Marker?: string | undefined;
2928
2928
  /**
2929
2929
  * <p>A list of cluster parameter groups.</p>
2930
2930
  * @public
2931
2931
  */
2932
- DBClusterParameterGroups?: DBClusterParameterGroup[];
2932
+ DBClusterParameterGroups?: DBClusterParameterGroup[] | undefined;
2933
2933
  }
2934
2934
  /**
2935
2935
  * <p>Represents the input to <a>DescribeDBClusterParameterGroups</a>.</p>
@@ -2947,12 +2947,12 @@ export interface DescribeDBClusterParameterGroupsMessage {
2947
2947
  * </ul>
2948
2948
  * @public
2949
2949
  */
2950
- DBClusterParameterGroupName?: string;
2950
+ DBClusterParameterGroupName?: string | undefined;
2951
2951
  /**
2952
2952
  * <p>This parameter is not currently supported.</p>
2953
2953
  * @public
2954
2954
  */
2955
- Filters?: Filter[];
2955
+ Filters?: Filter[] | undefined;
2956
2956
  /**
2957
2957
  * <p> The maximum number of records to include in the response. If more records exist than
2958
2958
  * the specified <code>MaxRecords</code> value, a pagination token (marker) is included
@@ -2961,14 +2961,14 @@ export interface DescribeDBClusterParameterGroupsMessage {
2961
2961
  * <p>Constraints: Minimum 20, maximum 100.</p>
2962
2962
  * @public
2963
2963
  */
2964
- MaxRecords?: number;
2964
+ MaxRecords?: number | undefined;
2965
2965
  /**
2966
2966
  * <p>An optional pagination token provided by a previous request. If this parameter is specified, the response
2967
2967
  * includes only records beyond the marker, up to the value specified by
2968
2968
  * <code>MaxRecords</code>.</p>
2969
2969
  * @public
2970
2970
  */
2971
- Marker?: string;
2971
+ Marker?: string | undefined;
2972
2972
  }
2973
2973
  /**
2974
2974
  * @public
@@ -2991,54 +2991,54 @@ export interface Parameter {
2991
2991
  * <p>Specifies the name of the parameter.</p>
2992
2992
  * @public
2993
2993
  */
2994
- ParameterName?: string;
2994
+ ParameterName?: string | undefined;
2995
2995
  /**
2996
2996
  * <p>Specifies the value of the parameter.</p>
2997
2997
  * @public
2998
2998
  */
2999
- ParameterValue?: string;
2999
+ ParameterValue?: string | undefined;
3000
3000
  /**
3001
3001
  * <p>Provides a description of the parameter.</p>
3002
3002
  * @public
3003
3003
  */
3004
- Description?: string;
3004
+ Description?: string | undefined;
3005
3005
  /**
3006
3006
  * <p>Indicates the source of the parameter value.</p>
3007
3007
  * @public
3008
3008
  */
3009
- Source?: string;
3009
+ Source?: string | undefined;
3010
3010
  /**
3011
3011
  * <p>Specifies the engine-specific parameters type.</p>
3012
3012
  * @public
3013
3013
  */
3014
- ApplyType?: string;
3014
+ ApplyType?: string | undefined;
3015
3015
  /**
3016
3016
  * <p>Specifies the valid data type for the parameter.</p>
3017
3017
  * @public
3018
3018
  */
3019
- DataType?: string;
3019
+ DataType?: string | undefined;
3020
3020
  /**
3021
3021
  * <p>Specifies the valid range of values for the parameter.</p>
3022
3022
  * @public
3023
3023
  */
3024
- AllowedValues?: string;
3024
+ AllowedValues?: string | undefined;
3025
3025
  /**
3026
3026
  * <p> Indicates whether (<code>true</code>) or not (<code>false</code>) the parameter can
3027
3027
  * be modified. Some parameters have security or operational implications that prevent them
3028
3028
  * from being changed. </p>
3029
3029
  * @public
3030
3030
  */
3031
- IsModifiable?: boolean;
3031
+ IsModifiable?: boolean | undefined;
3032
3032
  /**
3033
3033
  * <p>The earliest engine version to which the parameter can apply.</p>
3034
3034
  * @public
3035
3035
  */
3036
- MinimumEngineVersion?: string;
3036
+ MinimumEngineVersion?: string | undefined;
3037
3037
  /**
3038
3038
  * <p>Indicates when to apply parameter updates.</p>
3039
3039
  * @public
3040
3040
  */
3041
- ApplyMethod?: ApplyMethod;
3041
+ ApplyMethod?: ApplyMethod | undefined;
3042
3042
  }
3043
3043
  /**
3044
3044
  * <p>Represents the output of <a>DBClusterParameterGroup</a>.</p>
@@ -3049,14 +3049,14 @@ export interface DBClusterParameterGroupDetails {
3049
3049
  * <p>Provides a list of parameters for the cluster parameter group.</p>
3050
3050
  * @public
3051
3051
  */
3052
- Parameters?: Parameter[];
3052
+ Parameters?: Parameter[] | undefined;
3053
3053
  /**
3054
3054
  * <p>An optional pagination token provided by a previous request. If this parameter is specified, the response
3055
3055
  * includes only records beyond the marker, up to the value specified by
3056
3056
  * <code>MaxRecords</code>.</p>
3057
3057
  * @public
3058
3058
  */
3059
- Marker?: string;
3059
+ Marker?: string | undefined;
3060
3060
  }
3061
3061
  /**
3062
3062
  * <p>Represents the input to <a>DescribeDBClusterParameters</a>.</p>
@@ -3079,12 +3079,12 @@ export interface DescribeDBClusterParametersMessage {
3079
3079
  * </p>
3080
3080
  * @public
3081
3081
  */
3082
- Source?: string;
3082
+ Source?: string | undefined;
3083
3083
  /**
3084
3084
  * <p>This parameter is not currently supported.</p>
3085
3085
  * @public
3086
3086
  */
3087
- Filters?: Filter[];
3087
+ Filters?: Filter[] | undefined;
3088
3088
  /**
3089
3089
  * <p> The maximum number of records to include in the response. If more records exist than
3090
3090
  * the specified <code>MaxRecords</code> value, a pagination token (marker) is included
@@ -3093,14 +3093,14 @@ export interface DescribeDBClusterParametersMessage {
3093
3093
  * <p>Constraints: Minimum 20, maximum 100.</p>
3094
3094
  * @public
3095
3095
  */
3096
- MaxRecords?: number;
3096
+ MaxRecords?: number | undefined;
3097
3097
  /**
3098
3098
  * <p>An optional pagination token provided by a previous request. If this parameter is specified, the response
3099
3099
  * includes only records beyond the marker, up to the value specified by
3100
3100
  * <code>MaxRecords</code>.</p>
3101
3101
  * @public
3102
3102
  */
3103
- Marker?: string;
3103
+ Marker?: string | undefined;
3104
3104
  }
3105
3105
  /**
3106
3106
  * <p>Represents the output of <a>DescribeDBClusters</a>.</p>
@@ -3113,12 +3113,12 @@ export interface DBClusterMessage {
3113
3113
  * <code>MaxRecords</code>.</p>
3114
3114
  * @public
3115
3115
  */
3116
- Marker?: string;
3116
+ Marker?: string | undefined;
3117
3117
  /**
3118
3118
  * <p>A list of clusters.</p>
3119
3119
  * @public
3120
3120
  */
3121
- DBClusters?: DBCluster[];
3121
+ DBClusters?: DBCluster[] | undefined;
3122
3122
  }
3123
3123
  /**
3124
3124
  * <p>Represents the input to <a>DescribeDBClusters</a>.</p>
@@ -3135,7 +3135,7 @@ export interface DescribeDBClustersMessage {
3135
3135
  * </ul>
3136
3136
  * @public
3137
3137
  */
3138
- DBClusterIdentifier?: string;
3138
+ DBClusterIdentifier?: string | undefined;
3139
3139
  /**
3140
3140
  * <p>A filter that specifies one or more clusters to describe.</p>
3141
3141
  * <p>Supported filters:</p>
@@ -3147,7 +3147,7 @@ export interface DescribeDBClustersMessage {
3147
3147
  * </ul>
3148
3148
  * @public
3149
3149
  */
3150
- Filters?: Filter[];
3150
+ Filters?: Filter[] | undefined;
3151
3151
  /**
3152
3152
  * <p> The maximum number of records to include in the response. If more records exist than
3153
3153
  * the specified <code>MaxRecords</code> value, a pagination token (marker) is included
@@ -3156,14 +3156,14 @@ export interface DescribeDBClustersMessage {
3156
3156
  * <p>Constraints: Minimum 20, maximum 100.</p>
3157
3157
  * @public
3158
3158
  */
3159
- MaxRecords?: number;
3159
+ MaxRecords?: number | undefined;
3160
3160
  /**
3161
3161
  * <p>An optional pagination token provided by a previous request. If this parameter is specified, the response
3162
3162
  * includes only records beyond the marker, up to the value specified by
3163
3163
  * <code>MaxRecords</code>.</p>
3164
3164
  * @public
3165
3165
  */
3166
- Marker?: string;
3166
+ Marker?: string | undefined;
3167
3167
  }
3168
3168
  /**
3169
3169
  * <p>Represents the input to <a>DescribeDBClusterSnapshotAttributes</a>.</p>
@@ -3187,13 +3187,13 @@ export interface DBClusterSnapshotAttribute {
3187
3187
  * <p>The attribute named <code>restore</code> refers to the list of Amazon Web Services accounts that have permission to copy or restore the manual cluster snapshot.</p>
3188
3188
  * @public
3189
3189
  */
3190
- AttributeName?: string;
3190
+ AttributeName?: string | undefined;
3191
3191
  /**
3192
3192
  * <p>The values for the manual cluster snapshot attribute.</p>
3193
3193
  * <p>If the <code>AttributeName</code> field is set to <code>restore</code>, then this element returns a list of IDs of the Amazon Web Services accounts that are authorized to copy or restore the manual cluster snapshot. If a value of <code>all</code> is in the list, then the manual cluster snapshot is public and available for any Amazon Web Services account to copy or restore.</p>
3194
3194
  * @public
3195
3195
  */
3196
- AttributeValues?: string[];
3196
+ AttributeValues?: string[] | undefined;
3197
3197
  }
3198
3198
  /**
3199
3199
  * <p>Detailed information about the attributes that are associated with a cluster
@@ -3205,12 +3205,12 @@ export interface DBClusterSnapshotAttributesResult {
3205
3205
  * <p>The identifier of the cluster snapshot that the attributes apply to.</p>
3206
3206
  * @public
3207
3207
  */
3208
- DBClusterSnapshotIdentifier?: string;
3208
+ DBClusterSnapshotIdentifier?: string | undefined;
3209
3209
  /**
3210
3210
  * <p>The list of attributes and values for the cluster snapshot.</p>
3211
3211
  * @public
3212
3212
  */
3213
- DBClusterSnapshotAttributes?: DBClusterSnapshotAttribute[];
3213
+ DBClusterSnapshotAttributes?: DBClusterSnapshotAttribute[] | undefined;
3214
3214
  }
3215
3215
  /**
3216
3216
  * @public
@@ -3221,7 +3221,7 @@ export interface DescribeDBClusterSnapshotAttributesResult {
3221
3221
  * snapshot.</p>
3222
3222
  * @public
3223
3223
  */
3224
- DBClusterSnapshotAttributesResult?: DBClusterSnapshotAttributesResult;
3224
+ DBClusterSnapshotAttributesResult?: DBClusterSnapshotAttributesResult | undefined;
3225
3225
  }
3226
3226
  /**
3227
3227
  * <p>Represents the output of <a>DescribeDBClusterSnapshots</a>.</p>
@@ -3234,12 +3234,12 @@ export interface DBClusterSnapshotMessage {
3234
3234
  * <code>MaxRecords</code>.</p>
3235
3235
  * @public
3236
3236
  */
3237
- Marker?: string;
3237
+ Marker?: string | undefined;
3238
3238
  /**
3239
3239
  * <p>Provides a list of cluster snapshots.</p>
3240
3240
  * @public
3241
3241
  */
3242
- DBClusterSnapshots?: DBClusterSnapshot[];
3242
+ DBClusterSnapshots?: DBClusterSnapshot[] | undefined;
3243
3243
  }
3244
3244
  /**
3245
3245
  * <p>Represents the input to <a>DescribeDBClusterSnapshots</a>.</p>
@@ -3257,7 +3257,7 @@ export interface DescribeDBClusterSnapshotsMessage {
3257
3257
  * </ul>
3258
3258
  * @public
3259
3259
  */
3260
- DBClusterIdentifier?: string;
3260
+ DBClusterIdentifier?: string | undefined;
3261
3261
  /**
3262
3262
  * <p>A specific cluster snapshot identifier to describe. This parameter can't be used with the <code>DBClusterIdentifier</code> parameter. This value is stored as a lowercase string. </p>
3263
3263
  * <p>Constraints:</p>
@@ -3273,7 +3273,7 @@ export interface DescribeDBClusterSnapshotsMessage {
3273
3273
  * </ul>
3274
3274
  * @public
3275
3275
  */
3276
- DBClusterSnapshotIdentifier?: string;
3276
+ DBClusterSnapshotIdentifier?: string | undefined;
3277
3277
  /**
3278
3278
  * <p>The type of cluster snapshots to be returned. You can specify one of the following values:</p>
3279
3279
  * <ul>
@@ -3298,12 +3298,12 @@ export interface DescribeDBClusterSnapshotsMessage {
3298
3298
  * <p>The <code>IncludeShared</code> and <code>IncludePublic</code> parameters don't apply for <code>SnapshotType</code> values of <code>manual</code> or <code>automated</code>. The <code>IncludePublic</code> parameter doesn't apply when <code>SnapshotType</code> is set to <code>shared</code>. The <code>IncludeShared</code> parameter doesn't apply when <code>SnapshotType</code> is set to <code>public</code>.</p>
3299
3299
  * @public
3300
3300
  */
3301
- SnapshotType?: string;
3301
+ SnapshotType?: string | undefined;
3302
3302
  /**
3303
3303
  * <p>This parameter is not currently supported.</p>
3304
3304
  * @public
3305
3305
  */
3306
- Filters?: Filter[];
3306
+ Filters?: Filter[] | undefined;
3307
3307
  /**
3308
3308
  * <p> The maximum number of records to include in the response. If more records exist than
3309
3309
  * the specified <code>MaxRecords</code> value, a pagination token (marker) is included
@@ -3312,24 +3312,24 @@ export interface DescribeDBClusterSnapshotsMessage {
3312
3312
  * <p>Constraints: Minimum 20, maximum 100.</p>
3313
3313
  * @public
3314
3314
  */
3315
- MaxRecords?: number;
3315
+ MaxRecords?: number | undefined;
3316
3316
  /**
3317
3317
  * <p>An optional pagination token provided by a previous request. If this parameter is specified, the response
3318
3318
  * includes only records beyond the marker, up to the value specified by
3319
3319
  * <code>MaxRecords</code>.</p>
3320
3320
  * @public
3321
3321
  */
3322
- Marker?: string;
3322
+ Marker?: string | undefined;
3323
3323
  /**
3324
3324
  * <p>Set to <code>true</code> to include shared manual cluster snapshots from other Amazon Web Services accounts that this Amazon Web Services account has been given permission to copy or restore, and otherwise <code>false</code>. The default is <code>false</code>.</p>
3325
3325
  * @public
3326
3326
  */
3327
- IncludeShared?: boolean;
3327
+ IncludeShared?: boolean | undefined;
3328
3328
  /**
3329
3329
  * <p>Set to <code>true</code> to include manual cluster snapshots that are public and can be copied or restored by any Amazon Web Services account, and otherwise <code>false</code>. The default is <code>false</code>.</p>
3330
3330
  * @public
3331
3331
  */
3332
- IncludePublic?: boolean;
3332
+ IncludePublic?: boolean | undefined;
3333
3333
  }
3334
3334
  /**
3335
3335
  * <p>The version of the database engine that an instance can be upgraded to.</p>
@@ -3340,28 +3340,28 @@ export interface UpgradeTarget {
3340
3340
  * <p>The name of the upgrade target database engine.</p>
3341
3341
  * @public
3342
3342
  */
3343
- Engine?: string;
3343
+ Engine?: string | undefined;
3344
3344
  /**
3345
3345
  * <p>The version number of the upgrade target database engine.</p>
3346
3346
  * @public
3347
3347
  */
3348
- EngineVersion?: string;
3348
+ EngineVersion?: string | undefined;
3349
3349
  /**
3350
3350
  * <p>The version of the database engine that an instance can be upgraded to.</p>
3351
3351
  * @public
3352
3352
  */
3353
- Description?: string;
3353
+ Description?: string | undefined;
3354
3354
  /**
3355
3355
  * <p>A value that indicates whether the target version is applied to any source DB instances that have <code>AutoMinorVersionUpgrade</code> set to <code>true</code>.</p>
3356
3356
  * @public
3357
3357
  */
3358
- AutoUpgrade?: boolean;
3358
+ AutoUpgrade?: boolean | undefined;
3359
3359
  /**
3360
3360
  * <p>A value that indicates whether a database engine is upgraded to a major
3361
3361
  * version.</p>
3362
3362
  * @public
3363
3363
  */
3364
- IsMajorVersionUpgrade?: boolean;
3364
+ IsMajorVersionUpgrade?: boolean | undefined;
3365
3365
  }
3366
3366
  /**
3367
3367
  * <p> Detailed information about an engine version. </p>
@@ -3372,44 +3372,44 @@ export interface DBEngineVersion {
3372
3372
  * <p>The name of the database engine.</p>
3373
3373
  * @public
3374
3374
  */
3375
- Engine?: string;
3375
+ Engine?: string | undefined;
3376
3376
  /**
3377
3377
  * <p>The version number of the database engine.</p>
3378
3378
  * @public
3379
3379
  */
3380
- EngineVersion?: string;
3380
+ EngineVersion?: string | undefined;
3381
3381
  /**
3382
3382
  * <p>The name of the parameter group family for the database engine.</p>
3383
3383
  * @public
3384
3384
  */
3385
- DBParameterGroupFamily?: string;
3385
+ DBParameterGroupFamily?: string | undefined;
3386
3386
  /**
3387
3387
  * <p>The description of the database engine.</p>
3388
3388
  * @public
3389
3389
  */
3390
- DBEngineDescription?: string;
3390
+ DBEngineDescription?: string | undefined;
3391
3391
  /**
3392
3392
  * <p>The description of the database engine version.</p>
3393
3393
  * @public
3394
3394
  */
3395
- DBEngineVersionDescription?: string;
3395
+ DBEngineVersionDescription?: string | undefined;
3396
3396
  /**
3397
3397
  * <p>A list of engine versions that this database engine version can be upgraded to.</p>
3398
3398
  * @public
3399
3399
  */
3400
- ValidUpgradeTarget?: UpgradeTarget[];
3400
+ ValidUpgradeTarget?: UpgradeTarget[] | undefined;
3401
3401
  /**
3402
3402
  * <p>The types of logs that the database engine has available for export to Amazon
3403
3403
  * CloudWatch Logs.</p>
3404
3404
  * @public
3405
3405
  */
3406
- ExportableLogTypes?: string[];
3406
+ ExportableLogTypes?: string[] | undefined;
3407
3407
  /**
3408
3408
  * <p>A value that indicates whether the engine version supports exporting the log types
3409
3409
  * specified by <code>ExportableLogTypes</code> to CloudWatch Logs.</p>
3410
3410
  * @public
3411
3411
  */
3412
- SupportsLogExportsToCloudwatchLogs?: boolean;
3412
+ SupportsLogExportsToCloudwatchLogs?: boolean | undefined;
3413
3413
  /**
3414
3414
  * <p>A list of the supported CA certificate identifiers.</p>
3415
3415
  * <p>For more information, see <a href="https://docs.aws.amazon.com/documentdb/latest/developerguide/ca_cert_rotation.html">Updating Your Amazon DocumentDB TLS
@@ -3419,13 +3419,13 @@ export interface DBEngineVersion {
3419
3419
  * Guide</i>.</p>
3420
3420
  * @public
3421
3421
  */
3422
- SupportedCACertificateIdentifiers?: string[];
3422
+ SupportedCACertificateIdentifiers?: string[] | undefined;
3423
3423
  /**
3424
3424
  * <p>Indicates whether the engine version supports rotating the server certificate without
3425
3425
  * rebooting the DB instance.</p>
3426
3426
  * @public
3427
3427
  */
3428
- SupportsCertificateRotationWithoutRestart?: boolean;
3428
+ SupportsCertificateRotationWithoutRestart?: boolean | undefined;
3429
3429
  }
3430
3430
  /**
3431
3431
  * <p>Represents the output of <a>DescribeDBEngineVersions</a>.</p>
@@ -3438,12 +3438,12 @@ export interface DBEngineVersionMessage {
3438
3438
  * <code>MaxRecords</code>.</p>
3439
3439
  * @public
3440
3440
  */
3441
- Marker?: string;
3441
+ Marker?: string | undefined;
3442
3442
  /**
3443
3443
  * <p>Detailed information about one or more engine versions.</p>
3444
3444
  * @public
3445
3445
  */
3446
- DBEngineVersions?: DBEngineVersion[];
3446
+ DBEngineVersions?: DBEngineVersion[] | undefined;
3447
3447
  }
3448
3448
  /**
3449
3449
  * <p>Represents the input to <a>DescribeDBEngineVersions</a>.</p>
@@ -3454,14 +3454,14 @@ export interface DescribeDBEngineVersionsMessage {
3454
3454
  * <p>The database engine to return.</p>
3455
3455
  * @public
3456
3456
  */
3457
- Engine?: string;
3457
+ Engine?: string | undefined;
3458
3458
  /**
3459
3459
  * <p>The database engine version to return.</p>
3460
3460
  * <p>Example: <code>3.6.0</code>
3461
3461
  * </p>
3462
3462
  * @public
3463
3463
  */
3464
- EngineVersion?: string;
3464
+ EngineVersion?: string | undefined;
3465
3465
  /**
3466
3466
  * <p>The name of a specific parameter group family to return details for.</p>
3467
3467
  * <p>Constraints:</p>
@@ -3473,12 +3473,12 @@ export interface DescribeDBEngineVersionsMessage {
3473
3473
  * </ul>
3474
3474
  * @public
3475
3475
  */
3476
- DBParameterGroupFamily?: string;
3476
+ DBParameterGroupFamily?: string | undefined;
3477
3477
  /**
3478
3478
  * <p>This parameter is not currently supported.</p>
3479
3479
  * @public
3480
3480
  */
3481
- Filters?: Filter[];
3481
+ Filters?: Filter[] | undefined;
3482
3482
  /**
3483
3483
  * <p> The maximum number of records to include in the response. If more records exist than
3484
3484
  * the specified <code>MaxRecords</code> value, a pagination token (marker) is included
@@ -3487,30 +3487,30 @@ export interface DescribeDBEngineVersionsMessage {
3487
3487
  * <p>Constraints: Minimum 20, maximum 100.</p>
3488
3488
  * @public
3489
3489
  */
3490
- MaxRecords?: number;
3490
+ MaxRecords?: number | undefined;
3491
3491
  /**
3492
3492
  * <p>An optional pagination token provided by a previous request. If this parameter is specified, the response
3493
3493
  * includes only records beyond the marker, up to the value specified by
3494
3494
  * <code>MaxRecords</code>.</p>
3495
3495
  * @public
3496
3496
  */
3497
- Marker?: string;
3497
+ Marker?: string | undefined;
3498
3498
  /**
3499
3499
  * <p>Indicates that only the default version of the specified engine or engine and major
3500
3500
  * version combination is returned.</p>
3501
3501
  * @public
3502
3502
  */
3503
- DefaultOnly?: boolean;
3503
+ DefaultOnly?: boolean | undefined;
3504
3504
  /**
3505
3505
  * <p>If this parameter is specified and the requested engine supports the <code>CharacterSetName</code> parameter for <code>CreateDBInstance</code>, the response includes a list of supported character sets for each engine version. </p>
3506
3506
  * @public
3507
3507
  */
3508
- ListSupportedCharacterSets?: boolean;
3508
+ ListSupportedCharacterSets?: boolean | undefined;
3509
3509
  /**
3510
3510
  * <p>If this parameter is specified and the requested engine supports the <code>TimeZone</code> parameter for <code>CreateDBInstance</code>, the response includes a list of supported time zones for each engine version. </p>
3511
3511
  * @public
3512
3512
  */
3513
- ListSupportedTimezones?: boolean;
3513
+ ListSupportedTimezones?: boolean | undefined;
3514
3514
  }
3515
3515
  /**
3516
3516
  * <p>Represents the output of <a>DescribeDBInstances</a>.</p>
@@ -3523,12 +3523,12 @@ export interface DBInstanceMessage {
3523
3523
  * <code>MaxRecords</code>.</p>
3524
3524
  * @public
3525
3525
  */
3526
- Marker?: string;
3526
+ Marker?: string | undefined;
3527
3527
  /**
3528
3528
  * <p>Detailed information about one or more instances. </p>
3529
3529
  * @public
3530
3530
  */
3531
- DBInstances?: DBInstance[];
3531
+ DBInstances?: DBInstance[] | undefined;
3532
3532
  }
3533
3533
  /**
3534
3534
  * <p>Represents the input to <a>DescribeDBInstances</a>.</p>
@@ -3546,7 +3546,7 @@ export interface DescribeDBInstancesMessage {
3546
3546
  * </ul>
3547
3547
  * @public
3548
3548
  */
3549
- DBInstanceIdentifier?: string;
3549
+ DBInstanceIdentifier?: string | undefined;
3550
3550
  /**
3551
3551
  * <p>A filter that specifies one or more instances to describe.</p>
3552
3552
  * <p>Supported filters:</p>
@@ -3562,7 +3562,7 @@ export interface DescribeDBInstancesMessage {
3562
3562
  * </ul>
3563
3563
  * @public
3564
3564
  */
3565
- Filters?: Filter[];
3565
+ Filters?: Filter[] | undefined;
3566
3566
  /**
3567
3567
  * <p> The maximum number of records to include in the response. If more records exist than
3568
3568
  * the specified <code>MaxRecords</code> value, a pagination token (marker) is included
@@ -3571,14 +3571,14 @@ export interface DescribeDBInstancesMessage {
3571
3571
  * <p>Constraints: Minimum 20, maximum 100.</p>
3572
3572
  * @public
3573
3573
  */
3574
- MaxRecords?: number;
3574
+ MaxRecords?: number | undefined;
3575
3575
  /**
3576
3576
  * <p>An optional pagination token provided by a previous request. If this parameter is specified, the response
3577
3577
  * includes only records beyond the marker, up to the value specified by
3578
3578
  * <code>MaxRecords</code>.</p>
3579
3579
  * @public
3580
3580
  */
3581
- Marker?: string;
3581
+ Marker?: string | undefined;
3582
3582
  }
3583
3583
  /**
3584
3584
  * <p>Represents the output of <a>DescribeDBSubnetGroups</a>.</p>
@@ -3591,12 +3591,12 @@ export interface DBSubnetGroupMessage {
3591
3591
  * <code>MaxRecords</code>.</p>
3592
3592
  * @public
3593
3593
  */
3594
- Marker?: string;
3594
+ Marker?: string | undefined;
3595
3595
  /**
3596
3596
  * <p>Detailed information about one or more subnet groups.</p>
3597
3597
  * @public
3598
3598
  */
3599
- DBSubnetGroups?: DBSubnetGroup[];
3599
+ DBSubnetGroups?: DBSubnetGroup[] | undefined;
3600
3600
  }
3601
3601
  /**
3602
3602
  * <p>Represents the input to <a>DescribeDBSubnetGroups</a>.</p>
@@ -3607,12 +3607,12 @@ export interface DescribeDBSubnetGroupsMessage {
3607
3607
  * <p>The name of the subnet group to return details for.</p>
3608
3608
  * @public
3609
3609
  */
3610
- DBSubnetGroupName?: string;
3610
+ DBSubnetGroupName?: string | undefined;
3611
3611
  /**
3612
3612
  * <p>This parameter is not currently supported.</p>
3613
3613
  * @public
3614
3614
  */
3615
- Filters?: Filter[];
3615
+ Filters?: Filter[] | undefined;
3616
3616
  /**
3617
3617
  * <p> The maximum number of records to include in the response. If more records exist than
3618
3618
  * the specified <code>MaxRecords</code> value, a pagination token (marker) is included
@@ -3621,14 +3621,14 @@ export interface DescribeDBSubnetGroupsMessage {
3621
3621
  * <p>Constraints: Minimum 20, maximum 100.</p>
3622
3622
  * @public
3623
3623
  */
3624
- MaxRecords?: number;
3624
+ MaxRecords?: number | undefined;
3625
3625
  /**
3626
3626
  * <p>An optional pagination token provided by a previous request. If this parameter is specified, the response
3627
3627
  * includes only records beyond the marker, up to the value specified by
3628
3628
  * <code>MaxRecords</code>.</p>
3629
3629
  * @public
3630
3630
  */
3631
- Marker?: string;
3631
+ Marker?: string | undefined;
3632
3632
  }
3633
3633
  /**
3634
3634
  * <p>Represents the input to <a>DescribeEngineDefaultClusterParameters</a>.</p>
@@ -3645,7 +3645,7 @@ export interface DescribeEngineDefaultClusterParametersMessage {
3645
3645
  * <p>This parameter is not currently supported.</p>
3646
3646
  * @public
3647
3647
  */
3648
- Filters?: Filter[];
3648
+ Filters?: Filter[] | undefined;
3649
3649
  /**
3650
3650
  * <p> The maximum number of records to include in the response. If more records exist than
3651
3651
  * the specified <code>MaxRecords</code> value, a pagination token (marker) is included
@@ -3654,14 +3654,14 @@ export interface DescribeEngineDefaultClusterParametersMessage {
3654
3654
  * <p>Constraints: Minimum 20, maximum 100.</p>
3655
3655
  * @public
3656
3656
  */
3657
- MaxRecords?: number;
3657
+ MaxRecords?: number | undefined;
3658
3658
  /**
3659
3659
  * <p>An optional pagination token provided by a previous request. If this parameter is specified, the response
3660
3660
  * includes only records beyond the marker, up to the value specified by
3661
3661
  * <code>MaxRecords</code>.</p>
3662
3662
  * @public
3663
3663
  */
3664
- Marker?: string;
3664
+ Marker?: string | undefined;
3665
3665
  }
3666
3666
  /**
3667
3667
  * <p>Contains the result of a successful invocation of the
@@ -3673,19 +3673,19 @@ export interface EngineDefaults {
3673
3673
  * <p>The name of the cluster parameter group family to return the engine parameter information for.</p>
3674
3674
  * @public
3675
3675
  */
3676
- DBParameterGroupFamily?: string;
3676
+ DBParameterGroupFamily?: string | undefined;
3677
3677
  /**
3678
3678
  * <p>An optional pagination token provided by a previous request. If this parameter is specified, the response
3679
3679
  * includes only records beyond the marker, up to the value specified by
3680
3680
  * <code>MaxRecords</code>.</p>
3681
3681
  * @public
3682
3682
  */
3683
- Marker?: string;
3683
+ Marker?: string | undefined;
3684
3684
  /**
3685
3685
  * <p>The parameters of a particular cluster parameter group family.</p>
3686
3686
  * @public
3687
3687
  */
3688
- Parameters?: Parameter[];
3688
+ Parameters?: Parameter[] | undefined;
3689
3689
  }
3690
3690
  /**
3691
3691
  * @public
@@ -3696,7 +3696,7 @@ export interface DescribeEngineDefaultClusterParametersResult {
3696
3696
  * <code>DescribeEngineDefaultClusterParameters</code> operation. </p>
3697
3697
  * @public
3698
3698
  */
3699
- EngineDefaults?: EngineDefaults;
3699
+ EngineDefaults?: EngineDefaults | undefined;
3700
3700
  }
3701
3701
  /**
3702
3702
  * <p>Represents the input to <a>DescribeEventCategories</a>.</p>
@@ -3709,12 +3709,12 @@ export interface DescribeEventCategoriesMessage {
3709
3709
  * </p>
3710
3710
  * @public
3711
3711
  */
3712
- SourceType?: string;
3712
+ SourceType?: string | undefined;
3713
3713
  /**
3714
3714
  * <p>This parameter is not currently supported.</p>
3715
3715
  * @public
3716
3716
  */
3717
- Filters?: Filter[];
3717
+ Filters?: Filter[] | undefined;
3718
3718
  }
3719
3719
  /**
3720
3720
  * <p>An event source type, accompanied by one or more event category names.</p>
@@ -3725,12 +3725,12 @@ export interface EventCategoriesMap {
3725
3725
  * <p>The source type that the returned categories belong to.</p>
3726
3726
  * @public
3727
3727
  */
3728
- SourceType?: string;
3728
+ SourceType?: string | undefined;
3729
3729
  /**
3730
3730
  * <p>The event categories for the specified source type.</p>
3731
3731
  * @public
3732
3732
  */
3733
- EventCategories?: string[];
3733
+ EventCategories?: string[] | undefined;
3734
3734
  }
3735
3735
  /**
3736
3736
  * <p>Represents the output of <a>DescribeEventCategories</a>.</p>
@@ -3741,7 +3741,7 @@ export interface EventCategoriesMessage {
3741
3741
  * <p>A list of event category maps.</p>
3742
3742
  * @public
3743
3743
  */
3744
- EventCategoriesMapList?: EventCategoriesMap[];
3744
+ EventCategoriesMapList?: EventCategoriesMap[] | undefined;
3745
3745
  }
3746
3746
  /**
3747
3747
  * @public
@@ -3793,42 +3793,42 @@ export interface DescribeEventsMessage {
3793
3793
  * </ul>
3794
3794
  * @public
3795
3795
  */
3796
- SourceIdentifier?: string;
3796
+ SourceIdentifier?: string | undefined;
3797
3797
  /**
3798
3798
  * <p>The event source to retrieve events for. If no value is specified, all events are returned.</p>
3799
3799
  * @public
3800
3800
  */
3801
- SourceType?: SourceType;
3801
+ SourceType?: SourceType | undefined;
3802
3802
  /**
3803
3803
  * <p> The beginning of the time interval to retrieve events for, specified in ISO 8601 format. </p>
3804
3804
  * <p>Example: 2009-07-08T18:00Z</p>
3805
3805
  * @public
3806
3806
  */
3807
- StartTime?: Date;
3807
+ StartTime?: Date | undefined;
3808
3808
  /**
3809
3809
  * <p> The end of the time interval for which to retrieve events, specified in ISO 8601
3810
3810
  * format. </p>
3811
3811
  * <p>Example: 2009-07-08T18:00Z</p>
3812
3812
  * @public
3813
3813
  */
3814
- EndTime?: Date;
3814
+ EndTime?: Date | undefined;
3815
3815
  /**
3816
3816
  * <p>The number of minutes to retrieve events for.</p>
3817
3817
  * <p>Default: 60</p>
3818
3818
  * @public
3819
3819
  */
3820
- Duration?: number;
3820
+ Duration?: number | undefined;
3821
3821
  /**
3822
3822
  * <p>A list of event categories that trigger notifications for an event notification
3823
3823
  * subscription.</p>
3824
3824
  * @public
3825
3825
  */
3826
- EventCategories?: string[];
3826
+ EventCategories?: string[] | undefined;
3827
3827
  /**
3828
3828
  * <p>This parameter is not currently supported.</p>
3829
3829
  * @public
3830
3830
  */
3831
- Filters?: Filter[];
3831
+ Filters?: Filter[] | undefined;
3832
3832
  /**
3833
3833
  * <p> The maximum number of records to include in the response. If more records exist than
3834
3834
  * the specified <code>MaxRecords</code> value, a pagination token (marker) is included
@@ -3837,14 +3837,14 @@ export interface DescribeEventsMessage {
3837
3837
  * <p>Constraints: Minimum 20, maximum 100.</p>
3838
3838
  * @public
3839
3839
  */
3840
- MaxRecords?: number;
3840
+ MaxRecords?: number | undefined;
3841
3841
  /**
3842
3842
  * <p>An optional pagination token provided by a previous request. If this parameter is specified, the response
3843
3843
  * includes only records beyond the marker, up to the value specified by
3844
3844
  * <code>MaxRecords</code>.</p>
3845
3845
  * @public
3846
3846
  */
3847
- Marker?: string;
3847
+ Marker?: string | undefined;
3848
3848
  }
3849
3849
  /**
3850
3850
  * <p>Detailed information about an event.</p>
@@ -3855,32 +3855,32 @@ export interface Event {
3855
3855
  * <p>Provides the identifier for the source of the event.</p>
3856
3856
  * @public
3857
3857
  */
3858
- SourceIdentifier?: string;
3858
+ SourceIdentifier?: string | undefined;
3859
3859
  /**
3860
3860
  * <p>Specifies the source type for this event.</p>
3861
3861
  * @public
3862
3862
  */
3863
- SourceType?: SourceType;
3863
+ SourceType?: SourceType | undefined;
3864
3864
  /**
3865
3865
  * <p>Provides the text of this event.</p>
3866
3866
  * @public
3867
3867
  */
3868
- Message?: string;
3868
+ Message?: string | undefined;
3869
3869
  /**
3870
3870
  * <p>Specifies the category for the event.</p>
3871
3871
  * @public
3872
3872
  */
3873
- EventCategories?: string[];
3873
+ EventCategories?: string[] | undefined;
3874
3874
  /**
3875
3875
  * <p>Specifies the date and time of the event.</p>
3876
3876
  * @public
3877
3877
  */
3878
- Date?: Date;
3878
+ Date?: Date | undefined;
3879
3879
  /**
3880
3880
  * <p>The Amazon Resource Name (ARN) for the event.</p>
3881
3881
  * @public
3882
3882
  */
3883
- SourceArn?: string;
3883
+ SourceArn?: string | undefined;
3884
3884
  }
3885
3885
  /**
3886
3886
  * <p>Represents the output of <a>DescribeEvents</a>.</p>
@@ -3893,12 +3893,12 @@ export interface EventsMessage {
3893
3893
  * <code>MaxRecords</code>.</p>
3894
3894
  * @public
3895
3895
  */
3896
- Marker?: string;
3896
+ Marker?: string | undefined;
3897
3897
  /**
3898
3898
  * <p>Detailed information about one or more events. </p>
3899
3899
  * @public
3900
3900
  */
3901
- Events?: Event[];
3901
+ Events?: Event[] | undefined;
3902
3902
  }
3903
3903
  /**
3904
3904
  * <p>Represents the input to <a>DescribeEventSubscriptions</a>.</p>
@@ -3910,12 +3910,12 @@ export interface DescribeEventSubscriptionsMessage {
3910
3910
  * describe.</p>
3911
3911
  * @public
3912
3912
  */
3913
- SubscriptionName?: string;
3913
+ SubscriptionName?: string | undefined;
3914
3914
  /**
3915
3915
  * <p>This parameter is not currently supported.</p>
3916
3916
  * @public
3917
3917
  */
3918
- Filters?: Filter[];
3918
+ Filters?: Filter[] | undefined;
3919
3919
  /**
3920
3920
  * <p> The maximum number of records to include in the response. If more records exist than
3921
3921
  * the specified <code>MaxRecords</code> value, a pagination token (marker) is included
@@ -3924,14 +3924,14 @@ export interface DescribeEventSubscriptionsMessage {
3924
3924
  * <p>Constraints: Minimum 20, maximum 100.</p>
3925
3925
  * @public
3926
3926
  */
3927
- MaxRecords?: number;
3927
+ MaxRecords?: number | undefined;
3928
3928
  /**
3929
3929
  * <p>An optional pagination token provided by a previous request. If this parameter is specified, the response
3930
3930
  * includes only records beyond the marker, up to the value specified by
3931
3931
  * <code>MaxRecords</code>.</p>
3932
3932
  * @public
3933
3933
  */
3934
- Marker?: string;
3934
+ Marker?: string | undefined;
3935
3935
  }
3936
3936
  /**
3937
3937
  * <p>Represents the output of <a>DescribeEventSubscriptions</a>.</p>
@@ -3944,12 +3944,12 @@ export interface EventSubscriptionsMessage {
3944
3944
  * <code>MaxRecords</code>.</p>
3945
3945
  * @public
3946
3946
  */
3947
- Marker?: string;
3947
+ Marker?: string | undefined;
3948
3948
  /**
3949
3949
  * <p>A list of event subscriptions.</p>
3950
3950
  * @public
3951
3951
  */
3952
- EventSubscriptionsList?: EventSubscription[];
3952
+ EventSubscriptionsList?: EventSubscription[] | undefined;
3953
3953
  }
3954
3954
  /**
3955
3955
  * @public
@@ -3959,23 +3959,23 @@ export interface DescribeGlobalClustersMessage {
3959
3959
  * <p>The user-supplied cluster identifier. If this parameter is specified, information from only the specific cluster is returned. This parameter isn't case-sensitive.</p>
3960
3960
  * @public
3961
3961
  */
3962
- GlobalClusterIdentifier?: string;
3962
+ GlobalClusterIdentifier?: string | undefined;
3963
3963
  /**
3964
3964
  * <p>A filter that specifies one or more global DB clusters to describe.</p>
3965
3965
  * <p>Supported filters: <code>db-cluster-id</code> accepts cluster identifiers and cluster Amazon Resource Names (ARNs). The results list will only include information about the clusters identified by these ARNs.</p>
3966
3966
  * @public
3967
3967
  */
3968
- Filters?: Filter[];
3968
+ Filters?: Filter[] | undefined;
3969
3969
  /**
3970
3970
  * <p>The maximum number of records to include in the response. If more records exist than the specified <code>MaxRecords</code> value, a pagination token called a marker is included in the response so that you can retrieve the remaining results. </p>
3971
3971
  * @public
3972
3972
  */
3973
- MaxRecords?: number;
3973
+ MaxRecords?: number | undefined;
3974
3974
  /**
3975
3975
  * <p>An optional pagination token provided by a previous <code>DescribeGlobalClusters</code> request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by <code>MaxRecords</code>.</p>
3976
3976
  * @public
3977
3977
  */
3978
- Marker?: string;
3978
+ Marker?: string | undefined;
3979
3979
  }
3980
3980
  /**
3981
3981
  * @public
@@ -3985,12 +3985,12 @@ export interface GlobalClustersMessage {
3985
3985
  * <p></p>
3986
3986
  * @public
3987
3987
  */
3988
- Marker?: string;
3988
+ Marker?: string | undefined;
3989
3989
  /**
3990
3990
  * <p></p>
3991
3991
  * @public
3992
3992
  */
3993
- GlobalClusters?: GlobalCluster[];
3993
+ GlobalClusters?: GlobalCluster[] | undefined;
3994
3994
  }
3995
3995
  /**
3996
3996
  * <p>Represents the input to <a>DescribeOrderableDBInstanceOptions</a>.</p>
@@ -4007,30 +4007,30 @@ export interface DescribeOrderableDBInstanceOptionsMessage {
4007
4007
  * offerings that match the specified engine version.</p>
4008
4008
  * @public
4009
4009
  */
4010
- EngineVersion?: string;
4010
+ EngineVersion?: string | undefined;
4011
4011
  /**
4012
4012
  * <p>The instance class filter value. Specify this parameter to show only the available
4013
4013
  * offerings that match the specified instance class.</p>
4014
4014
  * @public
4015
4015
  */
4016
- DBInstanceClass?: string;
4016
+ DBInstanceClass?: string | undefined;
4017
4017
  /**
4018
4018
  * <p>The license model filter value. Specify this parameter to show only the available
4019
4019
  * offerings that match the specified license model.</p>
4020
4020
  * @public
4021
4021
  */
4022
- LicenseModel?: string;
4022
+ LicenseModel?: string | undefined;
4023
4023
  /**
4024
4024
  * <p>The virtual private cloud (VPC) filter value. Specify this parameter to show only the
4025
4025
  * available VPC or non-VPC offerings.</p>
4026
4026
  * @public
4027
4027
  */
4028
- Vpc?: boolean;
4028
+ Vpc?: boolean | undefined;
4029
4029
  /**
4030
4030
  * <p>This parameter is not currently supported.</p>
4031
4031
  * @public
4032
4032
  */
4033
- Filters?: Filter[];
4033
+ Filters?: Filter[] | undefined;
4034
4034
  /**
4035
4035
  * <p> The maximum number of records to include in the response. If more records exist than
4036
4036
  * the specified <code>MaxRecords</code> value, a pagination token (marker) is included
@@ -4039,14 +4039,14 @@ export interface DescribeOrderableDBInstanceOptionsMessage {
4039
4039
  * <p>Constraints: Minimum 20, maximum 100.</p>
4040
4040
  * @public
4041
4041
  */
4042
- MaxRecords?: number;
4042
+ MaxRecords?: number | undefined;
4043
4043
  /**
4044
4044
  * <p>An optional pagination token provided by a previous request. If this parameter is specified, the response
4045
4045
  * includes only records beyond the marker, up to the value specified by
4046
4046
  * <code>MaxRecords</code>.</p>
4047
4047
  * @public
4048
4048
  */
4049
- Marker?: string;
4049
+ Marker?: string | undefined;
4050
4050
  }
4051
4051
  /**
4052
4052
  * <p>The options that are available for an instance.</p>
@@ -4057,37 +4057,37 @@ export interface OrderableDBInstanceOption {
4057
4057
  * <p>The engine type of an instance.</p>
4058
4058
  * @public
4059
4059
  */
4060
- Engine?: string;
4060
+ Engine?: string | undefined;
4061
4061
  /**
4062
4062
  * <p>The engine version of an instance.</p>
4063
4063
  * @public
4064
4064
  */
4065
- EngineVersion?: string;
4065
+ EngineVersion?: string | undefined;
4066
4066
  /**
4067
4067
  * <p>The instance class for an instance.</p>
4068
4068
  * @public
4069
4069
  */
4070
- DBInstanceClass?: string;
4070
+ DBInstanceClass?: string | undefined;
4071
4071
  /**
4072
4072
  * <p>The license model for an instance.</p>
4073
4073
  * @public
4074
4074
  */
4075
- LicenseModel?: string;
4075
+ LicenseModel?: string | undefined;
4076
4076
  /**
4077
4077
  * <p>A list of Availability Zones for an instance.</p>
4078
4078
  * @public
4079
4079
  */
4080
- AvailabilityZones?: AvailabilityZone[];
4080
+ AvailabilityZones?: AvailabilityZone[] | undefined;
4081
4081
  /**
4082
4082
  * <p>Indicates whether an instance is in a virtual private cloud (VPC).</p>
4083
4083
  * @public
4084
4084
  */
4085
- Vpc?: boolean;
4085
+ Vpc?: boolean | undefined;
4086
4086
  /**
4087
4087
  * <p>The storage type to associate with the DB cluster</p>
4088
4088
  * @public
4089
4089
  */
4090
- StorageType?: string;
4090
+ StorageType?: string | undefined;
4091
4091
  }
4092
4092
  /**
4093
4093
  * <p>Represents the output of <a>DescribeOrderableDBInstanceOptions</a>.</p>
@@ -4098,14 +4098,14 @@ export interface OrderableDBInstanceOptionsMessage {
4098
4098
  * <p>The options that are available for a particular orderable instance.</p>
4099
4099
  * @public
4100
4100
  */
4101
- OrderableDBInstanceOptions?: OrderableDBInstanceOption[];
4101
+ OrderableDBInstanceOptions?: OrderableDBInstanceOption[] | undefined;
4102
4102
  /**
4103
4103
  * <p>An optional pagination token provided by a previous request. If this parameter is specified, the response
4104
4104
  * includes only records beyond the marker, up to the value specified by
4105
4105
  * <code>MaxRecords</code>.</p>
4106
4106
  * @public
4107
4107
  */
4108
- Marker?: string;
4108
+ Marker?: string | undefined;
4109
4109
  }
4110
4110
  /**
4111
4111
  * <p>Represents the input to <a>DescribePendingMaintenanceActions</a>.</p>
@@ -4116,7 +4116,7 @@ export interface DescribePendingMaintenanceActionsMessage {
4116
4116
  * <p>The ARN of a resource to return pending maintenance actions for.</p>
4117
4117
  * @public
4118
4118
  */
4119
- ResourceIdentifier?: string;
4119
+ ResourceIdentifier?: string | undefined;
4120
4120
  /**
4121
4121
  * <p>A filter that specifies one or more resources to return pending maintenance actions
4122
4122
  * for.</p>
@@ -4137,14 +4137,14 @@ export interface DescribePendingMaintenanceActionsMessage {
4137
4137
  * </ul>
4138
4138
  * @public
4139
4139
  */
4140
- Filters?: Filter[];
4140
+ Filters?: Filter[] | undefined;
4141
4141
  /**
4142
4142
  * <p>An optional pagination token provided by a previous request. If this parameter is specified, the response
4143
4143
  * includes only records beyond the marker, up to the value specified by
4144
4144
  * <code>MaxRecords</code>.</p>
4145
4145
  * @public
4146
4146
  */
4147
- Marker?: string;
4147
+ Marker?: string | undefined;
4148
4148
  /**
4149
4149
  * <p> The maximum number of records to include in the response. If more records exist than
4150
4150
  * the specified <code>MaxRecords</code> value, a pagination token (marker) is included
@@ -4153,7 +4153,7 @@ export interface DescribePendingMaintenanceActionsMessage {
4153
4153
  * <p>Constraints: Minimum 20, maximum 100.</p>
4154
4154
  * @public
4155
4155
  */
4156
- MaxRecords?: number;
4156
+ MaxRecords?: number | undefined;
4157
4157
  }
4158
4158
  /**
4159
4159
  * <p>Represents the output of <a>DescribePendingMaintenanceActions</a>.</p>
@@ -4164,14 +4164,14 @@ export interface PendingMaintenanceActionsMessage {
4164
4164
  * <p>The maintenance actions to be applied.</p>
4165
4165
  * @public
4166
4166
  */
4167
- PendingMaintenanceActions?: ResourcePendingMaintenanceActions[];
4167
+ PendingMaintenanceActions?: ResourcePendingMaintenanceActions[] | undefined;
4168
4168
  /**
4169
4169
  * <p>An optional pagination token provided by a previous request. If this parameter is specified, the response
4170
4170
  * includes only records beyond the marker, up to the value specified by
4171
4171
  * <code>MaxRecords</code>.</p>
4172
4172
  * @public
4173
4173
  */
4174
- Marker?: string;
4174
+ Marker?: string | undefined;
4175
4175
  }
4176
4176
  /**
4177
4177
  * <p>Represents the input to <a>FailoverDBCluster</a>.</p>
@@ -4188,14 +4188,14 @@ export interface FailoverDBClusterMessage {
4188
4188
  * </ul>
4189
4189
  * @public
4190
4190
  */
4191
- DBClusterIdentifier?: string;
4191
+ DBClusterIdentifier?: string | undefined;
4192
4192
  /**
4193
4193
  * <p>The name of the instance to promote to the primary instance.</p>
4194
4194
  * <p>You must specify the instance identifier for an Amazon DocumentDB replica in the cluster. For
4195
4195
  * example, <code>mydbcluster-replica1</code>.</p>
4196
4196
  * @public
4197
4197
  */
4198
- TargetDBInstanceIdentifier?: string;
4198
+ TargetDBInstanceIdentifier?: string | undefined;
4199
4199
  }
4200
4200
  /**
4201
4201
  * @public
@@ -4205,7 +4205,7 @@ export interface FailoverDBClusterResult {
4205
4205
  * <p>Detailed information about a cluster. </p>
4206
4206
  * @public
4207
4207
  */
4208
- DBCluster?: DBCluster;
4208
+ DBCluster?: DBCluster | undefined;
4209
4209
  }
4210
4210
  /**
4211
4211
  * @public
@@ -4257,7 +4257,7 @@ export interface FailoverGlobalClusterMessage {
4257
4257
  * </ul>
4258
4258
  * @public
4259
4259
  */
4260
- AllowDataLoss?: boolean;
4260
+ AllowDataLoss?: boolean | undefined;
4261
4261
  /**
4262
4262
  * <p>Specifies whether to switch over this global database cluster.</p>
4263
4263
  * <p>Constraints:</p>
@@ -4268,7 +4268,7 @@ export interface FailoverGlobalClusterMessage {
4268
4268
  * </ul>
4269
4269
  * @public
4270
4270
  */
4271
- Switchover?: boolean;
4271
+ Switchover?: boolean | undefined;
4272
4272
  }
4273
4273
  /**
4274
4274
  * @public
@@ -4278,7 +4278,7 @@ export interface FailoverGlobalClusterResult {
4278
4278
  * <p>A data type representing an Amazon DocumentDB global cluster.</p>
4279
4279
  * @public
4280
4280
  */
4281
- GlobalCluster?: GlobalCluster;
4281
+ GlobalCluster?: GlobalCluster | undefined;
4282
4282
  }
4283
4283
  /**
4284
4284
  * <p>Represents the input to <a>ListTagsForResource</a>.</p>
@@ -4295,7 +4295,7 @@ export interface ListTagsForResourceMessage {
4295
4295
  * <p>This parameter is not currently supported.</p>
4296
4296
  * @public
4297
4297
  */
4298
- Filters?: Filter[];
4298
+ Filters?: Filter[] | undefined;
4299
4299
  }
4300
4300
  /**
4301
4301
  * <p>Represents the output of <a>ListTagsForResource</a>.</p>
@@ -4306,7 +4306,7 @@ export interface TagListMessage {
4306
4306
  * <p>A list of one or more tags.</p>
4307
4307
  * @public
4308
4308
  */
4309
- TagList?: Tag[];
4309
+ TagList?: Tag[] | undefined;
4310
4310
  }
4311
4311
  /**
4312
4312
  * <p>The state of the security group doesn't allow deletion.</p>
@@ -4333,12 +4333,12 @@ export interface CloudwatchLogsExportConfiguration {
4333
4333
  * <p>The list of log types to enable.</p>
4334
4334
  * @public
4335
4335
  */
4336
- EnableLogTypes?: string[];
4336
+ EnableLogTypes?: string[] | undefined;
4337
4337
  /**
4338
4338
  * <p>The list of log types to disable.</p>
4339
4339
  * @public
4340
4340
  */
4341
- DisableLogTypes?: string[];
4341
+ DisableLogTypes?: string[] | undefined;
4342
4342
  }
4343
4343
  /**
4344
4344
  * <p>Represents the input to <a>ModifyDBCluster</a>.</p>
@@ -4376,7 +4376,7 @@ export interface ModifyDBClusterMessage {
4376
4376
  * </p>
4377
4377
  * @public
4378
4378
  */
4379
- NewDBClusterIdentifier?: string;
4379
+ NewDBClusterIdentifier?: string | undefined;
4380
4380
  /**
4381
4381
  * <p>A value that specifies whether the changes in this request and any pending changes are
4382
4382
  * asynchronously applied as soon as possible, regardless of the
@@ -4393,7 +4393,7 @@ export interface ModifyDBClusterMessage {
4393
4393
  * </p>
4394
4394
  * @public
4395
4395
  */
4396
- ApplyImmediately?: boolean;
4396
+ ApplyImmediately?: boolean | undefined;
4397
4397
  /**
4398
4398
  * <p>The number of days for which automated backups are retained. You must specify a
4399
4399
  * minimum value of 1.</p>
@@ -4406,25 +4406,25 @@ export interface ModifyDBClusterMessage {
4406
4406
  * </ul>
4407
4407
  * @public
4408
4408
  */
4409
- BackupRetentionPeriod?: number;
4409
+ BackupRetentionPeriod?: number | undefined;
4410
4410
  /**
4411
4411
  * <p>The name of the cluster parameter group to use for the cluster.</p>
4412
4412
  * @public
4413
4413
  */
4414
- DBClusterParameterGroupName?: string;
4414
+ DBClusterParameterGroupName?: string | undefined;
4415
4415
  /**
4416
4416
  * <p>A list of virtual private cloud (VPC) security groups that the cluster will belong
4417
4417
  * to.</p>
4418
4418
  * @public
4419
4419
  */
4420
- VpcSecurityGroupIds?: string[];
4420
+ VpcSecurityGroupIds?: string[] | undefined;
4421
4421
  /**
4422
4422
  * <p>The port number on which the cluster accepts connections.</p>
4423
4423
  * <p>Constraints: Must be a value from <code>1150</code> to <code>65535</code>. </p>
4424
4424
  * <p>Default: The same port as the original cluster.</p>
4425
4425
  * @public
4426
4426
  */
4427
- Port?: number;
4427
+ Port?: number | undefined;
4428
4428
  /**
4429
4429
  * <p>The password for the master database user. This password can contain any printable
4430
4430
  * ASCII character except forward slash (/), double quote ("), or the "at" symbol
@@ -4432,7 +4432,7 @@ export interface ModifyDBClusterMessage {
4432
4432
  * <p>Constraints: Must contain from 8 to 100 characters.</p>
4433
4433
  * @public
4434
4434
  */
4435
- MasterUserPassword?: string;
4435
+ MasterUserPassword?: string | undefined;
4436
4436
  /**
4437
4437
  * <p>The daily time range during which automated backups are created if automated backups
4438
4438
  * are enabled, using the <code>BackupRetentionPeriod</code> parameter. </p>
@@ -4455,7 +4455,7 @@ export interface ModifyDBClusterMessage {
4455
4455
  * </ul>
4456
4456
  * @public
4457
4457
  */
4458
- PreferredBackupWindow?: string;
4458
+ PreferredBackupWindow?: string | undefined;
4459
4459
  /**
4460
4460
  * <p>The weekly time range during which system maintenance can occur, in Universal
4461
4461
  * Coordinated Time (UTC).</p>
@@ -4467,7 +4467,7 @@ export interface ModifyDBClusterMessage {
4467
4467
  * <p>Constraints: Minimum 30-minute window.</p>
4468
4468
  * @public
4469
4469
  */
4470
- PreferredMaintenanceWindow?: string;
4470
+ PreferredMaintenanceWindow?: string | undefined;
4471
4471
  /**
4472
4472
  * <p>The configuration setting for the log types to be enabled for export to Amazon
4473
4473
  * CloudWatch Logs for a specific instance or cluster. The
@@ -4475,7 +4475,7 @@ export interface ModifyDBClusterMessage {
4475
4475
  * logs are exported (or not exported) to CloudWatch Logs.</p>
4476
4476
  * @public
4477
4477
  */
4478
- CloudwatchLogsExportConfiguration?: CloudwatchLogsExportConfiguration;
4478
+ CloudwatchLogsExportConfiguration?: CloudwatchLogsExportConfiguration | undefined;
4479
4479
  /**
4480
4480
  * <p>The version number of the database engine to which you want to upgrade.
4481
4481
  * Changing this parameter results in an outage. The change is applied during
@@ -4486,7 +4486,7 @@ export interface ModifyDBClusterMessage {
4486
4486
  * </p>
4487
4487
  * @public
4488
4488
  */
4489
- EngineVersion?: string;
4489
+ EngineVersion?: string | undefined;
4490
4490
  /**
4491
4491
  * <p>A value that indicates whether major version upgrades are allowed.</p>
4492
4492
  * <p>Constraints: You must allow major version upgrades when specifying a value for the
@@ -4494,7 +4494,7 @@ export interface ModifyDBClusterMessage {
4494
4494
  * cluster's current version.</p>
4495
4495
  * @public
4496
4496
  */
4497
- AllowMajorVersionUpgrade?: boolean;
4497
+ AllowMajorVersionUpgrade?: boolean | undefined;
4498
4498
  /**
4499
4499
  * <p>Specifies whether this cluster can be deleted. If <code>DeletionProtection</code> is
4500
4500
  * enabled, the cluster cannot be deleted unless it is modified and
@@ -4502,7 +4502,7 @@ export interface ModifyDBClusterMessage {
4502
4502
  * protects clusters from being accidentally deleted.</p>
4503
4503
  * @public
4504
4504
  */
4505
- DeletionProtection?: boolean;
4505
+ DeletionProtection?: boolean | undefined;
4506
4506
  /**
4507
4507
  * <p>The storage type to associate with the DB cluster.</p>
4508
4508
  * <p>For information on storage types for Amazon DocumentDB clusters, see
@@ -4513,7 +4513,7 @@ export interface ModifyDBClusterMessage {
4513
4513
  * </p>
4514
4514
  * @public
4515
4515
  */
4516
- StorageType?: string;
4516
+ StorageType?: string | undefined;
4517
4517
  }
4518
4518
  /**
4519
4519
  * @public
@@ -4523,7 +4523,7 @@ export interface ModifyDBClusterResult {
4523
4523
  * <p>Detailed information about a cluster. </p>
4524
4524
  * @public
4525
4525
  */
4526
- DBCluster?: DBCluster;
4526
+ DBCluster?: DBCluster | undefined;
4527
4527
  }
4528
4528
  /**
4529
4529
  * <p>Contains the name of a cluster parameter group.</p>
@@ -4549,7 +4549,7 @@ export interface DBClusterParameterGroupNameMessage {
4549
4549
  * </note>
4550
4550
  * @public
4551
4551
  */
4552
- DBClusterParameterGroupName?: string;
4552
+ DBClusterParameterGroupName?: string | undefined;
4553
4553
  }
4554
4554
  /**
4555
4555
  * <p>Represents the input to <a>ModifyDBClusterParameterGroup</a>.</p>
@@ -4589,13 +4589,13 @@ export interface ModifyDBClusterSnapshotAttributeMessage {
4589
4589
  * <p>To authorize other Amazon Web Services accounts to copy or restore a manual cluster snapshot, set this list to include one or more Amazon Web Services account IDs. To make the manual cluster snapshot restorable by any Amazon Web Services account, set it to <code>all</code>. Do not add the <code>all</code> value for any manual cluster snapshots that contain private information that you don't want to be available to all Amazon Web Services accounts.</p>
4590
4590
  * @public
4591
4591
  */
4592
- ValuesToAdd?: string[];
4592
+ ValuesToAdd?: string[] | undefined;
4593
4593
  /**
4594
4594
  * <p>A list of cluster snapshot attributes to remove from the attribute specified by <code>AttributeName</code>.</p>
4595
4595
  * <p>To remove authorization for other Amazon Web Services accounts to copy or restore a manual cluster snapshot, set this list to include one or more Amazon Web Services account identifiers. To remove authorization for any Amazon Web Services account to copy or restore the cluster snapshot, set it to <code>all</code> . If you specify <code>all</code>, an Amazon Web Services account whose account ID is explicitly added to the <code>restore</code> attribute can still copy or restore a manual cluster snapshot.</p>
4596
4596
  * @public
4597
4597
  */
4598
- ValuesToRemove?: string[];
4598
+ ValuesToRemove?: string[] | undefined;
4599
4599
  }
4600
4600
  /**
4601
4601
  * @public
@@ -4606,7 +4606,7 @@ export interface ModifyDBClusterSnapshotAttributeResult {
4606
4606
  * snapshot.</p>
4607
4607
  * @public
4608
4608
  */
4609
- DBClusterSnapshotAttributesResult?: DBClusterSnapshotAttributesResult;
4609
+ DBClusterSnapshotAttributesResult?: DBClusterSnapshotAttributesResult | undefined;
4610
4610
  }
4611
4611
  /**
4612
4612
  * <p>You have exceeded the maximum number of accounts that you can share a manual DB
@@ -4658,7 +4658,7 @@ export interface ModifyDBInstanceMessage {
4658
4658
  * <p>Default: Uses existing setting.</p>
4659
4659
  * @public
4660
4660
  */
4661
- DBInstanceClass?: string;
4661
+ DBInstanceClass?: string | undefined;
4662
4662
  /**
4663
4663
  * <p>Specifies whether the modifications in this request and any pending modifications are
4664
4664
  * asynchronously applied as soon as possible, regardless of the
@@ -4670,7 +4670,7 @@ export interface ModifyDBInstanceMessage {
4670
4670
  * </p>
4671
4671
  * @public
4672
4672
  */
4673
- ApplyImmediately?: boolean;
4673
+ ApplyImmediately?: boolean | undefined;
4674
4674
  /**
4675
4675
  * <p>The weekly time range (in UTC) during which system maintenance can occur, which might
4676
4676
  * result in an outage. Changing this parameter doesn't result in an outage except in the
@@ -4687,12 +4687,12 @@ export interface ModifyDBInstanceMessage {
4687
4687
  * <p>Constraints: Must be at least 30 minutes.</p>
4688
4688
  * @public
4689
4689
  */
4690
- PreferredMaintenanceWindow?: string;
4690
+ PreferredMaintenanceWindow?: string | undefined;
4691
4691
  /**
4692
4692
  * <p>This parameter does not apply to Amazon DocumentDB. Amazon DocumentDB does not perform minor version upgrades regardless of the value set.</p>
4693
4693
  * @public
4694
4694
  */
4695
- AutoMinorVersionUpgrade?: boolean;
4695
+ AutoMinorVersionUpgrade?: boolean | undefined;
4696
4696
  /**
4697
4697
  * <p> The new instance identifier for the instance when renaming an instance. When you change the instance identifier, an instance reboot occurs immediately if you set <code>Apply Immediately</code> to <code>true</code>. It occurs during the next maintenance window if you set <code>Apply Immediately</code> to <code>false</code>. This value is stored as a lowercase string. </p>
4698
4698
  * <p>Constraints:</p>
@@ -4711,31 +4711,31 @@ export interface ModifyDBInstanceMessage {
4711
4711
  * </p>
4712
4712
  * @public
4713
4713
  */
4714
- NewDBInstanceIdentifier?: string;
4714
+ NewDBInstanceIdentifier?: string | undefined;
4715
4715
  /**
4716
4716
  * <p>Indicates the certificate that needs to be associated with the instance.</p>
4717
4717
  * @public
4718
4718
  */
4719
- CACertificateIdentifier?: string;
4719
+ CACertificateIdentifier?: string | undefined;
4720
4720
  /**
4721
4721
  * <p>A value that indicates whether to copy all tags from the DB instance to snapshots of the DB instance. By default, tags are not copied.</p>
4722
4722
  * @public
4723
4723
  */
4724
- CopyTagsToSnapshot?: boolean;
4724
+ CopyTagsToSnapshot?: boolean | undefined;
4725
4725
  /**
4726
4726
  * <p>A value that specifies the order in which an Amazon DocumentDB replica is promoted to the primary instance after a failure of the existing primary instance.</p>
4727
4727
  * <p>Default: 1</p>
4728
4728
  * <p>Valid values: 0-15</p>
4729
4729
  * @public
4730
4730
  */
4731
- PromotionTier?: number;
4731
+ PromotionTier?: number | undefined;
4732
4732
  /**
4733
4733
  * <p>A value that indicates whether to enable Performance Insights for the DB Instance. For
4734
4734
  * more information, see <a href="https://docs.aws.amazon.com/documentdb/latest/developerguide/performance-insights.html">Using Amazon
4735
4735
  * Performance Insights</a>.</p>
4736
4736
  * @public
4737
4737
  */
4738
- EnablePerformanceInsights?: boolean;
4738
+ EnablePerformanceInsights?: boolean | undefined;
4739
4739
  /**
4740
4740
  * <p>The KMS key identifier for encryption of Performance Insights
4741
4741
  * data.</p>
@@ -4747,7 +4747,7 @@ export interface ModifyDBInstanceMessage {
4747
4747
  * default KMS key for each Amazon Web Services region.</p>
4748
4748
  * @public
4749
4749
  */
4750
- PerformanceInsightsKMSKeyId?: string;
4750
+ PerformanceInsightsKMSKeyId?: string | undefined;
4751
4751
  /**
4752
4752
  * <p>Specifies whether the DB instance is restarted when you rotate your
4753
4753
  * SSL/TLS certificate.</p>
@@ -4763,7 +4763,7 @@ export interface ModifyDBInstanceMessage {
4763
4763
  * Guide</i>.</p>
4764
4764
  * @public
4765
4765
  */
4766
- CertificateRotationRestart?: boolean;
4766
+ CertificateRotationRestart?: boolean | undefined;
4767
4767
  }
4768
4768
  /**
4769
4769
  * @public
@@ -4773,7 +4773,7 @@ export interface ModifyDBInstanceResult {
4773
4773
  * <p>Detailed information about an instance. </p>
4774
4774
  * @public
4775
4775
  */
4776
- DBInstance?: DBInstance;
4776
+ DBInstance?: DBInstance | undefined;
4777
4777
  }
4778
4778
  /**
4779
4779
  * <p>Represents the input to <a>ModifyDBSubnetGroup</a>.</p>
@@ -4792,7 +4792,7 @@ export interface ModifyDBSubnetGroupMessage {
4792
4792
  * <p>The description for the subnet group.</p>
4793
4793
  * @public
4794
4794
  */
4795
- DBSubnetGroupDescription?: string;
4795
+ DBSubnetGroupDescription?: string | undefined;
4796
4796
  /**
4797
4797
  * <p>The Amazon EC2 subnet IDs for the subnet group.</p>
4798
4798
  * @public
@@ -4807,7 +4807,7 @@ export interface ModifyDBSubnetGroupResult {
4807
4807
  * <p>Detailed information about a subnet group. </p>
4808
4808
  * @public
4809
4809
  */
4810
- DBSubnetGroup?: DBSubnetGroup;
4810
+ DBSubnetGroup?: DBSubnetGroup | undefined;
4811
4811
  }
4812
4812
  /**
4813
4813
  * <p>The subnet is already in use in the Availability Zone.</p>
@@ -4836,25 +4836,25 @@ export interface ModifyEventSubscriptionMessage {
4836
4836
  * ARN is created by Amazon SNS when you create a topic and subscribe to it.</p>
4837
4837
  * @public
4838
4838
  */
4839
- SnsTopicArn?: string;
4839
+ SnsTopicArn?: string | undefined;
4840
4840
  /**
4841
4841
  * <p>The type of source that is generating the events. For example, if you want to be notified of events generated by an instance, set this parameter to <code>db-instance</code>. If this value is not specified, all events are returned.</p>
4842
4842
  * <p>Valid values: <code>db-instance</code>, <code>db-parameter-group</code>, <code>db-security-group</code>
4843
4843
  * </p>
4844
4844
  * @public
4845
4845
  */
4846
- SourceType?: string;
4846
+ SourceType?: string | undefined;
4847
4847
  /**
4848
4848
  * <p> A list of event categories for a <code>SourceType</code> that you want to subscribe
4849
4849
  * to.</p>
4850
4850
  * @public
4851
4851
  */
4852
- EventCategories?: string[];
4852
+ EventCategories?: string[] | undefined;
4853
4853
  /**
4854
4854
  * <p> A Boolean value; set to <code>true</code> to activate the subscription. </p>
4855
4855
  * @public
4856
4856
  */
4857
- Enabled?: boolean;
4857
+ Enabled?: boolean | undefined;
4858
4858
  }
4859
4859
  /**
4860
4860
  * @public
@@ -4864,7 +4864,7 @@ export interface ModifyEventSubscriptionResult {
4864
4864
  * <p>Detailed information about an event to which you have subscribed.</p>
4865
4865
  * @public
4866
4866
  */
4867
- EventSubscription?: EventSubscription;
4867
+ EventSubscription?: EventSubscription | undefined;
4868
4868
  }
4869
4869
  /**
4870
4870
  * <p>Represents the input to <a>ModifyGlobalCluster</a>.</p>
@@ -4895,12 +4895,12 @@ export interface ModifyGlobalClusterMessage {
4895
4895
  * </p>
4896
4896
  * @public
4897
4897
  */
4898
- NewGlobalClusterIdentifier?: string;
4898
+ NewGlobalClusterIdentifier?: string | undefined;
4899
4899
  /**
4900
4900
  * <p>Indicates if the global cluster has deletion protection enabled. The global cluster can't be deleted when deletion protection is enabled. </p>
4901
4901
  * @public
4902
4902
  */
4903
- DeletionProtection?: boolean;
4903
+ DeletionProtection?: boolean | undefined;
4904
4904
  }
4905
4905
  /**
4906
4906
  * @public
@@ -4910,7 +4910,7 @@ export interface ModifyGlobalClusterResult {
4910
4910
  * <p>A data type representing an Amazon DocumentDB global cluster.</p>
4911
4911
  * @public
4912
4912
  */
4913
- GlobalCluster?: GlobalCluster;
4913
+ GlobalCluster?: GlobalCluster | undefined;
4914
4914
  }
4915
4915
  /**
4916
4916
  * <p>Represents the input to <a>RebootDBInstance</a>.</p>
@@ -4934,7 +4934,7 @@ export interface RebootDBInstanceMessage {
4934
4934
  * Multi-AZ.</p>
4935
4935
  * @public
4936
4936
  */
4937
- ForceFailover?: boolean;
4937
+ ForceFailover?: boolean | undefined;
4938
4938
  }
4939
4939
  /**
4940
4940
  * @public
@@ -4944,7 +4944,7 @@ export interface RebootDBInstanceResult {
4944
4944
  * <p>Detailed information about an instance. </p>
4945
4945
  * @public
4946
4946
  */
4947
- DBInstance?: DBInstance;
4947
+ DBInstance?: DBInstance | undefined;
4948
4948
  }
4949
4949
  /**
4950
4950
  * <p>Represents the input to <a>RemoveFromGlobalCluster</a>.</p>
@@ -4970,7 +4970,7 @@ export interface RemoveFromGlobalClusterResult {
4970
4970
  * <p>A data type representing an Amazon DocumentDB global cluster.</p>
4971
4971
  * @public
4972
4972
  */
4973
- GlobalCluster?: GlobalCluster;
4973
+ GlobalCluster?: GlobalCluster | undefined;
4974
4974
  }
4975
4975
  /**
4976
4976
  * <p>Represents the input to <a>RemoveSourceIdentifierFromSubscription</a>.</p>
@@ -4998,7 +4998,7 @@ export interface RemoveSourceIdentifierFromSubscriptionResult {
4998
4998
  * <p>Detailed information about an event to which you have subscribed.</p>
4999
4999
  * @public
5000
5000
  */
5001
- EventSubscription?: EventSubscription;
5001
+ EventSubscription?: EventSubscription | undefined;
5002
5002
  }
5003
5003
  /**
5004
5004
  * <p>Represents the input to <a>RemoveTagsFromResource</a>.</p>
@@ -5034,14 +5034,14 @@ export interface ResetDBClusterParameterGroupMessage {
5034
5034
  * <code>Parameters</code> parameter.</p>
5035
5035
  * @public
5036
5036
  */
5037
- ResetAllParameters?: boolean;
5037
+ ResetAllParameters?: boolean | undefined;
5038
5038
  /**
5039
5039
  * <p>A list of parameter names in the cluster parameter group to reset to the default
5040
5040
  * values. You can't use this parameter if the <code>ResetAllParameters</code> parameter is
5041
5041
  * set to <code>true</code>.</p>
5042
5042
  * @public
5043
5043
  */
5044
- Parameters?: Parameter[];
5044
+ Parameters?: Parameter[] | undefined;
5045
5045
  }
5046
5046
  /**
5047
5047
  * <p>The cluster doesn't have enough capacity for the current operation.</p>
@@ -5090,7 +5090,7 @@ export interface RestoreDBClusterFromSnapshotMessage {
5090
5090
  * cluster can be created in.</p>
5091
5091
  * @public
5092
5092
  */
5093
- AvailabilityZones?: string[];
5093
+ AvailabilityZones?: string[] | undefined;
5094
5094
  /**
5095
5095
  * <p>The name of the cluster to create from the snapshot or cluster snapshot. This
5096
5096
  * parameter isn't case sensitive.</p>
@@ -5135,14 +5135,14 @@ export interface RestoreDBClusterFromSnapshotMessage {
5135
5135
  * <p>The version of the database engine to use for the new cluster.</p>
5136
5136
  * @public
5137
5137
  */
5138
- EngineVersion?: string;
5138
+ EngineVersion?: string | undefined;
5139
5139
  /**
5140
5140
  * <p>The port number on which the new cluster accepts connections.</p>
5141
5141
  * <p>Constraints: Must be a value from <code>1150</code> to <code>65535</code>.</p>
5142
5142
  * <p>Default: The same port as the original cluster.</p>
5143
5143
  * @public
5144
5144
  */
5145
- Port?: number;
5145
+ Port?: number | undefined;
5146
5146
  /**
5147
5147
  * <p>The name of the subnet group to use for the new cluster.</p>
5148
5148
  * <p>Constraints: If provided, must match the name of an existing
@@ -5151,18 +5151,18 @@ export interface RestoreDBClusterFromSnapshotMessage {
5151
5151
  * </p>
5152
5152
  * @public
5153
5153
  */
5154
- DBSubnetGroupName?: string;
5154
+ DBSubnetGroupName?: string | undefined;
5155
5155
  /**
5156
5156
  * <p>A list of virtual private cloud (VPC) security groups that the new cluster will
5157
5157
  * belong to.</p>
5158
5158
  * @public
5159
5159
  */
5160
- VpcSecurityGroupIds?: string[];
5160
+ VpcSecurityGroupIds?: string[] | undefined;
5161
5161
  /**
5162
5162
  * <p>The tags to be assigned to the restored cluster.</p>
5163
5163
  * @public
5164
5164
  */
5165
- Tags?: Tag[];
5165
+ Tags?: Tag[] | undefined;
5166
5166
  /**
5167
5167
  * <p>The KMS key identifier to use when restoring an encrypted cluster from a DB snapshot or cluster snapshot.</p>
5168
5168
  * <p>The KMS key identifier is the Amazon Resource Name (ARN) for the KMS encryption key. If you are restoring a cluster with the same Amazon Web Services account that owns the KMS encryption key used to encrypt the new cluster, then you can use the KMS key alias instead of the ARN for the KMS encryption key.</p>
@@ -5180,17 +5180,17 @@ export interface RestoreDBClusterFromSnapshotMessage {
5180
5180
  * </ul>
5181
5181
  * @public
5182
5182
  */
5183
- KmsKeyId?: string;
5183
+ KmsKeyId?: string | undefined;
5184
5184
  /**
5185
5185
  * <p>A list of log types that must be enabled for exporting to Amazon CloudWatch Logs.</p>
5186
5186
  * @public
5187
5187
  */
5188
- EnableCloudwatchLogsExports?: string[];
5188
+ EnableCloudwatchLogsExports?: string[] | undefined;
5189
5189
  /**
5190
5190
  * <p>Specifies whether this cluster can be deleted. If <code>DeletionProtection</code> is enabled, the cluster cannot be deleted unless it is modified and <code>DeletionProtection</code> is disabled. <code>DeletionProtection</code> protects clusters from being accidentally deleted.</p>
5191
5191
  * @public
5192
5192
  */
5193
- DeletionProtection?: boolean;
5193
+ DeletionProtection?: boolean | undefined;
5194
5194
  /**
5195
5195
  * <p>The name of the DB cluster parameter group to associate with this DB cluster.</p>
5196
5196
  * <p>
@@ -5202,7 +5202,7 @@ export interface RestoreDBClusterFromSnapshotMessage {
5202
5202
  * hyphens.</p>
5203
5203
  * @public
5204
5204
  */
5205
- DBClusterParameterGroupName?: string;
5205
+ DBClusterParameterGroupName?: string | undefined;
5206
5206
  /**
5207
5207
  * <p>The storage type to associate with the DB cluster.</p>
5208
5208
  * <p>For information on storage types for Amazon DocumentDB clusters, see
@@ -5213,7 +5213,7 @@ export interface RestoreDBClusterFromSnapshotMessage {
5213
5213
  * </p>
5214
5214
  * @public
5215
5215
  */
5216
- StorageType?: string;
5216
+ StorageType?: string | undefined;
5217
5217
  }
5218
5218
  /**
5219
5219
  * @public
@@ -5223,7 +5223,7 @@ export interface RestoreDBClusterFromSnapshotResult {
5223
5223
  * <p>Detailed information about a cluster. </p>
5224
5224
  * @public
5225
5225
  */
5226
- DBCluster?: DBCluster;
5226
+ DBCluster?: DBCluster | undefined;
5227
5227
  }
5228
5228
  /**
5229
5229
  * <p>Represents the input to <a>RestoreDBClusterToPointInTime</a>.</p>
@@ -5266,7 +5266,7 @@ export interface RestoreDBClusterToPointInTimeMessage {
5266
5266
  * restored as a full copy of the source DB cluster.</p>
5267
5267
  * @public
5268
5268
  */
5269
- RestoreType?: string;
5269
+ RestoreType?: string | undefined;
5270
5270
  /**
5271
5271
  * <p>The identifier of the source cluster from which to restore.</p>
5272
5272
  * <p>Constraints:</p>
@@ -5300,7 +5300,7 @@ export interface RestoreDBClusterToPointInTimeMessage {
5300
5300
  * </p>
5301
5301
  * @public
5302
5302
  */
5303
- RestoreToTime?: Date;
5303
+ RestoreToTime?: Date | undefined;
5304
5304
  /**
5305
5305
  * <p>A value that is set to <code>true</code> to restore the cluster to the latest
5306
5306
  * restorable backup time, and <code>false</code> otherwise. </p>
@@ -5310,14 +5310,14 @@ export interface RestoreDBClusterToPointInTimeMessage {
5310
5310
  * provided.</p>
5311
5311
  * @public
5312
5312
  */
5313
- UseLatestRestorableTime?: boolean;
5313
+ UseLatestRestorableTime?: boolean | undefined;
5314
5314
  /**
5315
5315
  * <p>The port number on which the new cluster accepts connections.</p>
5316
5316
  * <p>Constraints: Must be a value from <code>1150</code> to <code>65535</code>. </p>
5317
5317
  * <p>Default: The default port for the engine.</p>
5318
5318
  * @public
5319
5319
  */
5320
- Port?: number;
5320
+ Port?: number | undefined;
5321
5321
  /**
5322
5322
  * <p>The subnet group name to use for the new cluster.</p>
5323
5323
  * <p>Constraints: If provided, must match the name of an existing
@@ -5326,17 +5326,17 @@ export interface RestoreDBClusterToPointInTimeMessage {
5326
5326
  * </p>
5327
5327
  * @public
5328
5328
  */
5329
- DBSubnetGroupName?: string;
5329
+ DBSubnetGroupName?: string | undefined;
5330
5330
  /**
5331
5331
  * <p>A list of VPC security groups that the new cluster belongs to.</p>
5332
5332
  * @public
5333
5333
  */
5334
- VpcSecurityGroupIds?: string[];
5334
+ VpcSecurityGroupIds?: string[] | undefined;
5335
5335
  /**
5336
5336
  * <p>The tags to be assigned to the restored cluster.</p>
5337
5337
  * @public
5338
5338
  */
5339
- Tags?: Tag[];
5339
+ Tags?: Tag[] | undefined;
5340
5340
  /**
5341
5341
  * <p>The KMS key identifier to use when restoring an encrypted cluster from an encrypted cluster.</p>
5342
5342
  * <p>The KMS key identifier is the Amazon Resource Name (ARN) for the KMS encryption key. If you are restoring a cluster with the same Amazon Web Services account that owns the KMS encryption key used to encrypt the new cluster, then you can use the KMS key alias instead of the ARN for the KMS encryption key.</p>
@@ -5354,18 +5354,18 @@ export interface RestoreDBClusterToPointInTimeMessage {
5354
5354
  * the restore request is rejected.</p>
5355
5355
  * @public
5356
5356
  */
5357
- KmsKeyId?: string;
5357
+ KmsKeyId?: string | undefined;
5358
5358
  /**
5359
5359
  * <p>A list of log types that must be enabled for exporting to Amazon CloudWatch
5360
5360
  * Logs.</p>
5361
5361
  * @public
5362
5362
  */
5363
- EnableCloudwatchLogsExports?: string[];
5363
+ EnableCloudwatchLogsExports?: string[] | undefined;
5364
5364
  /**
5365
5365
  * <p>Specifies whether this cluster can be deleted. If <code>DeletionProtection</code> is enabled, the cluster cannot be deleted unless it is modified and <code>DeletionProtection</code> is disabled. <code>DeletionProtection</code> protects clusters from being accidentally deleted.</p>
5366
5366
  * @public
5367
5367
  */
5368
- DeletionProtection?: boolean;
5368
+ DeletionProtection?: boolean | undefined;
5369
5369
  /**
5370
5370
  * <p>The storage type to associate with the DB cluster.</p>
5371
5371
  * <p>For information on storage types for Amazon DocumentDB clusters, see
@@ -5376,7 +5376,7 @@ export interface RestoreDBClusterToPointInTimeMessage {
5376
5376
  * </p>
5377
5377
  * @public
5378
5378
  */
5379
- StorageType?: string;
5379
+ StorageType?: string | undefined;
5380
5380
  }
5381
5381
  /**
5382
5382
  * @public
@@ -5386,7 +5386,7 @@ export interface RestoreDBClusterToPointInTimeResult {
5386
5386
  * <p>Detailed information about a cluster. </p>
5387
5387
  * @public
5388
5388
  */
5389
- DBCluster?: DBCluster;
5389
+ DBCluster?: DBCluster | undefined;
5390
5390
  }
5391
5391
  /**
5392
5392
  * @public
@@ -5408,7 +5408,7 @@ export interface StartDBClusterResult {
5408
5408
  * <p>Detailed information about a cluster. </p>
5409
5409
  * @public
5410
5410
  */
5411
- DBCluster?: DBCluster;
5411
+ DBCluster?: DBCluster | undefined;
5412
5412
  }
5413
5413
  /**
5414
5414
  * @public
@@ -5430,7 +5430,7 @@ export interface StopDBClusterResult {
5430
5430
  * <p>Detailed information about a cluster. </p>
5431
5431
  * @public
5432
5432
  */
5433
- DBCluster?: DBCluster;
5433
+ DBCluster?: DBCluster | undefined;
5434
5434
  }
5435
5435
  /**
5436
5436
  * @public
@@ -5481,5 +5481,5 @@ export interface SwitchoverGlobalClusterResult {
5481
5481
  * <p>A data type representing an Amazon DocumentDB global cluster.</p>
5482
5482
  * @public
5483
5483
  */
5484
- GlobalCluster?: GlobalCluster;
5484
+ GlobalCluster?: GlobalCluster | undefined;
5485
5485
  }