aws-sdk 2.658.0 → 2.662.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 (57) hide show
  1. package/CHANGELOG.md +30 -1
  2. package/README.md +1 -1
  3. package/apis/apigatewayv2-2018-11-29.min.json +51 -0
  4. package/apis/application-autoscaling-2016-02-06.examples.json +6 -169
  5. package/apis/ce-2017-10-25.min.json +123 -88
  6. package/apis/ce-2017-10-25.paginators.json +5 -0
  7. package/apis/codeguru-reviewer-2019-09-19.min.json +341 -3
  8. package/apis/codeguru-reviewer-2019-09-19.paginators.json +15 -0
  9. package/apis/elasticmapreduce-2009-03-31.min.json +98 -17
  10. package/apis/es-2015-01-01.min.json +3 -0
  11. package/apis/firehose-2015-08-04.min.json +74 -30
  12. package/apis/guardduty-2017-11-28.min.json +165 -16
  13. package/apis/guardduty-2017-11-28.paginators.json +6 -0
  14. package/apis/iotevents-2018-07-27.min.json +102 -20
  15. package/apis/mediapackage-vod-2018-11-07.min.json +173 -36
  16. package/apis/metadata.json +3 -0
  17. package/apis/pinpoint-2016-12-01.min.json +363 -335
  18. package/apis/ram-2018-01-04.min.json +30 -0
  19. package/apis/rds-2014-10-31.min.json +2 -0
  20. package/apis/redshift-2012-12-01.min.json +154 -46
  21. package/apis/redshift-2012-12-01.paginators.json +6 -0
  22. package/apis/route53domains-2014-05-15.min.json +97 -24
  23. package/apis/storagegateway-2013-06-30.min.json +99 -14
  24. package/apis/synthetics-2017-10-11.examples.json +5 -0
  25. package/apis/synthetics-2017-10-11.min.json +578 -0
  26. package/apis/synthetics-2017-10-11.paginators.json +24 -0
  27. package/apis/transfer-2018-11-05.min.json +41 -24
  28. package/clients/all.d.ts +1 -0
  29. package/clients/all.js +2 -1
  30. package/clients/apigatewayv2.d.ts +40 -2
  31. package/clients/applicationautoscaling.d.ts +83 -83
  32. package/clients/codegurureviewer.d.ts +417 -10
  33. package/clients/costexplorer.d.ts +66 -28
  34. package/clients/emr.d.ts +91 -6
  35. package/clients/es.d.ts +4 -0
  36. package/clients/firehose.d.ts +50 -8
  37. package/clients/fms.d.ts +6 -6
  38. package/clients/glue.d.ts +4 -4
  39. package/clients/guardduty.d.ts +340 -224
  40. package/clients/iotevents.d.ts +106 -0
  41. package/clients/mediapackagevod.d.ts +55 -0
  42. package/clients/pinpoint.d.ts +115 -77
  43. package/clients/ram.d.ts +41 -2
  44. package/clients/rds.d.ts +13 -5
  45. package/clients/redshift.d.ts +162 -1
  46. package/clients/route53domains.d.ts +140 -47
  47. package/clients/storagegateway.d.ts +137 -60
  48. package/clients/synthetics.d.ts +656 -0
  49. package/clients/synthetics.js +18 -0
  50. package/clients/transfer.d.ts +154 -123
  51. package/dist/aws-sdk-core-react-native.js +2 -2
  52. package/dist/aws-sdk-react-native.js +61 -24
  53. package/dist/aws-sdk.js +664 -222
  54. package/dist/aws-sdk.min.js +74 -74
  55. package/lib/config_service_placeholders.d.ts +2 -0
  56. package/lib/core.js +1 -1
  57. package/package.json +1 -1
@@ -139,6 +139,14 @@ declare class IoTEvents extends Service {
139
139
  * Updates an input.
140
140
  */
141
141
  updateInput(callback?: (err: AWSError, data: IoTEvents.Types.UpdateInputResponse) => void): Request<IoTEvents.Types.UpdateInputResponse, AWSError>;
142
+ /**
143
+ *
144
+ */
145
+ verifyResourcesExistForTagris(params: IoTEvents.Types.TagrisVerifyResourcesExistInput, callback?: (err: AWSError, data: IoTEvents.Types.TagrisVerifyResourcesExistOutput) => void): Request<IoTEvents.Types.TagrisVerifyResourcesExistOutput, AWSError>;
146
+ /**
147
+ *
148
+ */
149
+ verifyResourcesExistForTagris(callback?: (err: AWSError, data: IoTEvents.Types.TagrisVerifyResourcesExistOutput) => void): Request<IoTEvents.Types.TagrisVerifyResourcesExistOutput, AWSError>;
142
150
  }
143
151
  declare namespace IoTEvents {
144
152
  export interface Action {
@@ -190,9 +198,66 @@ declare namespace IoTEvents {
190
198
  * Writes to the DynamoDB table that you created. The default action payload contains all attribute-value pairs that have the information about the detector model instance and the event that triggered the action. You can also customize the payload. A separate column of the DynamoDB table receives one attribute-value pair in the payload that you specify. For more information, see Actions in AWS IoT Events Developer Guide.
191
199
  */
192
200
  dynamoDBv2?: DynamoDBv2Action;
201
+ /**
202
+ * Sends information about the detector model instance and the event that triggered the action to an AWS IoT SiteWise asset property.
203
+ */
204
+ iotSiteWise?: IotSiteWiseAction;
193
205
  }
194
206
  export type Actions = Action[];
195
207
  export type AmazonResourceName = string;
208
+ export type AssetId = string;
209
+ export type AssetPropertyAlias = string;
210
+ export type AssetPropertyBooleanValue = string;
211
+ export type AssetPropertyDoubleValue = string;
212
+ export type AssetPropertyEntryId = string;
213
+ export type AssetPropertyId = string;
214
+ export type AssetPropertyIntegerValue = string;
215
+ export type AssetPropertyOffsetInNanos = string;
216
+ export type AssetPropertyQuality = string;
217
+ export type AssetPropertyStringValue = string;
218
+ export type AssetPropertyTimeInSeconds = string;
219
+ export interface AssetPropertyTimestamp {
220
+ /**
221
+ * The timestamp, in seconds, in the Unix epoch format. The valid range is between 1-31556889864403199. You can also specify an expression.
222
+ */
223
+ timeInSeconds: AssetPropertyTimeInSeconds;
224
+ /**
225
+ * The nanosecond offset converted from timeInSeconds. The valid range is between 0-999999999. You can also specify an expression.
226
+ */
227
+ offsetInNanos?: AssetPropertyOffsetInNanos;
228
+ }
229
+ export interface AssetPropertyValue {
230
+ /**
231
+ * The value to send to an asset property.
232
+ */
233
+ value: AssetPropertyVariant;
234
+ /**
235
+ * The timestamp associated with the asset property value. The default is the current event time.
236
+ */
237
+ timestamp?: AssetPropertyTimestamp;
238
+ /**
239
+ * The quality of the asset property value. The value must be GOOD, BAD, or UNCERTAIN. You can also specify an expression.
240
+ */
241
+ quality?: AssetPropertyQuality;
242
+ }
243
+ export interface AssetPropertyVariant {
244
+ /**
245
+ * The asset property value is a string. You can also specify an expression. If you use an expression, the evaluated result should be a string.
246
+ */
247
+ stringValue?: AssetPropertyStringValue;
248
+ /**
249
+ * The asset property value is an integer. You can also specify an expression. If you use an expression, the evaluated result should be an integer.
250
+ */
251
+ integerValue?: AssetPropertyIntegerValue;
252
+ /**
253
+ * The asset property value is a double. You can also specify an expression. If you use an expression, the evaluated result should be a double.
254
+ */
255
+ doubleValue?: AssetPropertyDoubleValue;
256
+ /**
257
+ * The asset property value is a Boolean value that must be TRUE or FALSE. You can also specify an expression. If you use an expression, the evaluated result should be a Boolean value.
258
+ */
259
+ booleanValue?: AssetPropertyBooleanValue;
260
+ }
196
261
  export interface Attribute {
197
262
  /**
198
263
  * An expression that specifies an attribute-value pair in a JSON structure. Use this to specify an attribute from the JSON payload that is made available by the input. Inputs are derived from messages sent to AWS IoT Events (BatchPutMessage). Each such message contains a JSON payload. The attribute (and its paired value) specified here are available for use in the condition expressions used by detectors. Syntax: &lt;field-name&gt;.&lt;field-name&gt;...
@@ -616,6 +681,28 @@ declare namespace IoTEvents {
616
681
  */
617
682
  payload?: Payload;
618
683
  }
684
+ export interface IotSiteWiseAction {
685
+ /**
686
+ * A unique identifier for this entry. You can use the entry ID to track which data entry causes an error in case of failure. The default is a new unique identifier. You can also specify an expression.
687
+ */
688
+ entryId?: AssetPropertyEntryId;
689
+ /**
690
+ * The ID of the asset that has the specified property. You can specify an expression.
691
+ */
692
+ assetId?: AssetId;
693
+ /**
694
+ * The ID of the asset property. You can specify an expression.
695
+ */
696
+ propertyId?: AssetPropertyId;
697
+ /**
698
+ * The alias of the asset property. You can also specify an expression.
699
+ */
700
+ propertyAlias?: AssetPropertyAlias;
701
+ /**
702
+ * The value to send to the asset property. This value contains timestamp, quality, and value (TQV) information.
703
+ */
704
+ propertyValue: AssetPropertyValue;
705
+ }
619
706
  export interface IotTopicPublishAction {
620
707
  /**
621
708
  * The MQTT topic of the message. You can use a string expression that includes variables ($variable.&lt;variable-name&gt;) and input values ($input.&lt;input-name&gt;.&lt;path-to-datum&gt;) as the topic string.
@@ -876,6 +963,25 @@ declare namespace IoTEvents {
876
963
  export interface TagResourceResponse {
877
964
  }
878
965
  export type TagValue = string;
966
+ export type TagrisAccountId = string;
967
+ export type TagrisAmazonResourceName = string;
968
+ export type TagrisInternalId = string;
969
+ export type TagrisStatus = "ACTIVE"|"NOT_ACTIVE"|string;
970
+ export type TagrisSweepList = TagrisSweepListItem[];
971
+ export interface TagrisSweepListItem {
972
+ TagrisAccountId?: TagrisAccountId;
973
+ TagrisAmazonResourceName?: TagrisAmazonResourceName;
974
+ TagrisInternalId?: TagrisInternalId;
975
+ TagrisVersion?: TagrisVersion;
976
+ }
977
+ export type TagrisSweepListResult = {[key: string]: TagrisStatus};
978
+ export interface TagrisVerifyResourcesExistInput {
979
+ TagrisSweepList: TagrisSweepList;
980
+ }
981
+ export interface TagrisVerifyResourcesExistOutput {
982
+ TagrisSweepListResult: TagrisSweepListResult;
983
+ }
984
+ export type TagrisVersion = number;
879
985
  export type Tags = Tag[];
880
986
  export type TimerName = string;
881
987
  export type Timestamp = Date;
@@ -107,6 +107,30 @@ declare class MediaPackageVod extends Service {
107
107
  * Returns a collection of MediaPackage VOD PackagingGroup resources.
108
108
  */
109
109
  listPackagingGroups(callback?: (err: AWSError, data: MediaPackageVod.Types.ListPackagingGroupsResponse) => void): Request<MediaPackageVod.Types.ListPackagingGroupsResponse, AWSError>;
110
+ /**
111
+ * List tags for a given MediaPackage VOD resource
112
+ */
113
+ listTagsForResource(params: MediaPackageVod.Types.ListTagsForResourceRequest, callback?: (err: AWSError, data: MediaPackageVod.Types.ListTagsForResourceResponse) => void): Request<MediaPackageVod.Types.ListTagsForResourceResponse, AWSError>;
114
+ /**
115
+ * List tags for a given MediaPackage VOD resource
116
+ */
117
+ listTagsForResource(callback?: (err: AWSError, data: MediaPackageVod.Types.ListTagsForResourceResponse) => void): Request<MediaPackageVod.Types.ListTagsForResourceResponse, AWSError>;
118
+ /**
119
+ * Set tags for a given MediaPackage VOD resource
120
+ */
121
+ tagResource(params: MediaPackageVod.Types.TagResourceRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
122
+ /**
123
+ * Set tags for a given MediaPackage VOD resource
124
+ */
125
+ tagResource(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
126
+ /**
127
+ * Delete tags for a given MediaPackage VOD resource
128
+ */
129
+ untagResource(params: MediaPackageVod.Types.UntagResourceRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
130
+ /**
131
+ * Delete tags for a given MediaPackage VOD resource
132
+ */
133
+ untagResource(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
110
134
  }
111
135
  declare namespace MediaPackageVod {
112
136
  export type AdMarkers = "NONE"|"SCTE35_ENHANCED"|"PASSTHROUGH"|string;
@@ -139,6 +163,7 @@ declare namespace MediaPackageVod {
139
163
  * The IAM role ARN used to access the source S3 bucket.
140
164
  */
141
165
  SourceRoleArn?: __string;
166
+ Tags?: Tags;
142
167
  }
143
168
  export interface CmafEncryption {
144
169
  SpekeKeyProvider: SpekeKeyProvider;
@@ -177,6 +202,7 @@ rounded to the nearest multiple of the source fragment duration.
177
202
  * The IAM role ARN used to access the source S3 bucket.
178
203
  */
179
204
  SourceRoleArn: __string;
205
+ Tags?: Tags;
180
206
  }
181
207
  export interface CreateAssetResponse {
182
208
  /**
@@ -211,6 +237,7 @@ rounded to the nearest multiple of the source fragment duration.
211
237
  * The IAM role_arn used to access the source S3 bucket.
212
238
  */
213
239
  SourceRoleArn?: __string;
240
+ Tags?: Tags;
214
241
  }
215
242
  export interface CreatePackagingConfigurationRequest {
216
243
  CmafPackage?: CmafPackage;
@@ -225,6 +252,7 @@ rounded to the nearest multiple of the source fragment duration.
225
252
  * The ID of a PackagingGroup.
226
253
  */
227
254
  PackagingGroupId: __string;
255
+ Tags?: Tags;
228
256
  }
229
257
  export interface CreatePackagingConfigurationResponse {
230
258
  /**
@@ -243,12 +271,14 @@ rounded to the nearest multiple of the source fragment duration.
243
271
  * The ID of a PackagingGroup.
244
272
  */
245
273
  PackagingGroupId?: __string;
274
+ Tags?: Tags;
246
275
  }
247
276
  export interface CreatePackagingGroupRequest {
248
277
  /**
249
278
  * The ID of the PackagingGroup.
250
279
  */
251
280
  Id: __string;
281
+ Tags?: Tags;
252
282
  }
253
283
  export interface CreatePackagingGroupResponse {
254
284
  /**
@@ -263,6 +293,7 @@ rounded to the nearest multiple of the source fragment duration.
263
293
  * The ID of the PackagingGroup.
264
294
  */
265
295
  Id?: __string;
296
+ Tags?: Tags;
266
297
  }
267
298
  export interface DashEncryption {
268
299
  SpekeKeyProvider: SpekeKeyProvider;
@@ -374,6 +405,7 @@ rounded to the nearest multiple of the source segment duration.
374
405
  * The IAM role_arn used to access the source S3 bucket.
375
406
  */
376
407
  SourceRoleArn?: __string;
408
+ Tags?: Tags;
377
409
  }
378
410
  export interface DescribePackagingConfigurationRequest {
379
411
  /**
@@ -398,6 +430,7 @@ rounded to the nearest multiple of the source segment duration.
398
430
  * The ID of a PackagingGroup.
399
431
  */
400
432
  PackagingGroupId?: __string;
433
+ Tags?: Tags;
401
434
  }
402
435
  export interface DescribePackagingGroupRequest {
403
436
  /**
@@ -418,6 +451,7 @@ rounded to the nearest multiple of the source segment duration.
418
451
  * The ID of the PackagingGroup.
419
452
  */
420
453
  Id?: __string;
454
+ Tags?: Tags;
421
455
  }
422
456
  export interface EgressEndpoint {
423
457
  /**
@@ -566,6 +600,12 @@ rounded to the nearest multiple of the source fragment duration.
566
600
  */
567
601
  PackagingGroups?: __listOfPackagingGroup;
568
602
  }
603
+ export interface ListTagsForResourceRequest {
604
+ ResourceArn: __string;
605
+ }
606
+ export interface ListTagsForResourceResponse {
607
+ Tags?: __mapOf__string;
608
+ }
569
609
  export type ManifestLayout = "FULL"|"COMPACT"|string;
570
610
  export type MaxResults = number;
571
611
  export interface MssEncryption {
@@ -606,6 +646,7 @@ rounded to the nearest multiple of the source fragment duration.
606
646
  * The ID of a PackagingGroup.
607
647
  */
608
648
  PackagingGroupId?: __string;
649
+ Tags?: Tags;
609
650
  }
610
651
  export interface PackagingGroup {
611
652
  /**
@@ -620,6 +661,7 @@ rounded to the nearest multiple of the source fragment duration.
620
661
  * The ID of the PackagingGroup.
621
662
  */
622
663
  Id?: __string;
664
+ Tags?: Tags;
623
665
  }
624
666
  export type Profile = "NONE"|"HBBTV_1_5"|string;
625
667
  export type SegmentTemplateFormat = "NUMBER_WITH_TIMELINE"|"TIME_WITH_TIMELINE"|"NUMBER_WITH_DURATION"|string;
@@ -654,6 +696,18 @@ MediaPackage will assume when accessing the key provider service.
654
696
  */
655
697
  StreamOrder?: StreamOrder;
656
698
  }
699
+ export interface TagResourceRequest {
700
+ ResourceArn: __string;
701
+ Tags: __mapOf__string;
702
+ }
703
+ export type Tags = {[key: string]: __string};
704
+ export interface UntagResourceRequest {
705
+ ResourceArn: __string;
706
+ /**
707
+ * The key(s) of tag to be deleted
708
+ */
709
+ TagKeys: __listOf__string;
710
+ }
657
711
  export type __PeriodTriggersElement = "ADS"|string;
658
712
  export type __boolean = boolean;
659
713
  export type __integer = number;
@@ -666,6 +720,7 @@ MediaPackage will assume when accessing the key provider service.
666
720
  export type __listOfPackagingGroup = PackagingGroup[];
667
721
  export type __listOf__PeriodTriggersElement = __PeriodTriggersElement[];
668
722
  export type __listOf__string = __string[];
723
+ export type __mapOf__string = {[key: string]: __string};
669
724
  export type __string = string;
670
725
  /**
671
726
  * A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.