aws-sdk 2.1603.0 → 2.1605.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (44) hide show
  1. package/README.md +1 -1
  2. package/apis/bedrock-2023-04-20.min.json +1059 -90
  3. package/apis/bedrock-2023-04-20.paginators.json +12 -0
  4. package/apis/bedrock-agent-2023-06-05.min.json +105 -52
  5. package/apis/bedrock-agent-runtime-2023-07-26.min.json +265 -58
  6. package/apis/bedrock-runtime-2023-09-30.min.json +24 -0
  7. package/apis/ce-2017-10-25.min.json +2 -1
  8. package/apis/ec2-2016-11-15.min.json +139 -82
  9. package/apis/metadata.json +3 -0
  10. package/apis/payment-cryptography-2021-09-14.min.json +219 -189
  11. package/apis/payment-cryptography-2021-09-14.waiters2.json +5 -0
  12. package/apis/route53profiles-2018-05-10.examples.json +5 -0
  13. package/apis/route53profiles-2018-05-10.min.json +598 -0
  14. package/apis/route53profiles-2018-05-10.paginators.json +22 -0
  15. package/apis/sagemaker-2017-07-24.min.json +87 -63
  16. package/apis/servicediscovery-2017-03-14.examples.json +86 -0
  17. package/apis/transfer-2018-11-05.min.json +32 -3
  18. package/apis/workspaces-web-2020-07-08.min.json +84 -43
  19. package/clients/all.d.ts +1 -0
  20. package/clients/all.js +2 -1
  21. package/clients/bedrock.d.ts +1082 -118
  22. package/clients/bedrockagent.d.ts +80 -2
  23. package/clients/bedrockagentruntime.d.ts +252 -5
  24. package/clients/bedrockruntime.d.ts +37 -10
  25. package/clients/costexplorer.d.ts +11 -7
  26. package/clients/ec2.d.ts +103 -39
  27. package/clients/paymentcryptography.d.ts +175 -147
  28. package/clients/paymentcryptography.js +1 -0
  29. package/clients/pi.d.ts +5 -5
  30. package/clients/rds.d.ts +1 -1
  31. package/clients/redshiftserverless.d.ts +5 -5
  32. package/clients/route53profiles.d.ts +614 -0
  33. package/clients/route53profiles.js +18 -0
  34. package/clients/sagemaker.d.ts +17 -10
  35. package/clients/servicediscovery.d.ts +4 -4
  36. package/clients/transfer.d.ts +44 -5
  37. package/clients/workspacesweb.d.ts +89 -23
  38. package/dist/aws-sdk-core-react-native.js +2 -2
  39. package/dist/aws-sdk-react-native.js +297 -253
  40. package/dist/aws-sdk.js +147 -86
  41. package/dist/aws-sdk.min.js +70 -70
  42. package/lib/config_service_placeholders.d.ts +2 -0
  43. package/lib/core.js +1 -1
  44. package/package.json +1 -1
@@ -9,6 +9,7 @@ Object.defineProperty(apiLoader.services['paymentcryptography'], '2021-09-14', {
9
9
  get: function get() {
10
10
  var model = require('../apis/payment-cryptography-2021-09-14.min.json');
11
11
  model.paginators = require('../apis/payment-cryptography-2021-09-14.paginators.json').pagination;
12
+ model.waiters = require('../apis/payment-cryptography-2021-09-14.waiters2.json').waiters;
12
13
  return model;
13
14
  },
14
15
  enumerable: true,
package/clients/pi.d.ts CHANGED
@@ -60,11 +60,11 @@ declare class PI extends Service {
60
60
  */
61
61
  getResourceMetadata(callback?: (err: AWSError, data: PI.Types.GetResourceMetadataResponse) => void): Request<PI.Types.GetResourceMetadataResponse, AWSError>;
62
62
  /**
63
- * Retrieve Performance Insights metrics for a set of data sources over a time period. You can provide specific dimension groups and dimensions, and provide aggregation and filtering criteria for each group. Each response element returns a maximum of 500 bytes. For larger elements, such as SQL statements, only the first 500 bytes are returned.
63
+ * Retrieve Performance Insights metrics for a set of data sources over a time period. You can provide specific dimension groups and dimensions, and provide filtering criteria for each group. You must specify an aggregate function for each metric. Each response element returns a maximum of 500 bytes. For larger elements, such as SQL statements, only the first 500 bytes are returned.
64
64
  */
65
65
  getResourceMetrics(params: PI.Types.GetResourceMetricsRequest, callback?: (err: AWSError, data: PI.Types.GetResourceMetricsResponse) => void): Request<PI.Types.GetResourceMetricsResponse, AWSError>;
66
66
  /**
67
- * Retrieve Performance Insights metrics for a set of data sources over a time period. You can provide specific dimension groups and dimensions, and provide aggregation and filtering criteria for each group. Each response element returns a maximum of 500 bytes. For larger elements, such as SQL statements, only the first 500 bytes are returned.
67
+ * Retrieve Performance Insights metrics for a set of data sources over a time period. You can provide specific dimension groups and dimensions, and provide filtering criteria for each group. You must specify an aggregate function for each metric. Each response element returns a maximum of 500 bytes. For larger elements, such as SQL statements, only the first 500 bytes are returned.
68
68
  */
69
69
  getResourceMetrics(callback?: (err: AWSError, data: PI.Types.GetResourceMetricsResponse) => void): Request<PI.Types.GetResourceMetricsResponse, AWSError>;
70
70
  /**
@@ -487,7 +487,7 @@ declare namespace PI {
487
487
  */
488
488
  Identifier: IdentifierString;
489
489
  /**
490
- * An array of one or more queries to perform. Each query must specify a Performance Insights metric, and can optionally specify aggregation and filtering criteria.
490
+ * An array of one or more queries to perform. Each query must specify a Performance Insights metric and specify an aggregate function, and you can provide filtering criteria. You must append the aggregate function to the metric. For example, to find the average for the metric db.load you must use db.load.avg. Valid values for aggregate functions include .avg, .min, .max, and .sum.
491
491
  */
492
492
  MetricQueries: MetricQueryList;
493
493
  /**
@@ -726,7 +726,7 @@ declare namespace PI {
726
726
  export type MetricKeyDataPointsList = MetricKeyDataPoints[];
727
727
  export interface MetricQuery {
728
728
  /**
729
- * The name of a Performance Insights metric to be measured. Valid values for Metric are: db.load.avg - A scaled representation of the number of active sessions for the database engine. db.sampledload.avg - The raw number of active sessions for the database engine. The counter metrics listed in Performance Insights operating system counters in the Amazon Aurora User Guide. If the number of active sessions is less than an internal Performance Insights threshold, db.load.avg and db.sampledload.avg are the same value. If the number of active sessions is greater than the internal threshold, Performance Insights samples the active sessions, with db.load.avg showing the scaled values, db.sampledload.avg showing the raw values, and db.sampledload.avg less than db.load.avg. For most use cases, you can query db.load.avg only.
729
+ * The name of a Performance Insights metric to be measured. Valid values for Metric are: db.load.avg - A scaled representation of the number of active sessions for the database engine. db.sampledload.avg - The raw number of active sessions for the database engine. The counter metrics listed in Performance Insights operating system counters in the Amazon Aurora User Guide. The counter metrics listed in Performance Insights operating system counters in the Amazon RDS User Guide. If the number of active sessions is less than an internal Performance Insights threshold, db.load.avg and db.sampledload.avg are the same value. If the number of active sessions is greater than the internal threshold, Performance Insights samples the active sessions, with db.load.avg showing the scaled values, db.sampledload.avg showing the raw values, and db.sampledload.avg less than db.load.avg. For most use cases, you can query db.load.avg only.
730
730
  */
731
731
  Metric: RequestString;
732
732
  /**
@@ -799,7 +799,7 @@ declare namespace PI {
799
799
  }
800
800
  export interface ResponseResourceMetricKey {
801
801
  /**
802
- * The name of a Performance Insights metric to be measured. Valid values for Metric are: db.load.avg - A scaled representation of the number of active sessions for the database engine. db.sampledload.avg - The raw number of active sessions for the database engine. The counter metrics listed in Performance Insights operating system counters in the Amazon Aurora User Guide. If the number of active sessions is less than an internal Performance Insights threshold, db.load.avg and db.sampledload.avg are the same value. If the number of active sessions is greater than the internal threshold, Performance Insights samples the active sessions, with db.load.avg showing the scaled values, db.sampledload.avg showing the raw values, and db.sampledload.avg less than db.load.avg. For most use cases, you can query db.load.avg only.
802
+ * The name of a Performance Insights metric to be measured. Valid values for Metric are: db.load.avg - A scaled representation of the number of active sessions for the database engine. db.sampledload.avg - The raw number of active sessions for the database engine. The counter metrics listed in Performance Insights operating system counters in the Amazon Aurora User Guide. The counter metrics listed in Performance Insights operating system counters in the Amazon RDS User Guide. If the number of active sessions is less than an internal Performance Insights threshold, db.load.avg and db.sampledload.avg are the same value. If the number of active sessions is greater than the internal threshold, Performance Insights samples the active sessions, with db.load.avg showing the scaled values, db.sampledload.avg showing the raw values, and db.sampledload.avg less than db.load.avg. For most use cases, you can query db.load.avg only.
803
803
  */
804
804
  Metric: String;
805
805
  /**
package/clients/rds.d.ts CHANGED
@@ -7254,7 +7254,7 @@ declare namespace RDS {
7254
7254
  export type MinimumEngineVersionPerAllowedValueList = MinimumEngineVersionPerAllowedValue[];
7255
7255
  export interface ModifyActivityStreamRequest {
7256
7256
  /**
7257
- * The Amazon Resource Name (ARN) of the RDS for Oracle or Microsoft SQL Server DB instance. For example, arn:aws:rds:us-east-1:12345667890:instance:my-orcl-db.
7257
+ * The Amazon Resource Name (ARN) of the RDS for Oracle or Microsoft SQL Server DB instance. For example, arn:aws:rds:us-east-1:12345667890:db:my-orcl-db.
7258
7258
  */
7259
7259
  ResourceArn?: String;
7260
7260
  /**
@@ -644,7 +644,7 @@ declare namespace RedshiftServerless {
644
644
  */
645
645
  roleArn: IamRoleArn;
646
646
  /**
647
- * The schedule for a one-time (at format) or recurring (cron format) scheduled action. Schedule invocations must be separated by at least one hour. Format of at expressions is "at(yyyy-mm-ddThh:mm:ss)". For example, "at(2016-03-04T17:27:00)". Format of cron expressions is "cron(Minutes Hours Day-of-month Month Day-of-week Year)". For example, "cron(0 10 ? * MON *)". For more information, see Cron Expressions in the Amazon CloudWatch Events User Guide.
647
+ * The schedule for a one-time (at timestamp format) or recurring (cron format) scheduled action. Schedule invocations must be separated by at least one hour. Times are in UTC. Format of at timestamp is yyyy-mm-ddThh:mm:ss. For example, 2016-03-04T17:27:00. Format of cron expression is (Minutes Hours Day-of-month Month Day-of-week Year). For example, "(0 10 ? * MON *)". For more information, see Cron Expressions in the Amazon CloudWatch Events User Guide.
648
648
  */
649
649
  schedule: Schedule;
650
650
  /**
@@ -1776,11 +1776,11 @@ declare namespace RedshiftServerless {
1776
1776
  }
1777
1777
  export interface Schedule {
1778
1778
  /**
1779
- * The timestamp of when Amazon Redshift Serverless should run the scheduled action. Format of at expressions is "at(yyyy-mm-ddThh:mm:ss)". For example, "at(2016-03-04T17:27:00)".
1779
+ * The timestamp of when Amazon Redshift Serverless should run the scheduled action. Timestamp is in UTC. Format of at expression is yyyy-mm-ddThh:mm:ss. For example, 2016-03-04T17:27:00.
1780
1780
  */
1781
1781
  at?: Timestamp;
1782
1782
  /**
1783
- * The cron expression to use to schedule a recurring scheduled action. Schedule invocations must be separated by at least one hour. Format of cron expressions is "cron(Minutes Hours Day-of-month Month Day-of-week Year)". For example, "cron(0 10 ? * MON *)". For more information, see Cron Expressions in the Amazon CloudWatch Events User Guide.
1783
+ * The cron expression to use to schedule a recurring scheduled action. Schedule invocations must be separated by at least one hour. Times are in UTC. Format of cron expressions is (Minutes Hours Day-of-month Month Day-of-week Year). For example, "(0 10 ? * MON *)". For more information, see Cron Expressions in the Amazon CloudWatch Events User Guide.
1784
1784
  */
1785
1785
  cron?: String;
1786
1786
  }
@@ -1803,7 +1803,7 @@ declare namespace RedshiftServerless {
1803
1803
  */
1804
1804
  roleArn?: IamRoleArn;
1805
1805
  /**
1806
- * The schedule for a one-time (at format) or recurring (cron format) scheduled action. Schedule invocations must be separated by at least one hour. Format of at expressions is "at(yyyy-mm-ddThh:mm:ss)". For example, "at(2016-03-04T17:27:00)". Format of cron expressions is "cron(Minutes Hours Day-of-month Month Day-of-week Year)". For example, "cron(0 10 ? * MON *)". For more information, see Cron Expressions in the Amazon CloudWatch Events User Guide.
1806
+ * The schedule for a one-time (at timestamp format) or recurring (cron format) scheduled action. Schedule invocations must be separated by at least one hour. Times are in UTC. Format of at timestamp is yyyy-mm-ddThh:mm:ss. For example, 2016-03-04T17:27:00. Format of cron expression is (Minutes Hours Day-of-month Month Day-of-week Year). For example, "(0 10 ? * MON *)". For more information, see Cron Expressions in the Amazon CloudWatch Events User Guide.
1807
1807
  */
1808
1808
  schedule?: Schedule;
1809
1809
  /**
@@ -2171,7 +2171,7 @@ declare namespace RedshiftServerless {
2171
2171
  */
2172
2172
  roleArn?: IamRoleArn;
2173
2173
  /**
2174
- * The schedule for a one-time (at format) or recurring (cron format) scheduled action. Schedule invocations must be separated by at least one hour. Format of at expressions is "at(yyyy-mm-ddThh:mm:ss)". For example, "at(2016-03-04T17:27:00)". Format of cron expressions is "cron(Minutes Hours Day-of-month Month Day-of-week Year)". For example, "cron(0 10 ? * MON *)". For more information, see Cron Expressions in the Amazon CloudWatch Events User Guide.
2174
+ * The schedule for a one-time (at timestamp format) or recurring (cron format) scheduled action. Schedule invocations must be separated by at least one hour. Times are in UTC. Format of at timestamp is yyyy-mm-ddThh:mm:ss. For example, 2016-03-04T17:27:00. Format of cron expression is (Minutes Hours Day-of-month Month Day-of-week Year). For example, "(0 10 ? * MON *)". For more information, see Cron Expressions in the Amazon CloudWatch Events User Guide.
2175
2175
  */
2176
2176
  schedule?: Schedule;
2177
2177
  /**