aws-sdk 2.1305.0 → 2.1306.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.
Files changed (36) hide show
  1. package/CHANGELOG.md +19 -1
  2. package/README.md +1 -1
  3. package/apis/appsync-2017-07-25.min.json +104 -86
  4. package/apis/cloudtrail-2013-11-01.min.json +204 -55
  5. package/apis/cloudtrail-data-2021-08-11.examples.json +5 -0
  6. package/apis/cloudtrail-data-2021-08-11.min.json +94 -0
  7. package/apis/cloudtrail-data-2021-08-11.paginators.json +4 -0
  8. package/apis/codeartifact-2018-09-22.min.json +73 -21
  9. package/apis/ec2-2016-11-15.min.json +1465 -1291
  10. package/apis/groundstation-2019-05-23.min.json +312 -41
  11. package/apis/iot-2015-05-28.min.json +4 -1
  12. package/apis/metadata.json +4 -0
  13. package/apis/opensearch-2021-01-01.min.json +192 -176
  14. package/apis/sagemaker-2017-07-24.min.json +630 -585
  15. package/apis/securityhub-2018-10-26.min.json +173 -157
  16. package/clients/all.d.ts +1 -0
  17. package/clients/all.js +2 -1
  18. package/clients/appsync.d.ts +20 -2
  19. package/clients/cloudtrail.d.ts +234 -40
  20. package/clients/cloudtraildata.d.ts +111 -0
  21. package/clients/cloudtraildata.js +18 -0
  22. package/clients/codeartifact.d.ts +43 -6
  23. package/clients/ec2.d.ts +180 -2
  24. package/clients/groundstation.d.ts +284 -0
  25. package/clients/iot.d.ts +4 -0
  26. package/clients/opensearch.d.ts +31 -0
  27. package/clients/polly.d.ts +1 -1
  28. package/clients/sagemaker.d.ts +57 -1
  29. package/clients/securityhub.d.ts +26 -3
  30. package/dist/aws-sdk-core-react-native.js +2 -2
  31. package/dist/aws-sdk-react-native.js +50 -13
  32. package/dist/aws-sdk.js +1680 -1350
  33. package/dist/aws-sdk.min.js +86 -86
  34. package/lib/config_service_placeholders.d.ts +2 -0
  35. package/lib/core.js +1 -1
  36. package/package.json +1 -1
package/clients/all.d.ts CHANGED
@@ -337,3 +337,4 @@ export import KinesisVideoWebRTCStorage = require('./kinesisvideowebrtcstorage')
337
337
  export import LicenseManagerLinuxSubscriptions = require('./licensemanagerlinuxsubscriptions');
338
338
  export import KendraRanking = require('./kendraranking');
339
339
  export import CleanRooms = require('./cleanrooms');
340
+ export import CloudTrailData = require('./cloudtraildata');
package/clients/all.js CHANGED
@@ -338,5 +338,6 @@ module.exports = {
338
338
  KinesisVideoWebRTCStorage: require('./kinesisvideowebrtcstorage'),
339
339
  LicenseManagerLinuxSubscriptions: require('./licensemanagerlinuxsubscriptions'),
340
340
  KendraRanking: require('./kendraranking'),
341
- CleanRooms: require('./cleanrooms')
341
+ CleanRooms: require('./cleanrooms'),
342
+ CloudTrailData: require('./cloudtraildata')
342
343
  };
@@ -717,6 +717,10 @@ declare namespace AppSync {
717
717
  * Relational database settings.
718
718
  */
719
719
  relationalDatabaseConfig?: RelationalDatabaseDataSourceConfig;
720
+ /**
721
+ * Amazon EventBridge settings.
722
+ */
723
+ eventBridgeConfig?: EventBridgeDataSourceConfig;
720
724
  }
721
725
  export interface CreateDataSourceResponse {
722
726
  /**
@@ -925,7 +929,7 @@ declare namespace AppSync {
925
929
  */
926
930
  description?: String;
927
931
  /**
928
- * The type of the data source. AWS_LAMBDA: The data source is an Lambda function. AMAZON_DYNAMODB: The data source is an Amazon DynamoDB table. AMAZON_ELASTICSEARCH: The data source is an Amazon OpenSearch Service domain. AMAZON_OPENSEARCH_SERVICE: The data source is an Amazon OpenSearch Service domain. NONE: There is no data source. Use this type when you want to invoke a GraphQL operation without connecting to a data source, such as when you're performing data transformation with resolvers or invoking a subscription from a mutation. HTTP: The data source is an HTTP endpoint. RELATIONAL_DATABASE: The data source is a relational database.
932
+ * The type of the data source. AWS_LAMBDA: The data source is an Lambda function. AMAZON_DYNAMODB: The data source is an Amazon DynamoDB table. AMAZON_ELASTICSEARCH: The data source is an Amazon OpenSearch Service domain. AMAZON_OPENSEARCH_SERVICE: The data source is an Amazon OpenSearch Service domain. AMAZON_EVENTBRIDGE: The data source is an Amazon EventBridge configuration. NONE: There is no data source. Use this type when you want to invoke a GraphQL operation without connecting to a data source, such as when you're performing data transformation with resolvers or invoking a subscription from a mutation. HTTP: The data source is an HTTP endpoint. RELATIONAL_DATABASE: The data source is a relational database.
929
933
  */
930
934
  type?: DataSourceType;
931
935
  /**
@@ -956,8 +960,12 @@ declare namespace AppSync {
956
960
  * Relational database settings.
957
961
  */
958
962
  relationalDatabaseConfig?: RelationalDatabaseDataSourceConfig;
963
+ /**
964
+ * Amazon EventBridge settings.
965
+ */
966
+ eventBridgeConfig?: EventBridgeDataSourceConfig;
959
967
  }
960
- export type DataSourceType = "AWS_LAMBDA"|"AMAZON_DYNAMODB"|"AMAZON_ELASTICSEARCH"|"NONE"|"HTTP"|"RELATIONAL_DATABASE"|"AMAZON_OPENSEARCH_SERVICE"|string;
968
+ export type DataSourceType = "AWS_LAMBDA"|"AMAZON_DYNAMODB"|"AMAZON_ELASTICSEARCH"|"NONE"|"HTTP"|"RELATIONAL_DATABASE"|"AMAZON_OPENSEARCH_SERVICE"|"AMAZON_EVENTBRIDGE"|string;
961
969
  export type DataSources = DataSource[];
962
970
  export type DefaultAction = "ALLOW"|"DENY"|string;
963
971
  export interface DeleteApiCacheRequest {
@@ -1201,6 +1209,12 @@ declare namespace AppSync {
1201
1209
  logs?: Logs;
1202
1210
  }
1203
1211
  export type EvaluationResult = string;
1212
+ export interface EventBridgeDataSourceConfig {
1213
+ /**
1214
+ * The ARN of the event bus. For more information about event buses, see Amazon EventBridge event buses.
1215
+ */
1216
+ eventBusArn: String;
1217
+ }
1204
1218
  export type FieldLogLevel = "NONE"|"ERROR"|"ALL"|string;
1205
1219
  export interface FlushApiCacheRequest {
1206
1220
  /**
@@ -2035,6 +2049,10 @@ declare namespace AppSync {
2035
2049
  * The new relational database configuration.
2036
2050
  */
2037
2051
  relationalDatabaseConfig?: RelationalDatabaseDataSourceConfig;
2052
+ /**
2053
+ * The new Amazon EventBridge settings.
2054
+ */
2055
+ eventBridgeConfig?: EventBridgeDataSourceConfig;
2038
2056
  }
2039
2057
  export interface UpdateDataSourceResponse {
2040
2058
  /**