cdk-lambda-subminute 2.0.404 → 2.0.405

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (29) hide show
  1. package/.jsii +3 -3
  2. package/lib/cdk-lambda-subminute.js +3 -3
  3. package/node_modules/aws-sdk/README.md +1 -1
  4. package/node_modules/aws-sdk/apis/fis-2020-12-01.min.json +28 -5
  5. package/node_modules/aws-sdk/apis/metadata.json +4 -4
  6. package/node_modules/aws-sdk/apis/timestream-influxdb-2023-01-27.min.json +522 -0
  7. package/node_modules/aws-sdk/apis/timestream-influxdb-2023-01-27.paginators.json +16 -0
  8. package/node_modules/aws-sdk/clients/all.d.ts +1 -1
  9. package/node_modules/aws-sdk/clients/all.js +2 -2
  10. package/node_modules/aws-sdk/clients/amplify.d.ts +8 -8
  11. package/node_modules/aws-sdk/clients/elbv2.d.ts +1 -1
  12. package/node_modules/aws-sdk/clients/fis.d.ts +60 -13
  13. package/node_modules/aws-sdk/clients/rds.d.ts +2 -2
  14. package/node_modules/aws-sdk/clients/secretsmanager.d.ts +4 -4
  15. package/node_modules/aws-sdk/clients/timestreaminfluxdb.d.ts +773 -0
  16. package/node_modules/aws-sdk/clients/timestreaminfluxdb.js +18 -0
  17. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +2 -2
  18. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +407 -407
  19. package/node_modules/aws-sdk/dist/aws-sdk.js +7 -7
  20. package/node_modules/aws-sdk/dist/aws-sdk.min.js +3 -3
  21. package/node_modules/aws-sdk/lib/config_service_placeholders.d.ts +2 -2
  22. package/node_modules/aws-sdk/lib/core.js +1 -1
  23. package/node_modules/aws-sdk/package.json +1 -1
  24. package/package.json +3 -3
  25. package/node_modules/aws-sdk/apis/iot-roborunner-2018-05-10.min.json +0 -923
  26. package/node_modules/aws-sdk/apis/iot-roborunner-2018-05-10.paginators.json +0 -28
  27. package/node_modules/aws-sdk/clients/iotroborunner.d.ts +0 -534
  28. package/node_modules/aws-sdk/clients/iotroborunner.js +0 -18
  29. /package/node_modules/aws-sdk/apis/{iot-roborunner-2018-05-10.examples.json → timestream-influxdb-2023-01-27.examples.json} +0 -0
@@ -12,19 +12,19 @@ declare class Fis extends Service {
12
12
  constructor(options?: Fis.Types.ClientConfiguration)
13
13
  config: Config & Fis.Types.ClientConfiguration;
14
14
  /**
15
- * Creates an experiment template. An experiment template includes the following components: Targets: A target can be a specific resource in your Amazon Web Services environment, or one or more resources that match criteria that you specify, for example, resources that have specific tags. Actions: The actions to carry out on the target. You can specify multiple actions, the duration of each action, and when to start each action during an experiment. Stop conditions: If a stop condition is triggered while an experiment is running, the experiment is automatically stopped. You can define a stop condition as a CloudWatch alarm. For more information, see experiment templates in the Fault Injection Simulator User Guide.
15
+ * Creates an experiment template. An experiment template includes the following components: Targets: A target can be a specific resource in your Amazon Web Services environment, or one or more resources that match criteria that you specify, for example, resources that have specific tags. Actions: The actions to carry out on the target. You can specify multiple actions, the duration of each action, and when to start each action during an experiment. Stop conditions: If a stop condition is triggered while an experiment is running, the experiment is automatically stopped. You can define a stop condition as a CloudWatch alarm. For more information, see experiment templates in the Fault Injection Service User Guide.
16
16
  */
17
17
  createExperimentTemplate(params: Fis.Types.CreateExperimentTemplateRequest, callback?: (err: AWSError, data: Fis.Types.CreateExperimentTemplateResponse) => void): Request<Fis.Types.CreateExperimentTemplateResponse, AWSError>;
18
18
  /**
19
- * Creates an experiment template. An experiment template includes the following components: Targets: A target can be a specific resource in your Amazon Web Services environment, or one or more resources that match criteria that you specify, for example, resources that have specific tags. Actions: The actions to carry out on the target. You can specify multiple actions, the duration of each action, and when to start each action during an experiment. Stop conditions: If a stop condition is triggered while an experiment is running, the experiment is automatically stopped. You can define a stop condition as a CloudWatch alarm. For more information, see experiment templates in the Fault Injection Simulator User Guide.
19
+ * Creates an experiment template. An experiment template includes the following components: Targets: A target can be a specific resource in your Amazon Web Services environment, or one or more resources that match criteria that you specify, for example, resources that have specific tags. Actions: The actions to carry out on the target. You can specify multiple actions, the duration of each action, and when to start each action during an experiment. Stop conditions: If a stop condition is triggered while an experiment is running, the experiment is automatically stopped. You can define a stop condition as a CloudWatch alarm. For more information, see experiment templates in the Fault Injection Service User Guide.
20
20
  */
21
21
  createExperimentTemplate(callback?: (err: AWSError, data: Fis.Types.CreateExperimentTemplateResponse) => void): Request<Fis.Types.CreateExperimentTemplateResponse, AWSError>;
22
22
  /**
23
- * Creates a target account configuration for the experiment template. A target account configuration is required when accountTargeting of experimentOptions is set to multi-account. For more information, see experiment options in the Fault Injection Simulator User Guide.
23
+ * Creates a target account configuration for the experiment template. A target account configuration is required when accountTargeting of experimentOptions is set to multi-account. For more information, see experiment options in the Fault Injection Service User Guide.
24
24
  */
25
25
  createTargetAccountConfiguration(params: Fis.Types.CreateTargetAccountConfigurationRequest, callback?: (err: AWSError, data: Fis.Types.CreateTargetAccountConfigurationResponse) => void): Request<Fis.Types.CreateTargetAccountConfigurationResponse, AWSError>;
26
26
  /**
27
- * Creates a target account configuration for the experiment template. A target account configuration is required when accountTargeting of experimentOptions is set to multi-account. For more information, see experiment options in the Fault Injection Simulator User Guide.
27
+ * Creates a target account configuration for the experiment template. A target account configuration is required when accountTargeting of experimentOptions is set to multi-account. For more information, see experiment options in the Fault Injection Service User Guide.
28
28
  */
29
29
  createTargetAccountConfiguration(callback?: (err: AWSError, data: Fis.Types.CreateTargetAccountConfigurationResponse) => void): Request<Fis.Types.CreateTargetAccountConfigurationResponse, AWSError>;
30
30
  /**
@@ -211,6 +211,10 @@ declare namespace Fis {
211
211
  * The ID of the action.
212
212
  */
213
213
  id?: ActionId;
214
+ /**
215
+ * The Amazon Resource Name (ARN) of the action.
216
+ */
217
+ arn?: ResourceArn;
214
218
  /**
215
219
  * The description for the action.
216
220
  */
@@ -249,6 +253,10 @@ declare namespace Fis {
249
253
  * The ID of the action.
250
254
  */
251
255
  id?: ActionId;
256
+ /**
257
+ * The Amazon Resource Name (ARN) of the action.
258
+ */
259
+ arn?: ResourceArn;
252
260
  /**
253
261
  * The description for the action.
254
262
  */
@@ -271,6 +279,7 @@ declare namespace Fis {
271
279
  }
272
280
  export type ActionTargetMap = {[key: string]: ActionTarget};
273
281
  export type ActionTargetName = string;
282
+ export type ActionsMode = "skip-all"|"run-all"|string;
274
283
  export type ClientToken = string;
275
284
  export type CloudWatchLogGroupArn = string;
276
285
  export interface CreateExperimentTemplateActionInput {
@@ -412,7 +421,7 @@ declare namespace Fis {
412
421
  */
413
422
  experimentTemplateId: ExperimentTemplateId;
414
423
  /**
415
- * The AWS account ID of the target account.
424
+ * The Amazon Web Services account ID of the target account.
416
425
  */
417
426
  accountId: TargetAccountId;
418
427
  /**
@@ -449,7 +458,7 @@ declare namespace Fis {
449
458
  */
450
459
  experimentTemplateId: ExperimentTemplateId;
451
460
  /**
452
- * The AWS account ID of the target account.
461
+ * The Amazon Web Services account ID of the target account.
453
462
  */
454
463
  accountId: TargetAccountId;
455
464
  }
@@ -465,6 +474,10 @@ declare namespace Fis {
465
474
  * The ID of the experiment.
466
475
  */
467
476
  id?: ExperimentId;
477
+ /**
478
+ * The Amazon Resource Name (ARN) of the experiment.
479
+ */
480
+ arn?: ResourceArn;
468
481
  /**
469
482
  * The ID of the experiment template.
470
483
  */
@@ -607,6 +620,10 @@ declare namespace Fis {
607
620
  * The empty target resolution mode for an experiment.
608
621
  */
609
622
  emptyTargetResolutionMode?: EmptyTargetResolutionMode;
623
+ /**
624
+ * The actions mode of the experiment that is set from the StartExperiment API command.
625
+ */
626
+ actionsMode?: ActionsMode;
610
627
  }
611
628
  export interface ExperimentS3LogConfiguration {
612
629
  /**
@@ -647,6 +664,10 @@ declare namespace Fis {
647
664
  * The ID of the experiment.
648
665
  */
649
666
  id?: ExperimentId;
667
+ /**
668
+ * The Amazon Resource Name (ARN) of the experiment.
669
+ */
670
+ arn?: ResourceArn;
650
671
  /**
651
672
  * The ID of the experiment template.
652
673
  */
@@ -663,6 +684,10 @@ declare namespace Fis {
663
684
  * The tags for the experiment.
664
685
  */
665
686
  tags?: TagMap;
687
+ /**
688
+ * The experiment options for the experiment.
689
+ */
690
+ experimentOptions?: ExperimentOptions;
666
691
  }
667
692
  export type ExperimentSummaryList = ExperimentSummary[];
668
693
  export interface ExperimentTarget {
@@ -697,7 +722,7 @@ declare namespace Fis {
697
722
  */
698
723
  roleArn?: RoleArn;
699
724
  /**
700
- * The AWS account ID of the target account.
725
+ * The Amazon Web Services account ID of the target account.
701
726
  */
702
727
  accountId?: TargetAccountId;
703
728
  /**
@@ -712,7 +737,7 @@ declare namespace Fis {
712
737
  */
713
738
  roleArn?: RoleArn;
714
739
  /**
715
- * The AWS account ID of the target account.
740
+ * The Amazon Web Services account ID of the target account.
716
741
  */
717
742
  accountId?: TargetAccountId;
718
743
  /**
@@ -745,6 +770,10 @@ declare namespace Fis {
745
770
  * The ID of the experiment template.
746
771
  */
747
772
  id?: ExperimentTemplateId;
773
+ /**
774
+ * The Amazon Resource Name (ARN) of the experiment template.
775
+ */
776
+ arn?: ResourceArn;
748
777
  /**
749
778
  * The description for the experiment template.
750
779
  */
@@ -896,6 +925,10 @@ declare namespace Fis {
896
925
  * The ID of the experiment template.
897
926
  */
898
927
  id?: ExperimentTemplateId;
928
+ /**
929
+ * The Amazon Resource Name (ARN) of the experiment template.
930
+ */
931
+ arn?: ResourceArn;
899
932
  /**
900
933
  * The description of the experiment template.
901
934
  */
@@ -1001,7 +1034,7 @@ declare namespace Fis {
1001
1034
  */
1002
1035
  experimentId: ExperimentId;
1003
1036
  /**
1004
- * The AWS account ID of the target account.
1037
+ * The Amazon Web Services account ID of the target account.
1005
1038
  */
1006
1039
  accountId: TargetAccountId;
1007
1040
  }
@@ -1029,7 +1062,7 @@ declare namespace Fis {
1029
1062
  */
1030
1063
  experimentTemplateId: ExperimentTemplateId;
1031
1064
  /**
1032
- * The AWS account ID of the target account.
1065
+ * The Amazon Web Services account ID of the target account.
1033
1066
  */
1034
1067
  accountId: TargetAccountId;
1035
1068
  }
@@ -1153,6 +1186,10 @@ declare namespace Fis {
1153
1186
  * The token for the next page of results.
1154
1187
  */
1155
1188
  nextToken?: NextToken;
1189
+ /**
1190
+ * The ID of the experiment template.
1191
+ */
1192
+ experimentTemplateId?: ExperimentTemplateId;
1156
1193
  }
1157
1194
  export interface ListExperimentsResponse {
1158
1195
  /**
@@ -1244,6 +1281,12 @@ declare namespace Fis {
1244
1281
  export type RoleArn = string;
1245
1282
  export type S3BucketName = string;
1246
1283
  export type S3ObjectKey = string;
1284
+ export interface StartExperimentExperimentOptionsInput {
1285
+ /**
1286
+ * Specifies the actions mode for experiment options.
1287
+ */
1288
+ actionsMode?: ActionsMode;
1289
+ }
1247
1290
  export interface StartExperimentRequest {
1248
1291
  /**
1249
1292
  * Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
@@ -1253,6 +1296,10 @@ declare namespace Fis {
1253
1296
  * The ID of the experiment template.
1254
1297
  */
1255
1298
  experimentTemplateId: ExperimentTemplateId;
1299
+ /**
1300
+ * The experiment options for running the experiment.
1301
+ */
1302
+ experimentOptions?: StartExperimentExperimentOptionsInput;
1256
1303
  /**
1257
1304
  * The tags to apply to the experiment.
1258
1305
  */
@@ -1300,7 +1347,7 @@ declare namespace Fis {
1300
1347
  */
1301
1348
  roleArn?: RoleArn;
1302
1349
  /**
1303
- * The AWS account ID of the target account.
1350
+ * The Amazon Web Services account ID of the target account.
1304
1351
  */
1305
1352
  accountId?: TargetAccountId;
1306
1353
  /**
@@ -1316,7 +1363,7 @@ declare namespace Fis {
1316
1363
  */
1317
1364
  roleArn?: RoleArn;
1318
1365
  /**
1319
- * The AWS account ID of the target account.
1366
+ * The Amazon Web Services account ID of the target account.
1320
1367
  */
1321
1368
  accountId?: TargetAccountId;
1322
1369
  /**
@@ -1510,7 +1557,7 @@ declare namespace Fis {
1510
1557
  */
1511
1558
  experimentTemplateId: ExperimentTemplateId;
1512
1559
  /**
1513
- * The AWS account ID of the target account.
1560
+ * The Amazon Web Services account ID of the target account.
1514
1561
  */
1515
1562
  accountId: TargetAccountId;
1516
1563
  /**
@@ -2288,7 +2288,7 @@ declare namespace RDS {
2288
2288
  }
2289
2289
  export interface CreateDBInstanceMessage {
2290
2290
  /**
2291
- * The meaning of this parameter differs according to the database engine you use. Amazon Aurora MySQL The name of the database to create when the primary DB instance of the Aurora MySQL DB cluster is created. If this parameter isn't specified for an Aurora MySQL DB cluster, no database is created in the DB cluster. Constraints: Must contain 1 to 64 alphanumeric characters. Can't be a word reserved by the database engine. Amazon Aurora PostgreSQL The name of the database to create when the primary DB instance of the Aurora PostgreSQL DB cluster is created. If this parameter isn't specified for an Aurora PostgreSQL DB cluster, a database named postgres is created in the DB cluster. Constraints: It must contain 1 to 63 alphanumeric characters. Must begin with a letter. Subsequent characters can be letters, underscores, or digits (0 to 9). Can't be a word reserved by the database engine. Amazon RDS Custom for Oracle The Oracle System ID (SID) of the created RDS Custom DB instance. If you don't specify a value, the default value is ORCL for non-CDBs and RDSCDB for CDBs. Default: ORCL Constraints: Must contain 1 to 8 alphanumeric characters. Must contain a letter. Can't be a word reserved by the database engine. Amazon RDS Custom for SQL Server Not applicable. Must be null. RDS for Db2 The name of the database to create when the DB instance is created. If this parameter isn't specified, no database is created in the DB instance. Constraints: Must contain 1 to 64 letters or numbers. Must begin with a letter. Subsequent characters can be letters, underscores, or digits (0-9). Can't be a word reserved by the specified database engine. RDS for MariaDB The name of the database to create when the DB instance is created. If this parameter isn't specified, no database is created in the DB instance. Constraints: Must contain 1 to 64 letters or numbers. Must begin with a letter. Subsequent characters can be letters, underscores, or digits (0-9). Can't be a word reserved by the specified database engine. RDS for MySQL The name of the database to create when the DB instance is created. If this parameter isn't specified, no database is created in the DB instance. Constraints: Must contain 1 to 64 letters or numbers. Must begin with a letter. Subsequent characters can be letters, underscores, or digits (0-9). Can't be a word reserved by the specified database engine. RDS for Oracle The Oracle System ID (SID) of the created DB instance. If you don't specify a value, the default value is ORCL. You can't specify the string null, or any other reserved word, for DBName. Default: ORCL Constraints: Can't be longer than 8 characters. RDS for PostgreSQL The name of the database to create when the DB instance is created. If this parameter isn't specified, a database named postgres is created in the DB instance. Constraints: Must contain 1 to 63 letters, numbers, or underscores. Must begin with a letter. Subsequent characters can be letters, underscores, or digits (0-9). Can't be a word reserved by the specified database engine. RDS for SQL Server Not applicable. Must be null.
2291
+ * The meaning of this parameter differs according to the database engine you use. Amazon Aurora MySQL The name of the database to create when the primary DB instance of the Aurora MySQL DB cluster is created. If this parameter isn't specified for an Aurora MySQL DB cluster, no database is created in the DB cluster. Constraints: Must contain 1 to 64 alphanumeric characters. Can't be a word reserved by the database engine. Amazon Aurora PostgreSQL The name of the database to create when the primary DB instance of the Aurora PostgreSQL DB cluster is created. If this parameter isn't specified for an Aurora PostgreSQL DB cluster, a database named postgres is created in the DB cluster. Constraints: It must contain 1 to 63 alphanumeric characters. Must begin with a letter. Subsequent characters can be letters, underscores, or digits (0 to 9). Can't be a word reserved by the database engine. Amazon RDS Custom for Oracle The Oracle System ID (SID) of the created RDS Custom DB instance. If you don't specify a value, the default value is ORCL for non-CDBs and RDSCDB for CDBs. Default: ORCL Constraints: Must contain 1 to 8 alphanumeric characters. Must contain a letter. Can't be a word reserved by the database engine. Amazon RDS Custom for SQL Server Not applicable. Must be null. RDS for Db2 The name of the database to create when the DB instance is created. If this parameter isn't specified, no database is created in the DB instance. In some cases, we recommend that you don't add a database name. For more information, see Additional considerations in the Amazon RDS User Guide. Constraints: Must contain 1 to 64 letters or numbers. Must begin with a letter. Subsequent characters can be letters, underscores, or digits (0-9). Can't be a word reserved by the specified database engine. RDS for MariaDB The name of the database to create when the DB instance is created. If this parameter isn't specified, no database is created in the DB instance. Constraints: Must contain 1 to 64 letters or numbers. Must begin with a letter. Subsequent characters can be letters, underscores, or digits (0-9). Can't be a word reserved by the specified database engine. RDS for MySQL The name of the database to create when the DB instance is created. If this parameter isn't specified, no database is created in the DB instance. Constraints: Must contain 1 to 64 letters or numbers. Must begin with a letter. Subsequent characters can be letters, underscores, or digits (0-9). Can't be a word reserved by the specified database engine. RDS for Oracle The Oracle System ID (SID) of the created DB instance. If you don't specify a value, the default value is ORCL. You can't specify the string null, or any other reserved word, for DBName. Default: ORCL Constraints: Can't be longer than 8 characters. RDS for PostgreSQL The name of the database to create when the DB instance is created. If this parameter isn't specified, a database named postgres is created in the DB instance. Constraints: Must contain 1 to 63 letters, numbers, or underscores. Must begin with a letter. Subsequent characters can be letters, underscores, or digits (0-9). Can't be a word reserved by the specified database engine. RDS for SQL Server Not applicable. Must be null.
2292
2292
  */
2293
2293
  DBName?: String;
2294
2294
  /**
@@ -6276,7 +6276,7 @@ declare namespace RDS {
6276
6276
  */
6277
6277
  GlobalClusterIdentifier?: String;
6278
6278
  /**
6279
- * This parameter isn't currently supported.
6279
+ * A filter that specifies one or more global database clusters to describe. This parameter is case-sensitive. Currently, the only supported filter is region. If used, the request returns information about any global cluster with at least one member (primary or secondary) in the specified Amazon Web Services Regions.
6280
6280
  */
6281
6281
  Filters?: FilterList;
6282
6282
  /**
@@ -60,11 +60,11 @@ declare class SecretsManager extends Service {
60
60
  */
61
61
  describeSecret(callback?: (err: AWSError, data: SecretsManager.Types.DescribeSecretResponse) => void): Request<SecretsManager.Types.DescribeSecretResponse, AWSError>;
62
62
  /**
63
- * Generates a random password. We recommend that you specify the maximum length and include every character type that the system you are generating a password for can support. By default, Secrets Manager uses uppercase and lowercase letters, numbers, and the following characters in passwords: !\"#$%&amp;'()*+,-./:;&lt;=&gt;?@[\\]^_`{|}~ Secrets Manager generates a CloudTrail log entry when you call this action. Do not include sensitive information in request parameters because it might be logged. For more information, see Logging Secrets Manager events with CloudTrail. Required permissions: secretsmanager:GetRandomPassword. For more information, see IAM policy actions for Secrets Manager and Authentication and access control in Secrets Manager.
63
+ * Generates a random password. We recommend that you specify the maximum length and include every character type that the system you are generating a password for can support. By default, Secrets Manager uses uppercase and lowercase letters, numbers, and the following characters in passwords: !\"#$%&amp;'()*+,-./:;&lt;=&gt;?@[\\]^_`{|}~ Secrets Manager generates a CloudTrail log entry when you call this action. Required permissions: secretsmanager:GetRandomPassword. For more information, see IAM policy actions for Secrets Manager and Authentication and access control in Secrets Manager.
64
64
  */
65
65
  getRandomPassword(params: SecretsManager.Types.GetRandomPasswordRequest, callback?: (err: AWSError, data: SecretsManager.Types.GetRandomPasswordResponse) => void): Request<SecretsManager.Types.GetRandomPasswordResponse, AWSError>;
66
66
  /**
67
- * Generates a random password. We recommend that you specify the maximum length and include every character type that the system you are generating a password for can support. By default, Secrets Manager uses uppercase and lowercase letters, numbers, and the following characters in passwords: !\"#$%&amp;'()*+,-./:;&lt;=&gt;?@[\\]^_`{|}~ Secrets Manager generates a CloudTrail log entry when you call this action. Do not include sensitive information in request parameters because it might be logged. For more information, see Logging Secrets Manager events with CloudTrail. Required permissions: secretsmanager:GetRandomPassword. For more information, see IAM policy actions for Secrets Manager and Authentication and access control in Secrets Manager.
67
+ * Generates a random password. We recommend that you specify the maximum length and include every character type that the system you are generating a password for can support. By default, Secrets Manager uses uppercase and lowercase letters, numbers, and the following characters in passwords: !\"#$%&amp;'()*+,-./:;&lt;=&gt;?@[\\]^_`{|}~ Secrets Manager generates a CloudTrail log entry when you call this action. Required permissions: secretsmanager:GetRandomPassword. For more information, see IAM policy actions for Secrets Manager and Authentication and access control in Secrets Manager.
68
68
  */
69
69
  getRandomPassword(callback?: (err: AWSError, data: SecretsManager.Types.GetRandomPasswordResponse) => void): Request<SecretsManager.Types.GetRandomPasswordResponse, AWSError>;
70
70
  /**
@@ -224,7 +224,7 @@ declare namespace SecretsManager {
224
224
  */
225
225
  Filters?: FiltersListType;
226
226
  /**
227
- * The number of results to include in the response. If there are more results available, in the response, Secrets Manager includes NextToken. To get the next results, call BatchGetSecretValue again with the value from NextToken.
227
+ * The number of results to include in the response. If there are more results available, in the response, Secrets Manager includes NextToken. To get the next results, call BatchGetSecretValue again with the value from NextToken. To use this parameter, you must also use the Filters parameter.
228
228
  */
229
229
  MaxResults?: MaxResultsBatchType;
230
230
  /**
@@ -423,7 +423,7 @@ declare namespace SecretsManager {
423
423
  */
424
424
  DeletedDate?: DeletedDateType;
425
425
  /**
426
- * The next rotation is scheduled to occur on or before this date. If the secret isn't configured for rotation or rotation has been disabled, Secrets Manager returns null. If rotation fails, Secrets Manager retries the entire rotation process multiple times. If rotation is unsuccessful, this date may be in the past.
426
+ * The next rotation is scheduled to occur on or before this date. If the secret isn't configured for rotation or rotation has been disabled, Secrets Manager returns null. If rotation fails, Secrets Manager retries the entire rotation process multiple times. If rotation is unsuccessful, this date may be in the past. This date represents the latest date that rotation will occur, but it is not an approximate rotation date. In some cases, for example if you turn off automatic rotation and then turn it back on, the next rotation may occur much sooner than this date.
427
427
  */
428
428
  NextRotationDate?: NextRotationDateType;
429
429
  /**