cdk-lambda-subminute 2.0.249 → 2.0.250

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 (35) hide show
  1. package/.jsii +16 -3
  2. package/lib/cdk-lambda-subminute.js +3 -3
  3. package/node_modules/aws-sdk/CHANGELOG.md +10 -1
  4. package/node_modules/aws-sdk/README.md +1 -1
  5. package/node_modules/aws-sdk/apis/appintegrations-2020-07-29.examples.json +83 -0
  6. package/node_modules/aws-sdk/apis/appintegrations-2020-07-29.min.json +241 -32
  7. package/node_modules/aws-sdk/apis/appintegrations-2020-07-29.paginators.json +31 -1
  8. package/node_modules/aws-sdk/apis/apprunner-2020-05-15.min.json +50 -49
  9. package/node_modules/aws-sdk/apis/connect-2017-08-08.min.json +298 -238
  10. package/node_modules/aws-sdk/apis/connect-2017-08-08.paginators.json +6 -0
  11. package/node_modules/aws-sdk/apis/dynamodb-2012-08-10.min.json +81 -60
  12. package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +7 -0
  13. package/node_modules/aws-sdk/apis/lakeformation-2017-03-31.min.json +141 -36
  14. package/node_modules/aws-sdk/apis/lakeformation-2017-03-31.paginators.json +5 -0
  15. package/node_modules/aws-sdk/apis/s3-2006-03-01.examples.json +126 -126
  16. package/node_modules/aws-sdk/clients/appintegrations.d.ts +255 -1
  17. package/node_modules/aws-sdk/clients/apprunner.d.ts +6 -1
  18. package/node_modules/aws-sdk/clients/codedeploy.d.ts +34 -34
  19. package/node_modules/aws-sdk/clients/connect.d.ts +64 -6
  20. package/node_modules/aws-sdk/clients/dynamodb.d.ts +40 -2
  21. package/node_modules/aws-sdk/clients/ec2.d.ts +11 -3
  22. package/node_modules/aws-sdk/clients/lakeformation.d.ts +95 -1
  23. package/node_modules/aws-sdk/clients/pinpoint.d.ts +2 -2
  24. package/node_modules/aws-sdk/clients/s3.d.ts +1 -1
  25. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
  26. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +10 -10
  27. package/node_modules/aws-sdk/dist/aws-sdk.js +395 -301
  28. package/node_modules/aws-sdk/dist/aws-sdk.min.js +80 -80
  29. package/node_modules/aws-sdk/lib/core.js +1 -1
  30. package/node_modules/aws-sdk/lib/dynamodb/document_client.d.ts +38 -0
  31. package/node_modules/aws-sdk/package.json +1 -1
  32. package/node_modules/xml2js/node_modules/sax/LICENSE +2 -2
  33. package/node_modules/xml2js/node_modules/sax/lib/sax.js +13 -4
  34. package/node_modules/xml2js/node_modules/sax/package.json +8 -4
  35. package/package.json +3 -3
@@ -1027,6 +1027,14 @@ declare class Connect extends Service {
1027
1027
  * This API is in preview release for Amazon Connect and is subject to change. Returns a paginated list of all security keys associated with the instance.
1028
1028
  */
1029
1029
  listSecurityKeys(callback?: (err: AWSError, data: Connect.Types.ListSecurityKeysResponse) => void): Request<Connect.Types.ListSecurityKeysResponse, AWSError>;
1030
+ /**
1031
+ * Returns a list of third party applications in a specific security profile.
1032
+ */
1033
+ listSecurityProfileApplications(params: Connect.Types.ListSecurityProfileApplicationsRequest, callback?: (err: AWSError, data: Connect.Types.ListSecurityProfileApplicationsResponse) => void): Request<Connect.Types.ListSecurityProfileApplicationsResponse, AWSError>;
1034
+ /**
1035
+ * Returns a list of third party applications in a specific security profile.
1036
+ */
1037
+ listSecurityProfileApplications(callback?: (err: AWSError, data: Connect.Types.ListSecurityProfileApplicationsResponse) => void): Request<Connect.Types.ListSecurityProfileApplicationsResponse, AWSError>;
1030
1038
  /**
1031
1039
  * This API is in preview release for Amazon Connect and is subject to change. Lists the permissions granted to a security profile.
1032
1040
  */
@@ -1860,6 +1868,18 @@ declare namespace Connect {
1860
1868
  */
1861
1869
  AwaitAnswerMachinePrompt?: Boolean;
1862
1870
  }
1871
+ export interface Application {
1872
+ /**
1873
+ * Namespace of the application that you want to give access to.
1874
+ */
1875
+ Namespace?: Namespace;
1876
+ /**
1877
+ * The permissions that the agent is granted on the application. Only the ACCESS permission is supported.
1878
+ */
1879
+ ApplicationPermissions?: ApplicationPermissions;
1880
+ }
1881
+ export type ApplicationPermissions = Permission[];
1882
+ export type Applications = Application[];
1863
1883
  export type ApproximateTotalCount = number;
1864
1884
  export interface AssignContactCategoryActionDefinition {
1865
1885
  }
@@ -2750,7 +2770,7 @@ declare namespace Connect {
2750
2770
  */
2751
2771
  InstanceId: InstanceId;
2752
2772
  /**
2753
- * The name of the quick connect.
2773
+ * A unique name of the quick connect.
2754
2774
  */
2755
2775
  Name: QuickConnectName;
2756
2776
  /**
@@ -2890,6 +2910,10 @@ declare namespace Connect {
2890
2910
  * The list of resources that a security profile applies tag restrictions to in Amazon Connect. Following are acceptable ResourceNames: User | SecurityProfile | Queue | RoutingProfile
2891
2911
  */
2892
2912
  TagRestrictedResources?: TagRestrictedResourceList;
2913
+ /**
2914
+ * This API is in preview release for Amazon Connect and is subject to change. A list of third party applications that the security profile will give access to.
2915
+ */
2916
+ Applications?: Applications;
2893
2917
  }
2894
2918
  export interface CreateSecurityProfileResponse {
2895
2919
  /**
@@ -5472,7 +5496,7 @@ declare namespace Connect {
5472
5496
  SourceType?: SourceType;
5473
5497
  }
5474
5498
  export type IntegrationAssociationSummaryList = IntegrationAssociationSummary[];
5475
- export type IntegrationType = "EVENT"|"VOICE_ID"|"PINPOINT_APP"|"WISDOM_ASSISTANT"|"WISDOM_KNOWLEDGE_BASE"|"CASES_DOMAIN"|string;
5499
+ export type IntegrationType = "EVENT"|"VOICE_ID"|"PINPOINT_APP"|"WISDOM_ASSISTANT"|"WISDOM_KNOWLEDGE_BASE"|"CASES_DOMAIN"|"APPLICATION"|string;
5476
5500
  export interface InvisibleFieldInfo {
5477
5501
  /**
5478
5502
  * Identifier of the invisible field.
@@ -5981,7 +6005,7 @@ declare namespace Connect {
5981
6005
  */
5982
6006
  InstanceId: InstanceId;
5983
6007
  /**
5984
- * The type of phone number.
6008
+ * The type of phone number. We recommend using ListPhoneNumbersV2 to return phone number types. While ListPhoneNumbers returns number types UIFN, SHARED, THIRD_PARTY_TF, and THIRD_PARTY_DID, it incorrectly lists them as TOLL_FREE or DID.
5985
6009
  */
5986
6010
  PhoneNumberTypes?: PhoneNumberTypes;
5987
6011
  /**
@@ -6286,6 +6310,34 @@ declare namespace Connect {
6286
6310
  */
6287
6311
  NextToken?: NextToken;
6288
6312
  }
6313
+ export interface ListSecurityProfileApplicationsRequest {
6314
+ /**
6315
+ * The security profile identifier.
6316
+ */
6317
+ SecurityProfileId: SecurityProfileId;
6318
+ /**
6319
+ * The instance identifier.
6320
+ */
6321
+ InstanceId: InstanceId;
6322
+ /**
6323
+ * The token for the next set of results. The next set of results can be retrieved by using the token value returned in the previous response when making the next request.
6324
+ */
6325
+ NextToken?: NextToken;
6326
+ /**
6327
+ * The maximum number of results to return per page.
6328
+ */
6329
+ MaxResults?: MaxResult1000;
6330
+ }
6331
+ export interface ListSecurityProfileApplicationsResponse {
6332
+ /**
6333
+ * A list of the third party application's metadata.
6334
+ */
6335
+ Applications?: Applications;
6336
+ /**
6337
+ * The token for the next set of results. The next set of results can be retrieved by using the token value returned in the previous response when making the next request.
6338
+ */
6339
+ NextToken?: NextToken;
6340
+ }
6289
6341
  export interface ListSecurityProfilePermissionsRequest {
6290
6342
  /**
6291
6343
  * The identifier for the security profle.
@@ -6672,6 +6724,7 @@ declare namespace Connect {
6672
6724
  }
6673
6725
  export type Name = string;
6674
6726
  export type Name128 = string;
6727
+ export type Namespace = string;
6675
6728
  export type NextToken = string;
6676
6729
  export type NextToken2500 = string;
6677
6730
  export type NotificationContentType = "PLAIN_TEXT"|string;
@@ -6781,6 +6834,7 @@ declare namespace Connect {
6781
6834
  }
6782
6835
  export type Password = string;
6783
6836
  export type Percentage = number;
6837
+ export type Permission = string;
6784
6838
  export type PermissionsList = SecurityProfilePermission[];
6785
6839
  export interface PersistentChat {
6786
6840
  /**
@@ -7450,15 +7504,15 @@ declare namespace Connect {
7450
7504
  */
7451
7505
  TaskAction?: TaskActionDefinition;
7452
7506
  /**
7453
- * Information about the EventBridge action.
7507
+ * Information about the EventBridge action. Supported only for TriggerEventSource values: OnPostCallAnalysisAvailable | OnRealTimeCallAnalysisAvailable | OnPostChatAnalysisAvailable | OnContactEvaluationSubmit | OnMetricDataUpdate
7454
7508
  */
7455
7509
  EventBridgeAction?: EventBridgeActionDefinition;
7456
7510
  /**
7457
- * Information about the contact category action.
7511
+ * Information about the contact category action. Supported only for TriggerEventSource values: OnPostCallAnalysisAvailable | OnRealTimeCallAnalysisAvailable | OnPostChatAnalysisAvailable | OnZendeskTicketCreate | OnZendeskTicketStatusUpdate | OnSalesforceCaseCreate
7458
7512
  */
7459
7513
  AssignContactCategoryAction?: AssignContactCategoryActionDefinition;
7460
7514
  /**
7461
- * Information about the send notification action.
7515
+ * Information about the send notification action. Supported only for TriggerEventSource values: OnPostCallAnalysisAvailable | OnRealTimeCallAnalysisAvailable | OnPostChatAnalysisAvailable | OnContactEvaluationSubmit | OnMetricDataUpdate
7462
7516
  */
7463
7517
  SendNotificationAction?: SendNotificationActionDefinition;
7464
7518
  }
@@ -9372,6 +9426,10 @@ declare namespace Connect {
9372
9426
  * The list of resources that a security profile applies tag restrictions to in Amazon Connect.
9373
9427
  */
9374
9428
  TagRestrictedResources?: TagRestrictedResourceList;
9429
+ /**
9430
+ * This API is in preview release for Amazon Connect and is subject to change. A list of the third party application's metadata.
9431
+ */
9432
+ Applications?: Applications;
9375
9433
  }
9376
9434
  export interface UpdateTaskTemplateRequest {
9377
9435
  /**
@@ -247,11 +247,11 @@ declare class DynamoDB extends DynamoDBCustomizations {
247
247
  */
248
248
  importTable(callback?: (err: AWSError, data: DynamoDB.Types.ImportTableOutput) => void): Request<DynamoDB.Types.ImportTableOutput, AWSError>;
249
249
  /**
250
- * List backups associated with an Amazon Web Services account. To list backups for a given table, specify TableName. ListBackups returns a paginated list of results with at most 1 MB worth of items in a page. You can also specify a maximum number of entries to be returned in a page. In the request, start time is inclusive, but end time is exclusive. Note that these boundaries are for the time at which the original backup was requested. You can call ListBackups a maximum of five times per second.
250
+ * List DynamoDB backups that are associated with an Amazon Web Services account and weren't made with Amazon Web Services Backup. To list these backups for a given table, specify TableName. ListBackups returns a paginated list of results with at most 1 MB worth of items in a page. You can also specify a maximum number of entries to be returned in a page. In the request, start time is inclusive, but end time is exclusive. Note that these boundaries are for the time at which the original backup was requested. You can call ListBackups a maximum of five times per second. If you want to retrieve the complete list of backups made with Amazon Web Services Backup, use the Amazon Web Services Backup list API.
251
251
  */
252
252
  listBackups(params: DynamoDB.Types.ListBackupsInput, callback?: (err: AWSError, data: DynamoDB.Types.ListBackupsOutput) => void): Request<DynamoDB.Types.ListBackupsOutput, AWSError>;
253
253
  /**
254
- * List backups associated with an Amazon Web Services account. To list backups for a given table, specify TableName. ListBackups returns a paginated list of results with at most 1 MB worth of items in a page. You can also specify a maximum number of entries to be returned in a page. In the request, start time is inclusive, but end time is exclusive. Note that these boundaries are for the time at which the original backup was requested. You can call ListBackups a maximum of five times per second.
254
+ * List DynamoDB backups that are associated with an Amazon Web Services account and weren't made with Amazon Web Services Backup. To list these backups for a given table, specify TableName. ListBackups returns a paginated list of results with at most 1 MB worth of items in a page. You can also specify a maximum number of entries to be returned in a page. In the request, start time is inclusive, but end time is exclusive. Note that these boundaries are for the time at which the original backup was requested. You can call ListBackups a maximum of five times per second. If you want to retrieve the complete list of backups made with Amazon Web Services Backup, use the Amazon Web Services Backup list API.
255
255
  */
256
256
  listBackups(callback?: (err: AWSError, data: DynamoDB.Types.ListBackupsOutput) => void): Request<DynamoDB.Types.ListBackupsOutput, AWSError>;
257
257
  /**
@@ -1642,9 +1642,18 @@ declare namespace DynamoDB {
1642
1642
  * The number of items exported.
1643
1643
  */
1644
1644
  ItemCount?: ItemCount;
1645
+ /**
1646
+ * Choice of whether to execute as a full export or incremental export. Valid values are FULL_EXPORT or INCREMENTAL_EXPORT. If INCREMENTAL_EXPORT is provided, the IncrementalExportSpecification must also be used.
1647
+ */
1648
+ ExportType?: ExportType;
1649
+ /**
1650
+ * Optional object containing the parameters specific to an incremental export.
1651
+ */
1652
+ IncrementalExportSpecification?: IncrementalExportSpecification;
1645
1653
  }
1646
1654
  export type ExportEndTime = Date;
1647
1655
  export type ExportFormat = "DYNAMODB_JSON"|"ION"|string;
1656
+ export type ExportFromTime = Date;
1648
1657
  export type ExportManifest = string;
1649
1658
  export type ExportNextToken = string;
1650
1659
  export type ExportStartTime = Date;
@@ -1659,6 +1668,10 @@ declare namespace DynamoDB {
1659
1668
  * Export can be in one of the following states: IN_PROGRESS, COMPLETED, or FAILED.
1660
1669
  */
1661
1670
  ExportStatus?: ExportStatus;
1671
+ /**
1672
+ * Choice of whether to execute as a full export or incremental export. Valid values are FULL_EXPORT or INCREMENTAL_EXPORT. If INCREMENTAL_EXPORT is provided, the IncrementalExportSpecification must also be used.
1673
+ */
1674
+ ExportType?: ExportType;
1662
1675
  }
1663
1676
  export interface ExportTableToPointInTimeInput {
1664
1677
  /**
@@ -1697,6 +1710,14 @@ declare namespace DynamoDB {
1697
1710
  * The format for the exported data. Valid values for ExportFormat are DYNAMODB_JSON or ION.
1698
1711
  */
1699
1712
  ExportFormat?: ExportFormat;
1713
+ /**
1714
+ * Choice of whether to execute as a full export or incremental export. Valid values are FULL_EXPORT or INCREMENTAL_EXPORT. If INCREMENTAL_EXPORT is provided, the IncrementalExportSpecification must also be used.
1715
+ */
1716
+ ExportType?: ExportType;
1717
+ /**
1718
+ * Optional object containing the parameters specific to an incremental export.
1719
+ */
1720
+ IncrementalExportSpecification?: IncrementalExportSpecification;
1700
1721
  }
1701
1722
  export interface ExportTableToPointInTimeOutput {
1702
1723
  /**
@@ -1705,6 +1726,9 @@ declare namespace DynamoDB {
1705
1726
  ExportDescription?: ExportDescription;
1706
1727
  }
1707
1728
  export type ExportTime = Date;
1729
+ export type ExportToTime = Date;
1730
+ export type ExportType = "FULL_EXPORT"|"INCREMENTAL_EXPORT"|string;
1731
+ export type ExportViewType = "NEW_IMAGE"|"NEW_AND_OLD_IMAGES"|string;
1708
1732
  export type ExpressionAttributeNameMap = {[key: string]: AttributeName};
1709
1733
  export type ExpressionAttributeNameVariable = string;
1710
1734
  export type ExpressionAttributeValueMap = {[key: string]: AttributeValue};
@@ -2078,6 +2102,20 @@ declare namespace DynamoDB {
2078
2102
  ImportTableDescription: ImportTableDescription;
2079
2103
  }
2080
2104
  export type ImportedItemCount = number;
2105
+ export interface IncrementalExportSpecification {
2106
+ /**
2107
+ * Time in the past which provides the inclusive start range for the export table's data, counted in seconds from the start of the Unix epoch. The incremental export will reflect the table's state including and after this point in time.
2108
+ */
2109
+ ExportFromTime?: ExportFromTime;
2110
+ /**
2111
+ * Time in the past which provides the exclusive end range for the export table's data, counted in seconds from the start of the Unix epoch. The incremental export will reflect the table's state just prior to this point in time. If this is not provided, the latest time with data available will be used.
2112
+ */
2113
+ ExportToTime?: ExportToTime;
2114
+ /**
2115
+ * Choice of whether to output the previous item image prior to the start time of the incremental export. Valid values are NEW_AND_OLD_IMAGES and NEW_IMAGES.
2116
+ */
2117
+ ExportViewType?: ExportViewType;
2118
+ }
2081
2119
  export type IndexName = string;
2082
2120
  export type IndexStatus = "CREATING"|"UPDATING"|"DELETING"|"ACTIVE"|string;
2083
2121
  export type InputCompressionType = "GZIP"|"ZSTD"|"NONE"|string;
@@ -4621,11 +4621,11 @@ declare class EC2 extends Service {
4621
4621
  */
4622
4622
  revokeSecurityGroupEgress(callback?: (err: AWSError, data: EC2.Types.RevokeSecurityGroupEgressResult) => void): Request<EC2.Types.RevokeSecurityGroupEgressResult, AWSError>;
4623
4623
  /**
4624
- * Removes the specified inbound (ingress) rules from a security group. You can specify rules using either rule IDs or security group rule properties. If you use rule properties, the values that you specify (for example, ports) must match the existing rule's values exactly. Each rule has a protocol, from and to ports, and source (CIDR range, security group, or prefix list). For the TCP and UDP protocols, you must also specify the destination port or range of ports. For the ICMP protocol, you must also specify the ICMP type and code. If the security group rule has a description, you do not need to specify the description to revoke the rule. For a default VPC, if the values you specify do not match the existing rule's values, no error is returned, and the output describes the security group rules that were not revoked. Amazon Web Services recommends that you describe the security group to verify that the rules were removed. Rule changes are propagated to instances within the security group as quickly as possible. However, a small delay might occur.
4624
+ * Removes the specified inbound (ingress) rules from a security group. You can specify rules using either rule IDs or security group rule properties. If you use rule properties, the values that you specify (for example, ports) must match the existing rule's values exactly. Each rule has a protocol, from and to ports, and source (CIDR range, security group, or prefix list). For the TCP and UDP protocols, you must also specify the destination port or range of ports. For the ICMP protocol, you must also specify the ICMP type and code. If the security group rule has a description, you do not need to specify the description to revoke the rule. For a default VPC, if the values you specify do not match the existing rule's values, no error is returned, and the output describes the security group rules that were not revoked. For a non-default VPC, if the values you specify do not match the existing rule's values, an InvalidPermission.NotFound client error is returned, and no rules are revoked. Amazon Web Services recommends that you describe the security group to verify that the rules were removed. Rule changes are propagated to instances within the security group as quickly as possible. However, a small delay might occur.
4625
4625
  */
4626
4626
  revokeSecurityGroupIngress(params: EC2.Types.RevokeSecurityGroupIngressRequest, callback?: (err: AWSError, data: EC2.Types.RevokeSecurityGroupIngressResult) => void): Request<EC2.Types.RevokeSecurityGroupIngressResult, AWSError>;
4627
4627
  /**
4628
- * Removes the specified inbound (ingress) rules from a security group. You can specify rules using either rule IDs or security group rule properties. If you use rule properties, the values that you specify (for example, ports) must match the existing rule's values exactly. Each rule has a protocol, from and to ports, and source (CIDR range, security group, or prefix list). For the TCP and UDP protocols, you must also specify the destination port or range of ports. For the ICMP protocol, you must also specify the ICMP type and code. If the security group rule has a description, you do not need to specify the description to revoke the rule. For a default VPC, if the values you specify do not match the existing rule's values, no error is returned, and the output describes the security group rules that were not revoked. Amazon Web Services recommends that you describe the security group to verify that the rules were removed. Rule changes are propagated to instances within the security group as quickly as possible. However, a small delay might occur.
4628
+ * Removes the specified inbound (ingress) rules from a security group. You can specify rules using either rule IDs or security group rule properties. If you use rule properties, the values that you specify (for example, ports) must match the existing rule's values exactly. Each rule has a protocol, from and to ports, and source (CIDR range, security group, or prefix list). For the TCP and UDP protocols, you must also specify the destination port or range of ports. For the ICMP protocol, you must also specify the ICMP type and code. If the security group rule has a description, you do not need to specify the description to revoke the rule. For a default VPC, if the values you specify do not match the existing rule's values, no error is returned, and the output describes the security group rules that were not revoked. For a non-default VPC, if the values you specify do not match the existing rule's values, an InvalidPermission.NotFound client error is returned, and no rules are revoked. Amazon Web Services recommends that you describe the security group to verify that the rules were removed. Rule changes are propagated to instances within the security group as quickly as possible. However, a small delay might occur.
4629
4629
  */
4630
4630
  revokeSecurityGroupIngress(callback?: (err: AWSError, data: EC2.Types.RevokeSecurityGroupIngressResult) => void): Request<EC2.Types.RevokeSecurityGroupIngressResult, AWSError>;
4631
4631
  /**
@@ -8781,7 +8781,7 @@ declare namespace EC2 {
8781
8781
  /**
8782
8782
  * The Availability Zone in which to create the default subnet.
8783
8783
  */
8784
- AvailabilityZone: String;
8784
+ AvailabilityZone: AvailabilityZoneName;
8785
8785
  /**
8786
8786
  * Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.
8787
8787
  */
@@ -11041,6 +11041,10 @@ declare namespace EC2 {
11041
11041
  * Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.
11042
11042
  */
11043
11043
  DryRun?: Boolean;
11044
+ /**
11045
+ * Choose to enable or disable support for Federal Information Processing Standards (FIPS) on the instance.
11046
+ */
11047
+ FIPSEnabled?: Boolean;
11044
11048
  }
11045
11049
  export interface CreateVerifiedAccessInstanceResult {
11046
11050
  /**
@@ -37345,6 +37349,10 @@ declare namespace EC2 {
37345
37349
  * The tags.
37346
37350
  */
37347
37351
  Tags?: TagList;
37352
+ /**
37353
+ * Describes if support for Federal Information Processing Standards (FIPS) is enabled on the instance.
37354
+ */
37355
+ FipsEnabled?: Boolean;
37348
37356
  }
37349
37357
  export type VerifiedAccessInstanceId = string;
37350
37358
  export type VerifiedAccessInstanceIdList = VerifiedAccessInstanceId[];
@@ -76,6 +76,14 @@ declare class LakeFormation extends Service {
76
76
  * Creates an LF-tag with the specified name and values.
77
77
  */
78
78
  createLFTag(callback?: (err: AWSError, data: LakeFormation.Types.CreateLFTagResponse) => void): Request<LakeFormation.Types.CreateLFTagResponse, AWSError>;
79
+ /**
80
+ * Enforce Lake Formation permissions for the given databases, tables, and principals.
81
+ */
82
+ createLakeFormationOptIn(params: LakeFormation.Types.CreateLakeFormationOptInRequest, callback?: (err: AWSError, data: LakeFormation.Types.CreateLakeFormationOptInResponse) => void): Request<LakeFormation.Types.CreateLakeFormationOptInResponse, AWSError>;
83
+ /**
84
+ * Enforce Lake Formation permissions for the given databases, tables, and principals.
85
+ */
86
+ createLakeFormationOptIn(callback?: (err: AWSError, data: LakeFormation.Types.CreateLakeFormationOptInResponse) => void): Request<LakeFormation.Types.CreateLakeFormationOptInResponse, AWSError>;
79
87
  /**
80
88
  * Deletes a data cell filter.
81
89
  */
@@ -92,6 +100,14 @@ declare class LakeFormation extends Service {
92
100
  * Deletes the specified LF-tag given a key name. If the input parameter tag key was not found, then the operation will throw an exception. When you delete an LF-tag, the LFTagPolicy attached to the LF-tag becomes invalid. If the deleted LF-tag was still assigned to any resource, the tag policy attach to the deleted LF-tag will no longer be applied to the resource.
93
101
  */
94
102
  deleteLFTag(callback?: (err: AWSError, data: LakeFormation.Types.DeleteLFTagResponse) => void): Request<LakeFormation.Types.DeleteLFTagResponse, AWSError>;
103
+ /**
104
+ * Remove the Lake Formation permissions enforcement of the given databases, tables, and principals.
105
+ */
106
+ deleteLakeFormationOptIn(params: LakeFormation.Types.DeleteLakeFormationOptInRequest, callback?: (err: AWSError, data: LakeFormation.Types.DeleteLakeFormationOptInResponse) => void): Request<LakeFormation.Types.DeleteLakeFormationOptInResponse, AWSError>;
107
+ /**
108
+ * Remove the Lake Formation permissions enforcement of the given databases, tables, and principals.
109
+ */
110
+ deleteLakeFormationOptIn(callback?: (err: AWSError, data: LakeFormation.Types.DeleteLakeFormationOptInResponse) => void): Request<LakeFormation.Types.DeleteLakeFormationOptInResponse, AWSError>;
95
111
  /**
96
112
  * For a specific governed table, provides a list of Amazon S3 objects that will be written during the current transaction and that can be automatically deleted if the transaction is canceled. Without this call, no Amazon S3 objects are automatically deleted when a transaction cancels. The Glue ETL library function write_dynamic_frame.from_catalog() includes an option to automatically call DeleteObjectsOnCancel before writes. For more information, see Rolling Back Amazon S3 Writes.
97
113
  */
@@ -252,6 +268,14 @@ declare class LakeFormation extends Service {
252
268
  * Lists LF-tags that the requester has permission to view.
253
269
  */
254
270
  listLFTags(callback?: (err: AWSError, data: LakeFormation.Types.ListLFTagsResponse) => void): Request<LakeFormation.Types.ListLFTagsResponse, AWSError>;
271
+ /**
272
+ * Retrieve the current list of resources and principals that are opt in to enforce Lake Formation permissions.
273
+ */
274
+ listLakeFormationOptIns(params: LakeFormation.Types.ListLakeFormationOptInsRequest, callback?: (err: AWSError, data: LakeFormation.Types.ListLakeFormationOptInsResponse) => void): Request<LakeFormation.Types.ListLakeFormationOptInsResponse, AWSError>;
275
+ /**
276
+ * Retrieve the current list of resources and principals that are opt in to enforce Lake Formation permissions.
277
+ */
278
+ listLakeFormationOptIns(callback?: (err: AWSError, data: LakeFormation.Types.ListLakeFormationOptInsResponse) => void): Request<LakeFormation.Types.ListLakeFormationOptInsResponse, AWSError>;
255
279
  /**
256
280
  * Returns a list of the principal permissions on the resource, filtered by the permissions of the caller. For example, if you are granted an ALTER permission, you are able to see only the principal permissions for ALTER. This operation returns only those permissions that have been explicitly granted. For information about permissions, see Security and Access Control to Metadata and Data.
257
281
  */
@@ -608,6 +632,12 @@ declare namespace LakeFormation {
608
632
  }
609
633
  export interface CreateLFTagResponse {
610
634
  }
635
+ export interface CreateLakeFormationOptInRequest {
636
+ Principal: DataLakePrincipal;
637
+ Resource: Resource;
638
+ }
639
+ export interface CreateLakeFormationOptInResponse {
640
+ }
611
641
  export type CredentialTimeoutDurationSecondInteger = number;
612
642
  export interface DataCellsFilter {
613
643
  /**
@@ -767,6 +797,12 @@ declare namespace LakeFormation {
767
797
  }
768
798
  export interface DeleteLFTagResponse {
769
799
  }
800
+ export interface DeleteLakeFormationOptInRequest {
801
+ Principal: DataLakePrincipal;
802
+ Resource: Resource;
803
+ }
804
+ export interface DeleteLakeFormationOptInResponse {
805
+ }
770
806
  export interface DeleteObjectInput {
771
807
  /**
772
808
  * The Amazon S3 location of the object to delete.
@@ -1264,7 +1300,7 @@ declare namespace LakeFormation {
1264
1300
  */
1265
1301
  TagKey: LFTagKey;
1266
1302
  /**
1267
- * A list of possible values an attribute can take.
1303
+ * A list of possible values an attribute can take. The maximum number of values that can be defined for a LF-Tag is 1000. A single API call supports 50 values. You can use multiple API calls to add more values.
1268
1304
  */
1269
1305
  TagValues: TagValueList;
1270
1306
  }
@@ -1324,6 +1360,19 @@ declare namespace LakeFormation {
1324
1360
  }
1325
1361
  export type LFTagValue = string;
1326
1362
  export type LFTagsList = LFTagPair[];
1363
+ export interface LakeFormationOptInsInfo {
1364
+ Resource?: Resource;
1365
+ Principal?: DataLakePrincipal;
1366
+ /**
1367
+ * The last modified date and time of the record.
1368
+ */
1369
+ LastModified?: LastModifiedTimestamp;
1370
+ /**
1371
+ * The user who updated the record.
1372
+ */
1373
+ LastUpdatedBy?: NameString;
1374
+ }
1375
+ export type LakeFormationOptInsInfoList = LakeFormationOptInsInfo[];
1327
1376
  export type LastModifiedTimestamp = Date;
1328
1377
  export interface ListDataCellsFilterRequest {
1329
1378
  /**
@@ -1377,6 +1426,31 @@ declare namespace LakeFormation {
1377
1426
  */
1378
1427
  NextToken?: Token;
1379
1428
  }
1429
+ export interface ListLakeFormationOptInsRequest {
1430
+ Principal?: DataLakePrincipal;
1431
+ /**
1432
+ * A structure for the resource.
1433
+ */
1434
+ Resource?: Resource;
1435
+ /**
1436
+ * The maximum number of results to return.
1437
+ */
1438
+ MaxResults?: PageSize;
1439
+ /**
1440
+ * A continuation token, if this is not the first call to retrieve this list.
1441
+ */
1442
+ NextToken?: Token;
1443
+ }
1444
+ export interface ListLakeFormationOptInsResponse {
1445
+ /**
1446
+ * A list of principal-resource pairs that have Lake Formation permissins enforced.
1447
+ */
1448
+ LakeFormationOptInsInfoList?: LakeFormationOptInsInfoList;
1449
+ /**
1450
+ * A continuation token, if this is not the first call to retrieve this list.
1451
+ */
1452
+ NextToken?: Token;
1453
+ }
1380
1454
  export interface ListPermissionsRequest {
1381
1455
  /**
1382
1456
  * The identifier for the Data Catalog. By default, the account ID. The Data Catalog is the persistent metadata store. It contains database definitions, table definitions, and other control information to manage your Lake Formation environment.
@@ -1590,6 +1664,14 @@ declare namespace LakeFormation {
1590
1664
  * This attribute can be used to return any additional details of PrincipalResourcePermissions. Currently returns only as a RAM resource share ARN.
1591
1665
  */
1592
1666
  AdditionalDetails?: DetailsMap;
1667
+ /**
1668
+ * The date and time when the resource was last updated.
1669
+ */
1670
+ LastUpdated?: LastModifiedTimestamp;
1671
+ /**
1672
+ * The user who updated the record.
1673
+ */
1674
+ LastUpdatedBy?: NameString;
1593
1675
  }
1594
1676
  export type PrincipalResourcePermissionsList = PrincipalResourcePermissions[];
1595
1677
  export interface PutDataLakeSettingsRequest {
@@ -1648,6 +1730,10 @@ declare namespace LakeFormation {
1648
1730
  * Whether or not the resource is a federated resource.
1649
1731
  */
1650
1732
  WithFederation?: NullableBoolean;
1733
+ /**
1734
+ * Specifies whether the data access of tables pointing to the location can be managed by both Lake Formation permissions as well as Amazon S3 bucket policies.
1735
+ */
1736
+ HybridAccessEnabled?: NullableBoolean;
1651
1737
  }
1652
1738
  export interface RegisterResourceResponse {
1653
1739
  }
@@ -1723,6 +1809,10 @@ declare namespace LakeFormation {
1723
1809
  * Whether or not the resource is a federated resource.
1724
1810
  */
1725
1811
  WithFederation?: NullableBoolean;
1812
+ /**
1813
+ * Indicates whether the data access of tables pointing to the location can be managed by both Lake Formation permissions as well as Amazon S3 bucket policies.
1814
+ */
1815
+ HybridAccessEnabled?: NullableBoolean;
1726
1816
  }
1727
1817
  export type ResourceInfoList = ResourceInfo[];
1728
1818
  export type ResourceShareList = RAMResourceShareArn[];
@@ -2041,6 +2131,10 @@ declare namespace LakeFormation {
2041
2131
  * Whether or not the resource is a federated resource.
2042
2132
  */
2043
2133
  WithFederation?: NullableBoolean;
2134
+ /**
2135
+ * Specifies whether the data access of tables pointing to the location can be managed by both Lake Formation permissions as well as Amazon S3 bucket policies.
2136
+ */
2137
+ HybridAccessEnabled?: NullableBoolean;
2044
2138
  }
2045
2139
  export interface UpdateResourceResponse {
2046
2140
  }
@@ -740,11 +740,11 @@ declare class Pinpoint extends Service {
740
740
  */
741
741
  putEvents(callback?: (err: AWSError, data: Pinpoint.Types.PutEventsResponse) => void): Request<Pinpoint.Types.PutEventsResponse, AWSError>;
742
742
  /**
743
- * Removes one or more attributes, of the same attribute type, from all the endpoints that are associated with an application.
743
+ * Removes one or more custom attributes, of the same attribute type, from the application. Existing endpoints still have the attributes but Amazon Pinpoint will stop capturing new or changed values for these attributes.
744
744
  */
745
745
  removeAttributes(params: Pinpoint.Types.RemoveAttributesRequest, callback?: (err: AWSError, data: Pinpoint.Types.RemoveAttributesResponse) => void): Request<Pinpoint.Types.RemoveAttributesResponse, AWSError>;
746
746
  /**
747
- * Removes one or more attributes, of the same attribute type, from all the endpoints that are associated with an application.
747
+ * Removes one or more custom attributes, of the same attribute type, from the application. Existing endpoints still have the attributes but Amazon Pinpoint will stop capturing new or changed values for these attributes.
748
748
  */
749
749
  removeAttributes(callback?: (err: AWSError, data: Pinpoint.Types.RemoveAttributesResponse) => void): Request<Pinpoint.Types.RemoveAttributesResponse, AWSError>;
750
750
  /**
@@ -5696,7 +5696,7 @@ declare namespace S3 {
5696
5696
  }
5697
5697
  export type ReplicationRuleStatus = "Enabled"|"Disabled"|string;
5698
5698
  export type ReplicationRules = ReplicationRule[];
5699
- export type ReplicationStatus = "COMPLETE"|"PENDING"|"FAILED"|"REPLICA"|string;
5699
+ export type ReplicationStatus = "COMPLETE"|"PENDING"|"FAILED"|"REPLICA"|"COMPLETED"|string;
5700
5700
  export interface ReplicationTime {
5701
5701
  /**
5702
5702
  * Specifies whether the replication time is enabled.
@@ -83,7 +83,7 @@ return /******/ (function(modules) { // webpackBootstrap
83
83
  /**
84
84
  * @constant
85
85
  */
86
- VERSION: '2.1464.0',
86
+ VERSION: '2.1465.0',
87
87
 
88
88
  /**
89
89
  * @api private