aws-sdk 2.771.0 → 2.772.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 (37) hide show
  1. package/CHANGELOG.md +16 -1
  2. package/README.md +1 -1
  3. package/apis/accessanalyzer-2019-11-01.min.json +70 -48
  4. package/apis/budgets-2016-10-20.min.json +411 -0
  5. package/apis/budgets-2016-10-20.paginators.json +18 -0
  6. package/apis/dms-2016-01-01.min.json +15 -3
  7. package/apis/groundstation-2019-05-23.min.json +1 -0
  8. package/apis/iot-2015-05-28.min.json +4 -1
  9. package/apis/macie2-2020-01-01.min.json +159 -22
  10. package/apis/rds-2014-10-31.min.json +13 -1
  11. package/apis/rekognition-2016-06-27.min.json +161 -51
  12. package/apis/ssm-2014-11-06.min.json +147 -126
  13. package/apis/transfer-2018-11-05.min.json +32 -28
  14. package/apis/workmail-2017-10-01.min.json +93 -30
  15. package/apis/xray-2016-04-12.min.json +11 -5
  16. package/apis/xray-2016-04-12.paginators.json +0 -15
  17. package/clients/accessanalyzer.d.ts +26 -4
  18. package/clients/budgets.d.ts +358 -0
  19. package/clients/costexplorer.d.ts +1 -1
  20. package/clients/dms.d.ts +26 -2
  21. package/clients/glue.d.ts +1 -1
  22. package/clients/groundstation.d.ts +5 -1
  23. package/clients/iot.d.ts +10 -6
  24. package/clients/macie2.d.ts +182 -62
  25. package/clients/rds.d.ts +13 -9
  26. package/clients/rekognition.d.ts +123 -0
  27. package/clients/ssm.d.ts +63 -11
  28. package/clients/transfer.d.ts +77 -71
  29. package/clients/workmail.d.ts +91 -1
  30. package/clients/workspaces.d.ts +12 -12
  31. package/clients/xray.d.ts +29 -21
  32. package/dist/aws-sdk-core-react-native.js +1 -1
  33. package/dist/aws-sdk-react-native.js +15 -15
  34. package/dist/aws-sdk.js +339 -202
  35. package/dist/aws-sdk.min.js +39 -39
  36. package/lib/core.js +1 -1
  37. package/package.json +1 -1
@@ -51,6 +51,14 @@ declare class WorkMail extends Service {
51
51
  * Creates a group that can be used in Amazon WorkMail by calling the RegisterToWorkMail operation.
52
52
  */
53
53
  createGroup(callback?: (err: AWSError, data: WorkMail.Types.CreateGroupResponse) => void): Request<WorkMail.Types.CreateGroupResponse, AWSError>;
54
+ /**
55
+ * Creates a new Amazon WorkMail organization. Optionally, you can choose to associate an existing AWS Directory Service directory with your organization. If an AWS Directory Service directory ID is specified, the organization alias must match the directory alias. If you choose not to associate an existing directory with your organization, then we create a new Amazon WorkMail directory for you. For more information, see Adding an organization in the Amazon WorkMail Administrator Guide. You can associate multiple email domains with an organization, then set your default email domain from the Amazon WorkMail console. You can also associate a domain that is managed in an Amazon Route 53 public hosted zone. For more information, see Adding a domain and Choosing the default domain in the Amazon WorkMail Administrator Guide. Optionally, you can use a customer managed master key from AWS Key Management Service (AWS KMS) to encrypt email for your organization. If you don't associate an AWS KMS key, Amazon WorkMail creates a default AWS managed master key for you.
56
+ */
57
+ createOrganization(params: WorkMail.Types.CreateOrganizationRequest, callback?: (err: AWSError, data: WorkMail.Types.CreateOrganizationResponse) => void): Request<WorkMail.Types.CreateOrganizationResponse, AWSError>;
58
+ /**
59
+ * Creates a new Amazon WorkMail organization. Optionally, you can choose to associate an existing AWS Directory Service directory with your organization. If an AWS Directory Service directory ID is specified, the organization alias must match the directory alias. If you choose not to associate an existing directory with your organization, then we create a new Amazon WorkMail directory for you. For more information, see Adding an organization in the Amazon WorkMail Administrator Guide. You can associate multiple email domains with an organization, then set your default email domain from the Amazon WorkMail console. You can also associate a domain that is managed in an Amazon Route 53 public hosted zone. For more information, see Adding a domain and Choosing the default domain in the Amazon WorkMail Administrator Guide. Optionally, you can use a customer managed master key from AWS Key Management Service (AWS KMS) to encrypt email for your organization. If you don't associate an AWS KMS key, Amazon WorkMail creates a default AWS managed master key for you.
60
+ */
61
+ createOrganization(callback?: (err: AWSError, data: WorkMail.Types.CreateOrganizationResponse) => void): Request<WorkMail.Types.CreateOrganizationResponse, AWSError>;
54
62
  /**
55
63
  * Creates a new Amazon WorkMail resource.
56
64
  */
@@ -99,6 +107,14 @@ declare class WorkMail extends Service {
99
107
  * Deletes permissions granted to a member (user or group).
100
108
  */
101
109
  deleteMailboxPermissions(callback?: (err: AWSError, data: WorkMail.Types.DeleteMailboxPermissionsResponse) => void): Request<WorkMail.Types.DeleteMailboxPermissionsResponse, AWSError>;
110
+ /**
111
+ * Deletes an Amazon WorkMail organization and all underlying AWS resources managed by Amazon WorkMail as part of the organization. You can choose whether to delete the associated directory. For more information, see Removing an organization in the Amazon WorkMail Administrator Guide.
112
+ */
113
+ deleteOrganization(params: WorkMail.Types.DeleteOrganizationRequest, callback?: (err: AWSError, data: WorkMail.Types.DeleteOrganizationResponse) => void): Request<WorkMail.Types.DeleteOrganizationResponse, AWSError>;
114
+ /**
115
+ * Deletes an Amazon WorkMail organization and all underlying AWS resources managed by Amazon WorkMail as part of the organization. You can choose whether to delete the associated directory. For more information, see Removing an organization in the Amazon WorkMail Administrator Guide.
116
+ */
117
+ deleteOrganization(callback?: (err: AWSError, data: WorkMail.Types.DeleteOrganizationResponse) => void): Request<WorkMail.Types.DeleteOrganizationResponse, AWSError>;
102
118
  /**
103
119
  * Deletes the specified resource.
104
120
  */
@@ -539,6 +555,38 @@ declare namespace WorkMail {
539
555
  */
540
556
  GroupId?: WorkMailIdentifier;
541
557
  }
558
+ export interface CreateOrganizationRequest {
559
+ /**
560
+ * The AWS Directory Service directory ID.
561
+ */
562
+ DirectoryId?: DirectoryId;
563
+ /**
564
+ * The organization alias.
565
+ */
566
+ Alias: OrganizationName;
567
+ /**
568
+ * The idempotency token associated with the request.
569
+ */
570
+ ClientToken?: IdempotencyClientToken;
571
+ /**
572
+ * The email domains to associate with the organization.
573
+ */
574
+ Domains?: Domains;
575
+ /**
576
+ * The Amazon Resource Name (ARN) of a customer managed master key from AWS KMS.
577
+ */
578
+ KmsKeyArn?: KmsKeyArn;
579
+ /**
580
+ * When true, allows organization interoperability between Amazon WorkMail and Microsoft Exchange. Can only be set to true if an AD Connector directory ID is included in the request.
581
+ */
582
+ EnableInteroperability?: Boolean;
583
+ }
584
+ export interface CreateOrganizationResponse {
585
+ /**
586
+ * The organization ID.
587
+ */
588
+ OrganizationId?: OrganizationId;
589
+ }
542
590
  export interface CreateResourceRequest {
543
591
  /**
544
592
  * The identifier associated with the organization for which the resource is created.
@@ -639,7 +687,7 @@ declare namespace WorkMail {
639
687
  */
640
688
  OrganizationId: OrganizationId;
641
689
  /**
642
- * The identifier of the member (user or group)that owns the mailbox.
690
+ * The identifier of the member (user or group) that owns the mailbox.
643
691
  */
644
692
  EntityId: WorkMailIdentifier;
645
693
  /**
@@ -649,6 +697,30 @@ declare namespace WorkMail {
649
697
  }
650
698
  export interface DeleteMailboxPermissionsResponse {
651
699
  }
700
+ export interface DeleteOrganizationRequest {
701
+ /**
702
+ * The idempotency token associated with the request.
703
+ */
704
+ ClientToken?: IdempotencyClientToken;
705
+ /**
706
+ * The organization ID.
707
+ */
708
+ OrganizationId: OrganizationId;
709
+ /**
710
+ * If true, deletes the AWS Directory Service directory associated with the organization.
711
+ */
712
+ DeleteDirectory: Boolean;
713
+ }
714
+ export interface DeleteOrganizationResponse {
715
+ /**
716
+ * The organization ID.
717
+ */
718
+ OrganizationId?: OrganizationId;
719
+ /**
720
+ * The state of the organization.
721
+ */
722
+ State?: String;
723
+ }
652
724
  export interface DeleteResourceRequest {
653
725
  /**
654
726
  * The identifier associated with the organization from which the resource is deleted.
@@ -926,6 +998,7 @@ declare namespace WorkMail {
926
998
  DisabledDate?: Timestamp;
927
999
  }
928
1000
  export type Description = string;
1001
+ export type DirectoryId = string;
929
1002
  export interface DisassociateDelegateFromResourceRequest {
930
1003
  /**
931
1004
  * The identifier for the organization under which the resource exists.
@@ -958,6 +1031,18 @@ declare namespace WorkMail {
958
1031
  }
959
1032
  export interface DisassociateMemberFromGroupResponse {
960
1033
  }
1034
+ export interface Domain {
1035
+ /**
1036
+ * The fully qualified domain name.
1037
+ */
1038
+ DomainName?: DomainName;
1039
+ /**
1040
+ * The hosted zone ID for a domain hosted in Route 53. Required when configuring a domain hosted in Route 53.
1041
+ */
1042
+ HostedZoneId?: HostedZoneId;
1043
+ }
1044
+ export type DomainName = string;
1045
+ export type Domains = Domain[];
961
1046
  export type EmailAddress = string;
962
1047
  export type EntityState = "ENABLED"|"DISABLED"|"DELETED"|string;
963
1048
  export interface FolderConfiguration {
@@ -1076,6 +1161,7 @@ declare namespace WorkMail {
1076
1161
  }
1077
1162
  export type GroupName = string;
1078
1163
  export type Groups = Group[];
1164
+ export type HostedZoneId = string;
1079
1165
  export type IdempotencyClientToken = string;
1080
1166
  export type IpAddress = string;
1081
1167
  export type IpRange = string;
@@ -1419,6 +1505,10 @@ declare namespace WorkMail {
1419
1505
  * The alias associated with the organization.
1420
1506
  */
1421
1507
  Alias?: OrganizationName;
1508
+ /**
1509
+ * The default email domain associated with the organization.
1510
+ */
1511
+ DefaultMailDomain?: DomainName;
1422
1512
  /**
1423
1513
  * The error message associated with the organization. It is only present if unexpected behavior has occurred with regards to the organization. It provides insight or solutions regarding unexpected behavior.
1424
1514
  */
@@ -36,11 +36,11 @@ declare class WorkSpaces extends Service {
36
36
  */
37
37
  authorizeIpRules(callback?: (err: AWSError, data: WorkSpaces.Types.AuthorizeIpRulesResult) => void): Request<WorkSpaces.Types.AuthorizeIpRulesResult, AWSError>;
38
38
  /**
39
- * Copies the specified image from the specified Region to the current Region.
39
+ * Copies the specified image from the specified Region to the current Region. For more information about copying images, see Copy a Custom WorkSpaces Image. Before copying a shared image, be sure to verify that it has been shared from the correct AWS account. To determine if an image has been shared and to see the AWS account ID that owns an image, use the DescribeWorkSpaceImages and DescribeWorkspaceImagePermissions API operations.
40
40
  */
41
41
  copyWorkspaceImage(params: WorkSpaces.Types.CopyWorkspaceImageRequest, callback?: (err: AWSError, data: WorkSpaces.Types.CopyWorkspaceImageResult) => void): Request<WorkSpaces.Types.CopyWorkspaceImageResult, AWSError>;
42
42
  /**
43
- * Copies the specified image from the specified Region to the current Region.
43
+ * Copies the specified image from the specified Region to the current Region. For more information about copying images, see Copy a Custom WorkSpaces Image. Before copying a shared image, be sure to verify that it has been shared from the correct AWS account. To determine if an image has been shared and to see the AWS account ID that owns an image, use the DescribeWorkSpaceImages and DescribeWorkspaceImagePermissions API operations.
44
44
  */
45
45
  copyWorkspaceImage(callback?: (err: AWSError, data: WorkSpaces.Types.CopyWorkspaceImageResult) => void): Request<WorkSpaces.Types.CopyWorkspaceImageResult, AWSError>;
46
46
  /**
@@ -252,11 +252,11 @@ declare class WorkSpaces extends Service {
252
252
  */
253
253
  importWorkspaceImage(callback?: (err: AWSError, data: WorkSpaces.Types.ImportWorkspaceImageResult) => void): Request<WorkSpaces.Types.ImportWorkspaceImageResult, AWSError>;
254
254
  /**
255
- * Retrieves a list of IP address ranges, specified as IPv4 CIDR blocks, that you can use for the network management interface when you enable Bring Your Own License (BYOL). The management network interface is connected to a secure Amazon WorkSpaces management network. It is used for interactive streaming of the WorkSpace desktop to Amazon WorkSpaces clients, and to allow Amazon WorkSpaces to manage the WorkSpace.
255
+ * Retrieves a list of IP address ranges, specified as IPv4 CIDR blocks, that you can use for the network management interface when you enable Bring Your Own License (BYOL). This operation can be run only by AWS accounts that are enabled for BYOL. If your account isn't enabled for BYOL, you'll receive an AccessDeniedException error. The management network interface is connected to a secure Amazon WorkSpaces management network. It is used for interactive streaming of the WorkSpace desktop to Amazon WorkSpaces clients, and to allow Amazon WorkSpaces to manage the WorkSpace.
256
256
  */
257
257
  listAvailableManagementCidrRanges(params: WorkSpaces.Types.ListAvailableManagementCidrRangesRequest, callback?: (err: AWSError, data: WorkSpaces.Types.ListAvailableManagementCidrRangesResult) => void): Request<WorkSpaces.Types.ListAvailableManagementCidrRangesResult, AWSError>;
258
258
  /**
259
- * Retrieves a list of IP address ranges, specified as IPv4 CIDR blocks, that you can use for the network management interface when you enable Bring Your Own License (BYOL). The management network interface is connected to a secure Amazon WorkSpaces management network. It is used for interactive streaming of the WorkSpace desktop to Amazon WorkSpaces clients, and to allow Amazon WorkSpaces to manage the WorkSpace.
259
+ * Retrieves a list of IP address ranges, specified as IPv4 CIDR blocks, that you can use for the network management interface when you enable Bring Your Own License (BYOL). This operation can be run only by AWS accounts that are enabled for BYOL. If your account isn't enabled for BYOL, you'll receive an AccessDeniedException error. The management network interface is connected to a secure Amazon WorkSpaces management network. It is used for interactive streaming of the WorkSpace desktop to Amazon WorkSpaces clients, and to allow Amazon WorkSpaces to manage the WorkSpace.
260
260
  */
261
261
  listAvailableManagementCidrRanges(callback?: (err: AWSError, data: WorkSpaces.Types.ListAvailableManagementCidrRangesResult) => void): Request<WorkSpaces.Types.ListAvailableManagementCidrRangesResult, AWSError>;
262
262
  /**
@@ -380,11 +380,11 @@ declare class WorkSpaces extends Service {
380
380
  */
381
381
  stopWorkspaces(callback?: (err: AWSError, data: WorkSpaces.Types.StopWorkspacesResult) => void): Request<WorkSpaces.Types.StopWorkspacesResult, AWSError>;
382
382
  /**
383
- * Terminates the specified WorkSpaces. Terminating a WorkSpace is a permanent action and cannot be undone. The user's data is destroyed. If you need to archive any user data, contact Amazon Web Services before terminating the WorkSpace. You can terminate a WorkSpace that is in any state except SUSPENDED. This operation is asynchronous and returns before the WorkSpaces have been completely terminated.
383
+ * Terminates the specified WorkSpaces. Terminating a WorkSpace is a permanent action and cannot be undone. The user's data is destroyed. If you need to archive any user data, contact AWS Support before terminating the WorkSpace. You can terminate a WorkSpace that is in any state except SUSPENDED. This operation is asynchronous and returns before the WorkSpaces have been completely terminated. After a WorkSpace is terminated, the TERMINATED state is returned only briefly before the WorkSpace directory metadata is cleaned up, so this state is rarely returned. To confirm that a WorkSpace is terminated, check for the WorkSpace ID by using DescribeWorkSpaces. If the WorkSpace ID isn't returned, then the WorkSpace has been successfully terminated.
384
384
  */
385
385
  terminateWorkspaces(params: WorkSpaces.Types.TerminateWorkspacesRequest, callback?: (err: AWSError, data: WorkSpaces.Types.TerminateWorkspacesResult) => void): Request<WorkSpaces.Types.TerminateWorkspacesResult, AWSError>;
386
386
  /**
387
- * Terminates the specified WorkSpaces. Terminating a WorkSpace is a permanent action and cannot be undone. The user's data is destroyed. If you need to archive any user data, contact Amazon Web Services before terminating the WorkSpace. You can terminate a WorkSpace that is in any state except SUSPENDED. This operation is asynchronous and returns before the WorkSpaces have been completely terminated.
387
+ * Terminates the specified WorkSpaces. Terminating a WorkSpace is a permanent action and cannot be undone. The user's data is destroyed. If you need to archive any user data, contact AWS Support before terminating the WorkSpace. You can terminate a WorkSpace that is in any state except SUSPENDED. This operation is asynchronous and returns before the WorkSpaces have been completely terminated. After a WorkSpace is terminated, the TERMINATED state is returned only briefly before the WorkSpace directory metadata is cleaned up, so this state is rarely returned. To confirm that a WorkSpace is terminated, check for the WorkSpace ID by using DescribeWorkSpaces. If the WorkSpace ID isn't returned, then the WorkSpace has been successfully terminated.
388
388
  */
389
389
  terminateWorkspaces(callback?: (err: AWSError, data: WorkSpaces.Types.TerminateWorkspacesResult) => void): Request<WorkSpaces.Types.TerminateWorkspacesResult, AWSError>;
390
390
  /**
@@ -404,11 +404,11 @@ declare class WorkSpaces extends Service {
404
404
  */
405
405
  updateRulesOfIpGroup(callback?: (err: AWSError, data: WorkSpaces.Types.UpdateRulesOfIpGroupResult) => void): Request<WorkSpaces.Types.UpdateRulesOfIpGroupResult, AWSError>;
406
406
  /**
407
- * Shares or unshares an image with one account by specifying whether that account has permission to copy the image. If the copy image permission is granted, the image is shared with that account. If the copy image permission is revoked, the image is unshared with the account. To delete an image that has been shared, you must unshare the image before you delete it. Sharing Bring Your Own License (BYOL) images across AWS accounts isn't supported at this time in the AWS GovCloud (US-West) Region. To share BYOL images across accounts in the AWS GovCloud (US-West) Region, contact AWS Support.
407
+ * Shares or unshares an image with one account by specifying whether that account has permission to copy the image. If the copy image permission is granted, the image is shared with that account. If the copy image permission is revoked, the image is unshared with the account. For more information about sharing images, see Share or Unshare a Custom WorkSpaces Image. To delete an image that has been shared, you must unshare the image before you delete it. Sharing Bring Your Own License (BYOL) images across AWS accounts isn't supported at this time in the AWS GovCloud (US-West) Region. To share BYOL images across accounts in the AWS GovCloud (US-West) Region, contact AWS Support.
408
408
  */
409
409
  updateWorkspaceImagePermission(params: WorkSpaces.Types.UpdateWorkspaceImagePermissionRequest, callback?: (err: AWSError, data: WorkSpaces.Types.UpdateWorkspaceImagePermissionResult) => void): Request<WorkSpaces.Types.UpdateWorkspaceImagePermissionResult, AWSError>;
410
410
  /**
411
- * Shares or unshares an image with one account by specifying whether that account has permission to copy the image. If the copy image permission is granted, the image is shared with that account. If the copy image permission is revoked, the image is unshared with the account. To delete an image that has been shared, you must unshare the image before you delete it. Sharing Bring Your Own License (BYOL) images across AWS accounts isn't supported at this time in the AWS GovCloud (US-West) Region. To share BYOL images across accounts in the AWS GovCloud (US-West) Region, contact AWS Support.
411
+ * Shares or unshares an image with one account by specifying whether that account has permission to copy the image. If the copy image permission is granted, the image is shared with that account. If the copy image permission is revoked, the image is unshared with the account. For more information about sharing images, see Share or Unshare a Custom WorkSpaces Image. To delete an image that has been shared, you must unshare the image before you delete it. Sharing Bring Your Own License (BYOL) images across AWS accounts isn't supported at this time in the AWS GovCloud (US-West) Region. To share BYOL images across accounts in the AWS GovCloud (US-West) Region, contact AWS Support.
412
412
  */
413
413
  updateWorkspaceImagePermission(callback?: (err: AWSError, data: WorkSpaces.Types.UpdateWorkspaceImagePermissionResult) => void): Request<WorkSpaces.Types.UpdateWorkspaceImagePermissionResult, AWSError>;
414
414
  }
@@ -650,7 +650,7 @@ declare namespace WorkSpaces {
650
650
  */
651
651
  ResourceId: NonEmptyString;
652
652
  /**
653
- * The tags. Each WorkSpaces resource can have a maximum of 50 tags. If you want to add new tags to a set of existing tags, you must submit all of the existing tags along with the new ones.
653
+ * The tags. Each WorkSpaces resource can have a maximum of 50 tags.
654
654
  */
655
655
  Tags: TagList;
656
656
  }
@@ -1569,7 +1569,7 @@ declare namespace WorkSpaces {
1569
1569
  */
1570
1570
  AllowCopyImage: BooleanObject;
1571
1571
  /**
1572
- * The identifier of the AWS account to share or unshare the image with.
1572
+ * The identifier of the AWS account to share or unshare the image with. Before sharing the image, confirm that you are sharing to the correct AWS account ID.
1573
1573
  */
1574
1574
  SharedAccountId: AwsAccount;
1575
1575
  }
@@ -1602,7 +1602,7 @@ declare namespace WorkSpaces {
1602
1602
  */
1603
1603
  IpAddress?: IpAddress;
1604
1604
  /**
1605
- * The operational state of the WorkSpace.
1605
+ * The operational state of the WorkSpace. After a WorkSpace is terminated, the TERMINATED state is returned only briefly before the WorkSpace directory metadata is cleaned up, so this state is rarely returned. To confirm that a WorkSpace is terminated, check for the WorkSpace ID by using DescribeWorkSpaces. If the WorkSpace ID isn't returned, then the WorkSpace has been successfully terminated.
1606
1606
  */
1607
1607
  State?: WorkspaceState;
1608
1608
  /**
@@ -1801,7 +1801,7 @@ declare namespace WorkSpaces {
1801
1801
  */
1802
1802
  WorkspaceSecurityGroupId?: SecurityGroupId;
1803
1803
  /**
1804
- * The state of the directory's registration with Amazon WorkSpaces.
1804
+ * The state of the directory's registration with Amazon WorkSpaces. After a directory is deregistered, the DEREGISTERED state is returned very briefly before the directory metadata is cleaned up, so this state is rarely returned. To confirm that a directory is deregistered, check for the directory ID by using DescribeWorkspaceDirectories. If the directory ID isn't returned, then the directory has been successfully deregistered.
1805
1805
  */
1806
1806
  State?: WorkspaceDirectoryState;
1807
1807
  /**
package/clients/xray.d.ts CHANGED
@@ -156,11 +156,11 @@ declare class XRay extends Service {
156
156
  */
157
157
  putTelemetryRecords(callback?: (err: AWSError, data: XRay.Types.PutTelemetryRecordsResult) => void): Request<XRay.Types.PutTelemetryRecordsResult, AWSError>;
158
158
  /**
159
- * Uploads segment documents to AWS X-Ray. The X-Ray SDK generates segment documents and sends them to the X-Ray daemon, which uploads them in batches. A segment document can be a completed segment, an in-progress segment, or an array of subsegments. Segments must include the following fields. For the full segment document schema, see AWS X-Ray Segment Documents in the AWS X-Ray Developer Guide. Required Segment Document Fields name - The name of the service that handled the request. id - A 64-bit identifier for the segment, unique among segments in the same trace, in 16 hexadecimal digits. trace_id - A unique identifier that connects all segments and subsegments originating from a single client request. start_time - Time the segment or subsegment was created, in floating point seconds in epoch time, accurate to milliseconds. For example, 1480615200.010 or 1.480615200010E9. end_time - Time the segment or subsegment was closed. For example, 1480615200.090 or 1.480615200090E9. Specify either an end_time or in_progress. in_progress - Set to true instead of specifying an end_time to record that a segment has been started, but is not complete. Send an in progress segment when your application receives a request that will take a long time to serve, to trace the fact that the request was received. When the response is sent, send the complete segment to overwrite the in-progress segment. A trace_id consists of three numbers separated by hyphens. For example, 1-58406520-a006649127e371903a2de979. This includes: Trace ID Format The version number, i.e. 1. The time of the original request, in Unix epoch time, in 8 hexadecimal digits. For example, 10:00AM December 2nd, 2016 PST in epoch time is 1480615200 seconds, or 58406520 in hexadecimal. A 96-bit identifier for the trace, globally unique, in 24 hexadecimal digits.
159
+ * Uploads segment documents to AWS X-Ray. The X-Ray SDK generates segment documents and sends them to the X-Ray daemon, which uploads them in batches. A segment document can be a completed segment, an in-progress segment, or an array of subsegments. Segments must include the following fields. For the full segment document schema, see AWS X-Ray Segment Documents in the AWS X-Ray Developer Guide. Required segment document fields name - The name of the service that handled the request. id - A 64-bit identifier for the segment, unique among segments in the same trace, in 16 hexadecimal digits. trace_id - A unique identifier that connects all segments and subsegments originating from a single client request. start_time - Time the segment or subsegment was created, in floating point seconds in epoch time, accurate to milliseconds. For example, 1480615200.010 or 1.480615200010E9. end_time - Time the segment or subsegment was closed. For example, 1480615200.090 or 1.480615200090E9. Specify either an end_time or in_progress. in_progress - Set to true instead of specifying an end_time to record that a segment has been started, but is not complete. Send an in-progress segment when your application receives a request that will take a long time to serve, to trace that the request was received. When the response is sent, send the complete segment to overwrite the in-progress segment. A trace_id consists of three numbers separated by hyphens. For example, 1-58406520-a006649127e371903a2de979. This includes: Trace ID Format The version number, for instance, 1. The time of the original request, in Unix epoch time, in 8 hexadecimal digits. For example, 10:00AM December 2nd, 2016 PST in epoch time is 1480615200 seconds, or 58406520 in hexadecimal. A 96-bit identifier for the trace, globally unique, in 24 hexadecimal digits.
160
160
  */
161
161
  putTraceSegments(params: XRay.Types.PutTraceSegmentsRequest, callback?: (err: AWSError, data: XRay.Types.PutTraceSegmentsResult) => void): Request<XRay.Types.PutTraceSegmentsResult, AWSError>;
162
162
  /**
163
- * Uploads segment documents to AWS X-Ray. The X-Ray SDK generates segment documents and sends them to the X-Ray daemon, which uploads them in batches. A segment document can be a completed segment, an in-progress segment, or an array of subsegments. Segments must include the following fields. For the full segment document schema, see AWS X-Ray Segment Documents in the AWS X-Ray Developer Guide. Required Segment Document Fields name - The name of the service that handled the request. id - A 64-bit identifier for the segment, unique among segments in the same trace, in 16 hexadecimal digits. trace_id - A unique identifier that connects all segments and subsegments originating from a single client request. start_time - Time the segment or subsegment was created, in floating point seconds in epoch time, accurate to milliseconds. For example, 1480615200.010 or 1.480615200010E9. end_time - Time the segment or subsegment was closed. For example, 1480615200.090 or 1.480615200090E9. Specify either an end_time or in_progress. in_progress - Set to true instead of specifying an end_time to record that a segment has been started, but is not complete. Send an in progress segment when your application receives a request that will take a long time to serve, to trace the fact that the request was received. When the response is sent, send the complete segment to overwrite the in-progress segment. A trace_id consists of three numbers separated by hyphens. For example, 1-58406520-a006649127e371903a2de979. This includes: Trace ID Format The version number, i.e. 1. The time of the original request, in Unix epoch time, in 8 hexadecimal digits. For example, 10:00AM December 2nd, 2016 PST in epoch time is 1480615200 seconds, or 58406520 in hexadecimal. A 96-bit identifier for the trace, globally unique, in 24 hexadecimal digits.
163
+ * Uploads segment documents to AWS X-Ray. The X-Ray SDK generates segment documents and sends them to the X-Ray daemon, which uploads them in batches. A segment document can be a completed segment, an in-progress segment, or an array of subsegments. Segments must include the following fields. For the full segment document schema, see AWS X-Ray Segment Documents in the AWS X-Ray Developer Guide. Required segment document fields name - The name of the service that handled the request. id - A 64-bit identifier for the segment, unique among segments in the same trace, in 16 hexadecimal digits. trace_id - A unique identifier that connects all segments and subsegments originating from a single client request. start_time - Time the segment or subsegment was created, in floating point seconds in epoch time, accurate to milliseconds. For example, 1480615200.010 or 1.480615200010E9. end_time - Time the segment or subsegment was closed. For example, 1480615200.090 or 1.480615200090E9. Specify either an end_time or in_progress. in_progress - Set to true instead of specifying an end_time to record that a segment has been started, but is not complete. Send an in-progress segment when your application receives a request that will take a long time to serve, to trace that the request was received. When the response is sent, send the complete segment to overwrite the in-progress segment. A trace_id consists of three numbers separated by hyphens. For example, 1-58406520-a006649127e371903a2de979. This includes: Trace ID Format The version number, for instance, 1. The time of the original request, in Unix epoch time, in 8 hexadecimal digits. For example, 10:00AM December 2nd, 2016 PST in epoch time is 1480615200 seconds, or 58406520 in hexadecimal. A 96-bit identifier for the trace, globally unique, in 24 hexadecimal digits.
164
164
  */
165
165
  putTraceSegments(callback?: (err: AWSError, data: XRay.Types.PutTraceSegmentsResult) => void): Request<XRay.Types.PutTraceSegmentsResult, AWSError>;
166
166
  /**
@@ -235,7 +235,7 @@ declare namespace XRay {
235
235
  export type AttributeValue = string;
236
236
  export interface AvailabilityZoneDetail {
237
237
  /**
238
- * The name of a corresponding availability zone.
238
+ * The name of a corresponding Availability Zone.
239
239
  */
240
240
  Name?: String;
241
241
  }
@@ -302,7 +302,7 @@ declare namespace XRay {
302
302
  */
303
303
  FilterExpression?: FilterExpression;
304
304
  /**
305
- * The structure containing configurations related to insights. The InsightsEnabled boolean can be set to true to enable insights for the new group or false to disable insights for the new group.
305
+ * The structure containing configurations related to insights. The InsightsEnabled boolean can be set to true to enable insights for the new group or false to disable insights for the new group. The NotifcationsEnabled boolean can be set to true to enable insights notifications for the new group. Notifications may only be enabled on a group with InsightsEnabled set to true.
306
306
  */
307
307
  InsightsConfiguration?: InsightsConfiguration;
308
308
  /**
@@ -312,7 +312,7 @@ declare namespace XRay {
312
312
  }
313
313
  export interface CreateGroupResult {
314
314
  /**
315
- * The group that was created. Contains the name of the group that was created, the ARN of the group that was generated based on the group name, the filter expression, and the insight configuration that was assigned to the group.
315
+ * The group that was created. Contains the name of the group that was created, the Amazon Resource Name (ARN) of the group that was generated based on the group name, the filter expression, and the insight configuration that was assigned to the group.
316
316
  */
317
317
  Group?: Group;
318
318
  }
@@ -581,7 +581,7 @@ declare namespace XRay {
581
581
  }
582
582
  export interface GetGroupResult {
583
583
  /**
584
- * The group that was requested. Contains the name of the group, the ARN of the group, and the filter expression that assigned to the group.
584
+ * The group that was requested. Contains the name of the group, the ARN of the group, the filter expression, and the insight configuration assigned to the group.
585
585
  */
586
586
  Group?: Group;
587
587
  }
@@ -664,11 +664,11 @@ declare namespace XRay {
664
664
  */
665
665
  EndTime: Timestamp;
666
666
  /**
667
- * The name of a group to generate a graph based on.
667
+ * The name of a group based on which you want to generate a graph.
668
668
  */
669
669
  GroupName?: GroupName;
670
670
  /**
671
- * The ARN of a group to generate a graph based on.
671
+ * The Amazon Resource Name (ARN) of a group based on which you want to generate a graph.
672
672
  */
673
673
  GroupARN?: GroupARN;
674
674
  /**
@@ -712,7 +712,7 @@ declare namespace XRay {
712
712
  */
713
713
  GroupName?: GroupName;
714
714
  /**
715
- * The ARN of the group for which to pull statistics from.
715
+ * The Amazon Resource Name (ARN) of the group for which to pull statistics from.
716
716
  */
717
717
  GroupARN?: GroupARN;
718
718
  /**
@@ -734,7 +734,7 @@ declare namespace XRay {
734
734
  */
735
735
  TimeSeriesServiceStatistics?: TimeSeriesServiceStatisticsList;
736
736
  /**
737
- * A flag indicating whether or not a group's filter expression has been consistent, or if a returned aggregation may show statistics from an older version of the group's filter expression.
737
+ * A flag indicating whether or not a group's filter expression has been consistent, or if a returned aggregation might show statistics from an older version of the group's filter expression.
738
738
  */
739
739
  ContainsOldGroupVersions?: Boolean;
740
740
  /**
@@ -780,7 +780,7 @@ declare namespace XRay {
780
780
  */
781
781
  Sampling?: NullableBoolean;
782
782
  /**
783
- * A paramater to indicate whether to enable sampling on trace summaries. Input parameters are Name and Value.
783
+ * A parameter to indicate whether to enable sampling on trace summaries. Input parameters are Name and Value.
784
784
  */
785
785
  SamplingStrategy?: SamplingStrategy;
786
786
  /**
@@ -806,7 +806,7 @@ declare namespace XRay {
806
806
  */
807
807
  TracesProcessedCount?: NullableLong;
808
808
  /**
809
- * If the requested time frame contained more than one page of results, you can use this token to retrieve the next page. The first page contains the most most recent results, closest to the end of the time frame.
809
+ * If the requested time frame contained more than one page of results, you can use this token to retrieve the next page. The first page contains the most recent results, closest to the end of the time frame.
810
810
  */
811
811
  NextToken?: String;
812
812
  }
@@ -816,7 +816,7 @@ declare namespace XRay {
816
816
  */
817
817
  GroupName?: String;
818
818
  /**
819
- * The ARN of the group generated based on the GroupName.
819
+ * The Amazon Resource Name (ARN) of the group generated based on the GroupName.
820
820
  */
821
821
  GroupARN?: String;
822
822
  /**
@@ -824,7 +824,7 @@ declare namespace XRay {
824
824
  */
825
825
  FilterExpression?: String;
826
826
  /**
827
- * The structure containing configurations related to insights. The InsightsEnabled boolean can be set to true to enable insights for the group or false to disable insights for the group.
827
+ * The structure containing configurations related to insights. The InsightsEnabled boolean can be set to true to enable insights for the group or false to disable insights for the group. The NotifcationsEnabled boolean can be set to true to enable insights notifications through Amazon EventBridge for the group.
828
828
  */
829
829
  InsightsConfiguration?: InsightsConfiguration;
830
830
  }
@@ -844,7 +844,7 @@ declare namespace XRay {
844
844
  */
845
845
  FilterExpression?: String;
846
846
  /**
847
- * The structure containing configurations related to insights. The InsightsEnabled boolean can be set to true to enable insights for the groups or false to disable insights for the groups.
847
+ * The structure containing configurations related to insights. The InsightsEnabled boolean can be set to true to enable insights for the group or false to disable insights for the group. The NotificationsEnabled boolean can be set to true to enable insights notifications. Notifications can only be enabled on a group with InsightsEnabled set to true.
848
848
  */
849
849
  InsightsConfiguration?: InsightsConfiguration;
850
850
  }
@@ -890,6 +890,10 @@ declare namespace XRay {
890
890
  * Set the InsightsEnabled value to true to enable insights or false to disable insights.
891
891
  */
892
892
  InsightsEnabled?: NullableBoolean;
893
+ /**
894
+ * Set the NotificationsEnabled value to true to enable insights notifications. Notifications can only be enabled on a group with InsightsEnabled set to true.
895
+ */
896
+ NotificationsEnabled?: NullableBoolean;
893
897
  }
894
898
  export interface InstanceIdDetail {
895
899
  /**
@@ -996,7 +1000,7 @@ declare namespace XRay {
996
1000
  */
997
1001
  Name?: String;
998
1002
  /**
999
- * The types and messages of the exceptions.
1003
+ * The type and messages of the exceptions.
1000
1004
  */
1001
1005
  Coverage?: NullableDouble;
1002
1006
  /**
@@ -1236,7 +1240,7 @@ declare namespace XRay {
1236
1240
  */
1237
1241
  FixedRate?: Double;
1238
1242
  /**
1239
- * The number of requests per second that X-Ray allocated this service.
1243
+ * The number of requests per second that X-Ray allocated for this service.
1240
1244
  */
1241
1245
  ReservoirQuota?: NullableInteger;
1242
1246
  /**
@@ -1284,7 +1288,7 @@ declare namespace XRay {
1284
1288
  */
1285
1289
  AccountId?: String;
1286
1290
  /**
1287
- * The type of service. AWS Resource - The type of an AWS resource. For example, AWS::EC2::Instance for a application running on Amazon EC2 or AWS::DynamoDB::Table for an Amazon DynamoDB table that the application used. AWS Service - The type of an AWS service. For example, AWS::DynamoDB for downstream calls to Amazon DynamoDB that didn't target a specific table. client - Represents the clients that sent requests to a root service. remote - A downstream service of indeterminate type.
1291
+ * The type of service. AWS Resource - The type of an AWS resource. For example, AWS::EC2::Instance for an application running on Amazon EC2 or AWS::DynamoDB::Table for an Amazon DynamoDB table that the application used. AWS Service - The type of an AWS service. For example, AWS::DynamoDB for downstream calls to Amazon DynamoDB that didn't target a specific table. client - Represents the clients that sent requests to a root service. remote - A downstream service of indeterminate type.
1288
1292
  */
1289
1293
  Type?: String;
1290
1294
  /**
@@ -1439,6 +1443,10 @@ declare namespace XRay {
1439
1443
  * The length of time in seconds between the start time of the root segment and the end time of the last segment that completed.
1440
1444
  */
1441
1445
  Duration?: NullableDouble;
1446
+ /**
1447
+ * LimitExceeded is set to true when the trace has exceeded one of the defined quotas. For more information about quotas, see AWS X-Ray endpoints and quotas.
1448
+ */
1449
+ LimitExceeded?: NullableBoolean;
1442
1450
  /**
1443
1451
  * Segment documents for the segments and subsegments that comprise the trace.
1444
1452
  */
@@ -1506,7 +1514,7 @@ declare namespace XRay {
1506
1514
  */
1507
1515
  InstanceIds?: TraceInstanceIds;
1508
1516
  /**
1509
- * A list of availability zones for any zone corresponding to the trace segments.
1517
+ * A list of Availability Zones for any zone corresponding to the trace segments.
1510
1518
  */
1511
1519
  AvailabilityZones?: TraceAvailabilityZones;
1512
1520
  /**
@@ -1514,7 +1522,7 @@ declare namespace XRay {
1514
1522
  */
1515
1523
  EntryPoint?: ServiceId;
1516
1524
  /**
1517
- * A collection of FaultRootCause structures corresponding to the the trace segments.
1525
+ * A collection of FaultRootCause structures corresponding to the trace segments.
1518
1526
  */
1519
1527
  FaultRootCauses?: FaultRootCauses;
1520
1528
  /**
@@ -1604,7 +1612,7 @@ declare namespace XRay {
1604
1612
  */
1605
1613
  FilterExpression?: FilterExpression;
1606
1614
  /**
1607
- * The structure containing configurations related to insights. The InsightsEnabled boolean can be set to true to enable insights for the group or false to disable insights for the group.
1615
+ * The structure containing configurations related to insights. The InsightsEnabled boolean can be set to true to enable insights for the group or false to disable insights for the group. The NotifcationsEnabled boolean can be set to true to enable insights notifications for the group. Notifications can only be enabled on a group with InsightsEnabled set to true.
1608
1616
  */
1609
1617
  InsightsConfiguration?: InsightsConfiguration;
1610
1618
  }
@@ -83,7 +83,7 @@ return /******/ (function(modules) { // webpackBootstrap
83
83
  /**
84
84
  * @constant
85
85
  */
86
- VERSION: '2.771.0',
86
+ VERSION: '2.772.0',
87
87
 
88
88
  /**
89
89
  * @api private