cdk-lambda-subminute 2.0.248 → 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.
- package/.jsii +16 -3
- package/lib/cdk-lambda-subminute.js +3 -3
- package/node_modules/aws-sdk/CHANGELOG.md +19 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/amplifyuibuilder-2021-08-11.min.json +28 -9
- package/node_modules/aws-sdk/apis/appintegrations-2020-07-29.examples.json +83 -0
- package/node_modules/aws-sdk/apis/appintegrations-2020-07-29.min.json +241 -32
- package/node_modules/aws-sdk/apis/appintegrations-2020-07-29.paginators.json +31 -1
- package/node_modules/aws-sdk/apis/apprunner-2020-05-15.min.json +50 -49
- package/node_modules/aws-sdk/apis/chime-sdk-media-pipelines-2021-07-15.min.json +296 -9
- package/node_modules/aws-sdk/apis/chime-sdk-media-pipelines-2021-07-15.paginators.json +5 -0
- package/node_modules/aws-sdk/apis/connect-2017-08-08.min.json +298 -238
- package/node_modules/aws-sdk/apis/connect-2017-08-08.paginators.json +6 -0
- package/node_modules/aws-sdk/apis/dynamodb-2012-08-10.min.json +81 -60
- package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +7 -0
- package/node_modules/aws-sdk/apis/emr-serverless-2021-07-13.min.json +94 -73
- package/node_modules/aws-sdk/apis/finspace-data-2020-07-13.min.json +5 -3
- package/node_modules/aws-sdk/apis/lakeformation-2017-03-31.min.json +141 -36
- package/node_modules/aws-sdk/apis/lakeformation-2017-03-31.paginators.json +5 -0
- package/node_modules/aws-sdk/apis/quicksight-2018-04-01.min.json +4 -1
- package/node_modules/aws-sdk/apis/s3-2006-03-01.examples.json +126 -126
- package/node_modules/aws-sdk/apis/wafv2-2019-07-29.min.json +177 -168
- package/node_modules/aws-sdk/clients/amplifyuibuilder.d.ts +32 -4
- package/node_modules/aws-sdk/clients/appintegrations.d.ts +255 -1
- package/node_modules/aws-sdk/clients/apprunner.d.ts +6 -1
- package/node_modules/aws-sdk/clients/chimesdkmediapipelines.d.ts +291 -2
- package/node_modules/aws-sdk/clients/codedeploy.d.ts +34 -34
- package/node_modules/aws-sdk/clients/connect.d.ts +64 -6
- package/node_modules/aws-sdk/clients/dynamodb.d.ts +40 -2
- package/node_modules/aws-sdk/clients/ec2.d.ts +11 -3
- package/node_modules/aws-sdk/clients/emrserverless.d.ts +21 -0
- package/node_modules/aws-sdk/clients/finspacedata.d.ts +36 -36
- package/node_modules/aws-sdk/clients/lakeformation.d.ts +95 -1
- package/node_modules/aws-sdk/clients/pinpoint.d.ts +2 -2
- package/node_modules/aws-sdk/clients/quicksight.d.ts +7 -3
- package/node_modules/aws-sdk/clients/s3.d.ts +1 -1
- package/node_modules/aws-sdk/clients/ssm.d.ts +7 -7
- package/node_modules/aws-sdk/clients/wafv2.d.ts +42 -32
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +17 -17
- package/node_modules/aws-sdk/dist/aws-sdk.js +395 -301
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +80 -80
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/lib/dynamodb/document_client.d.ts +38 -0
- package/node_modules/aws-sdk/package.json +1 -1
- package/node_modules/xml2js/node_modules/sax/LICENSE +2 -2
- package/node_modules/xml2js/node_modules/sax/lib/sax.js +13 -4
- package/node_modules/xml2js/node_modules/sax/package.json +8 -4
- 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
|
-
*
|
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:
|
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[];
|
@@ -206,6 +206,11 @@ declare namespace EMRServerless {
|
|
206
206
|
* The specification applied to each worker type.
|
207
207
|
*/
|
208
208
|
workerTypeSpecifications?: WorkerTypeSpecificationMap;
|
209
|
+
/**
|
210
|
+
* The Configuration specifications of an application. Each configuration consists of a classification and properties. You use this parameter when creating or updating an application. To see the runtimeConfiguration object of an application, run the GetApplication API operation.
|
211
|
+
*/
|
212
|
+
runtimeConfiguration?: ConfigurationList;
|
213
|
+
monitoringConfiguration?: MonitoringConfiguration;
|
209
214
|
}
|
210
215
|
export type ApplicationArn = string;
|
211
216
|
export type ApplicationId = string;
|
@@ -396,6 +401,14 @@ declare namespace EMRServerless {
|
|
396
401
|
* The key-value pairs that specify worker type to WorkerTypeSpecificationInput. This parameter must contain all valid worker types for a Spark or Hive application. Valid worker types include Driver and Executor for Spark applications and HiveDriver and TezTask for Hive applications. You can either set image details in this parameter for each worker type, or in imageConfiguration for all worker types.
|
397
402
|
*/
|
398
403
|
workerTypeSpecifications?: WorkerTypeSpecificationInputMap;
|
404
|
+
/**
|
405
|
+
* The Configuration specifications to use when creating an application. Each configuration consists of a classification and properties. This configuration is applied to all the job runs submitted under the application.
|
406
|
+
*/
|
407
|
+
runtimeConfiguration?: ConfigurationList;
|
408
|
+
/**
|
409
|
+
* The configuration setting for monitoring.
|
410
|
+
*/
|
411
|
+
monitoringConfiguration?: MonitoringConfiguration;
|
399
412
|
}
|
400
413
|
export interface CreateApplicationResponse {
|
401
414
|
/**
|
@@ -987,6 +1000,14 @@ declare namespace EMRServerless {
|
|
987
1000
|
* The Amazon EMR release label for the application. You can change the release label to use a different release of Amazon EMR.
|
988
1001
|
*/
|
989
1002
|
releaseLabel?: ReleaseLabel;
|
1003
|
+
/**
|
1004
|
+
* The Configuration specifications to use when updating an application. Each configuration consists of a classification and properties. This configuration is applied across all the job runs submitted under the application.
|
1005
|
+
*/
|
1006
|
+
runtimeConfiguration?: ConfigurationList;
|
1007
|
+
/**
|
1008
|
+
* The configuration setting for monitoring.
|
1009
|
+
*/
|
1010
|
+
monitoringConfiguration?: MonitoringConfiguration;
|
990
1011
|
}
|
991
1012
|
export interface UpdateApplicationResponse {
|
992
1013
|
/**
|
@@ -12,11 +12,11 @@ declare class Finspacedata extends Service {
|
|
12
12
|
constructor(options?: Finspacedata.Types.ClientConfiguration)
|
13
13
|
config: Config & Finspacedata.Types.ClientConfiguration;
|
14
14
|
/**
|
15
|
-
* Adds a user
|
15
|
+
* Adds a user to a permission group to grant permissions for actions a user can perform in FinSpace.
|
16
16
|
*/
|
17
17
|
associateUserToPermissionGroup(params: Finspacedata.Types.AssociateUserToPermissionGroupRequest, callback?: (err: AWSError, data: Finspacedata.Types.AssociateUserToPermissionGroupResponse) => void): Request<Finspacedata.Types.AssociateUserToPermissionGroupResponse, AWSError>;
|
18
18
|
/**
|
19
|
-
* Adds a user
|
19
|
+
* Adds a user to a permission group to grant permissions for actions a user can perform in FinSpace.
|
20
20
|
*/
|
21
21
|
associateUserToPermissionGroup(callback?: (err: AWSError, data: Finspacedata.Types.AssociateUserToPermissionGroupResponse) => void): Request<Finspacedata.Types.AssociateUserToPermissionGroupResponse, AWSError>;
|
22
22
|
/**
|
@@ -84,11 +84,11 @@ declare class Finspacedata extends Service {
|
|
84
84
|
*/
|
85
85
|
disableUser(callback?: (err: AWSError, data: Finspacedata.Types.DisableUserResponse) => void): Request<Finspacedata.Types.DisableUserResponse, AWSError>;
|
86
86
|
/**
|
87
|
-
* Removes a user
|
87
|
+
* Removes a user from a permission group.
|
88
88
|
*/
|
89
89
|
disassociateUserFromPermissionGroup(params: Finspacedata.Types.DisassociateUserFromPermissionGroupRequest, callback?: (err: AWSError, data: Finspacedata.Types.DisassociateUserFromPermissionGroupResponse) => void): Request<Finspacedata.Types.DisassociateUserFromPermissionGroupResponse, AWSError>;
|
90
90
|
/**
|
91
|
-
* Removes a user
|
91
|
+
* Removes a user from a permission group.
|
92
92
|
*/
|
93
93
|
disassociateUserFromPermissionGroup(callback?: (err: AWSError, data: Finspacedata.Types.DisassociateUserFromPermissionGroupResponse) => void): Request<Finspacedata.Types.DisassociateUserFromPermissionGroupResponse, AWSError>;
|
94
94
|
/**
|
@@ -140,11 +140,11 @@ declare class Finspacedata extends Service {
|
|
140
140
|
*/
|
141
141
|
getPermissionGroup(callback?: (err: AWSError, data: Finspacedata.Types.GetPermissionGroupResponse) => void): Request<Finspacedata.Types.GetPermissionGroupResponse, AWSError>;
|
142
142
|
/**
|
143
|
-
* Request programmatic credentials to use with FinSpace SDK.
|
143
|
+
* Request programmatic credentials to use with FinSpace SDK. For more information, see Step 2. Access credentials programmatically using IAM access key id and secret access key.
|
144
144
|
*/
|
145
145
|
getProgrammaticAccessCredentials(params: Finspacedata.Types.GetProgrammaticAccessCredentialsRequest, callback?: (err: AWSError, data: Finspacedata.Types.GetProgrammaticAccessCredentialsResponse) => void): Request<Finspacedata.Types.GetProgrammaticAccessCredentialsResponse, AWSError>;
|
146
146
|
/**
|
147
|
-
* Request programmatic credentials to use with FinSpace SDK.
|
147
|
+
* Request programmatic credentials to use with FinSpace SDK. For more information, see Step 2. Access credentials programmatically using IAM access key id and secret access key.
|
148
148
|
*/
|
149
149
|
getProgrammaticAccessCredentials(callback?: (err: AWSError, data: Finspacedata.Types.GetProgrammaticAccessCredentialsResponse) => void): Request<Finspacedata.Types.GetProgrammaticAccessCredentialsResponse, AWSError>;
|
150
150
|
/**
|
@@ -196,19 +196,19 @@ declare class Finspacedata extends Service {
|
|
196
196
|
*/
|
197
197
|
listPermissionGroups(callback?: (err: AWSError, data: Finspacedata.Types.ListPermissionGroupsResponse) => void): Request<Finspacedata.Types.ListPermissionGroupsResponse, AWSError>;
|
198
198
|
/**
|
199
|
-
* Lists all the permission groups that are associated with a specific user
|
199
|
+
* Lists all the permission groups that are associated with a specific user.
|
200
200
|
*/
|
201
201
|
listPermissionGroupsByUser(params: Finspacedata.Types.ListPermissionGroupsByUserRequest, callback?: (err: AWSError, data: Finspacedata.Types.ListPermissionGroupsByUserResponse) => void): Request<Finspacedata.Types.ListPermissionGroupsByUserResponse, AWSError>;
|
202
202
|
/**
|
203
|
-
* Lists all the permission groups that are associated with a specific user
|
203
|
+
* Lists all the permission groups that are associated with a specific user.
|
204
204
|
*/
|
205
205
|
listPermissionGroupsByUser(callback?: (err: AWSError, data: Finspacedata.Types.ListPermissionGroupsByUserResponse) => void): Request<Finspacedata.Types.ListPermissionGroupsByUserResponse, AWSError>;
|
206
206
|
/**
|
207
|
-
* Lists all available
|
207
|
+
* Lists all available users in FinSpace.
|
208
208
|
*/
|
209
209
|
listUsers(params: Finspacedata.Types.ListUsersRequest, callback?: (err: AWSError, data: Finspacedata.Types.ListUsersResponse) => void): Request<Finspacedata.Types.ListUsersResponse, AWSError>;
|
210
210
|
/**
|
211
|
-
* Lists all available
|
211
|
+
* Lists all available users in FinSpace.
|
212
212
|
*/
|
213
213
|
listUsers(callback?: (err: AWSError, data: Finspacedata.Types.ListUsersResponse) => void): Request<Finspacedata.Types.ListUsersResponse, AWSError>;
|
214
214
|
/**
|
@@ -252,11 +252,11 @@ declare class Finspacedata extends Service {
|
|
252
252
|
*/
|
253
253
|
updatePermissionGroup(callback?: (err: AWSError, data: Finspacedata.Types.UpdatePermissionGroupResponse) => void): Request<Finspacedata.Types.UpdatePermissionGroupResponse, AWSError>;
|
254
254
|
/**
|
255
|
-
* Modifies the details of the specified user
|
255
|
+
* Modifies the details of the specified user. You cannot update the userId for a user.
|
256
256
|
*/
|
257
257
|
updateUser(params: Finspacedata.Types.UpdateUserRequest, callback?: (err: AWSError, data: Finspacedata.Types.UpdateUserResponse) => void): Request<Finspacedata.Types.UpdateUserResponse, AWSError>;
|
258
258
|
/**
|
259
|
-
* Modifies the details of the specified user
|
259
|
+
* Modifies the details of the specified user. You cannot update the userId for a user.
|
260
260
|
*/
|
261
261
|
updateUser(callback?: (err: AWSError, data: Finspacedata.Types.UpdateUserResponse) => void): Request<Finspacedata.Types.UpdateUserResponse, AWSError>;
|
262
262
|
}
|
@@ -549,7 +549,7 @@ declare namespace Finspacedata {
|
|
549
549
|
/**
|
550
550
|
* The option to indicate whether the user can use the GetProgrammaticAccessCredentials API to obtain credentials that can then be used to access other FinSpace Data API operations. ENABLED – The user has permissions to use the APIs. DISABLED – The user does not have permissions to use any APIs.
|
551
551
|
*/
|
552
|
-
|
552
|
+
apiAccess?: ApiAccess;
|
553
553
|
/**
|
554
554
|
* The ARN identifier of an AWS user or role that is allowed to call the GetProgrammaticAccessCredentials API to obtain a credentials token for a specific FinSpace user. This must be an IAM role within your FinSpace account.
|
555
555
|
*/
|
@@ -755,7 +755,7 @@ declare namespace Finspacedata {
|
|
755
755
|
}
|
756
756
|
export interface DisableUserRequest {
|
757
757
|
/**
|
758
|
-
* The unique identifier for the user
|
758
|
+
* The unique identifier for the user that you want to deactivate.
|
759
759
|
*/
|
760
760
|
userId: UserId;
|
761
761
|
/**
|
@@ -765,7 +765,7 @@ declare namespace Finspacedata {
|
|
765
765
|
}
|
766
766
|
export interface DisableUserResponse {
|
767
767
|
/**
|
768
|
-
* The unique identifier for the
|
768
|
+
* The unique identifier for the deactivated user.
|
769
769
|
*/
|
770
770
|
userId?: UserId;
|
771
771
|
}
|
@@ -792,7 +792,7 @@ declare namespace Finspacedata {
|
|
792
792
|
export type Email = string;
|
793
793
|
export interface EnableUserRequest {
|
794
794
|
/**
|
795
|
-
* The unique identifier for the user
|
795
|
+
* The unique identifier for the user that you want to activate.
|
796
796
|
*/
|
797
797
|
userId: UserId;
|
798
798
|
/**
|
@@ -802,7 +802,7 @@ declare namespace Finspacedata {
|
|
802
802
|
}
|
803
803
|
export interface EnableUserResponse {
|
804
804
|
/**
|
805
|
-
* The unique identifier for the
|
805
|
+
* The unique identifier for the active user.
|
806
806
|
*/
|
807
807
|
userId?: UserId;
|
808
808
|
}
|
@@ -1040,11 +1040,11 @@ declare namespace Finspacedata {
|
|
1040
1040
|
}
|
1041
1041
|
export interface GetUserResponse {
|
1042
1042
|
/**
|
1043
|
-
* The unique identifier for the user
|
1043
|
+
* The unique identifier for the user that is retrieved.
|
1044
1044
|
*/
|
1045
1045
|
userId?: UserId;
|
1046
1046
|
/**
|
1047
|
-
* The current status of the user
|
1047
|
+
* The current status of the user. CREATING – The creation is in progress. ENABLED – The user is created and is currently active. DISABLED – The user is currently inactive.
|
1048
1048
|
*/
|
1049
1049
|
status?: UserStatus;
|
1050
1050
|
/**
|
@@ -1072,19 +1072,19 @@ declare namespace Finspacedata {
|
|
1072
1072
|
*/
|
1073
1073
|
apiAccessPrincipalArn?: RoleArn;
|
1074
1074
|
/**
|
1075
|
-
* The timestamp at which the user
|
1075
|
+
* The timestamp at which the user was created in FinSpace. The value is determined as epoch time in milliseconds.
|
1076
1076
|
*/
|
1077
1077
|
createTime?: TimestampEpoch;
|
1078
1078
|
/**
|
1079
|
-
* Describes the last time the user
|
1079
|
+
* Describes the last time the user was activated. The value is determined as epoch time in milliseconds.
|
1080
1080
|
*/
|
1081
1081
|
lastEnabledTime?: TimestampEpoch;
|
1082
1082
|
/**
|
1083
|
-
* Describes the last time the user
|
1083
|
+
* Describes the last time the user was deactivated. The value is determined as epoch time in milliseconds.
|
1084
1084
|
*/
|
1085
1085
|
lastDisabledTime?: TimestampEpoch;
|
1086
1086
|
/**
|
1087
|
-
* Describes the last time the user
|
1087
|
+
* Describes the last time the user details were updated. The value is determined as epoch time in milliseconds.
|
1088
1088
|
*/
|
1089
1089
|
lastModifiedTime?: TimestampEpoch;
|
1090
1090
|
/**
|
@@ -1263,7 +1263,7 @@ declare namespace Finspacedata {
|
|
1263
1263
|
}
|
1264
1264
|
export interface ListUsersResponse {
|
1265
1265
|
/**
|
1266
|
-
* A list of all the
|
1266
|
+
* A list of all the users.
|
1267
1267
|
*/
|
1268
1268
|
users?: UserList;
|
1269
1269
|
/**
|
@@ -1301,7 +1301,7 @@ declare namespace Finspacedata {
|
|
1301
1301
|
*/
|
1302
1302
|
lastModifiedTime?: TimestampEpoch;
|
1303
1303
|
/**
|
1304
|
-
* Indicates the status of the user
|
1304
|
+
* Indicates the status of the user within a permission group. ADDITION_IN_PROGRESS – The user is currently being added to the permission group. ADDITION_SUCCESS – The user is successfully added to the permission group. REMOVAL_IN_PROGRESS – The user is currently being removed from the permission group.
|
1305
1305
|
*/
|
1306
1306
|
membershipStatus?: PermissionGroupMembershipStatus;
|
1307
1307
|
}
|
@@ -1315,7 +1315,7 @@ declare namespace Finspacedata {
|
|
1315
1315
|
*/
|
1316
1316
|
name?: PermissionGroupName;
|
1317
1317
|
/**
|
1318
|
-
* Indicates the status of the user
|
1318
|
+
* Indicates the status of the user within a permission group. ADDITION_IN_PROGRESS – The user is currently being added to the permission group. ADDITION_SUCCESS – The user is successfully added to the permission group. REMOVAL_IN_PROGRESS – The user is currently being removed from the permission group.
|
1319
1319
|
*/
|
1320
1320
|
membershipStatus?: PermissionGroupMembershipStatus;
|
1321
1321
|
}
|
@@ -1352,7 +1352,7 @@ declare namespace Finspacedata {
|
|
1352
1352
|
*/
|
1353
1353
|
userId?: UserId;
|
1354
1354
|
/**
|
1355
|
-
* A randomly generated temporary password for the requested user
|
1355
|
+
* A randomly generated temporary password for the requested user. This password expires in 7 days.
|
1356
1356
|
*/
|
1357
1357
|
temporaryPassword?: Password;
|
1358
1358
|
}
|
@@ -1503,7 +1503,7 @@ declare namespace Finspacedata {
|
|
1503
1503
|
}
|
1504
1504
|
export interface UpdateUserRequest {
|
1505
1505
|
/**
|
1506
|
-
* The unique identifier for the user
|
1506
|
+
* The unique identifier for the user that you want to update.
|
1507
1507
|
*/
|
1508
1508
|
userId: UserId;
|
1509
1509
|
/**
|
@@ -1533,7 +1533,7 @@ declare namespace Finspacedata {
|
|
1533
1533
|
}
|
1534
1534
|
export interface UpdateUserResponse {
|
1535
1535
|
/**
|
1536
|
-
* The unique identifier of the updated user
|
1536
|
+
* The unique identifier of the updated user.
|
1537
1537
|
*/
|
1538
1538
|
userId?: UserId;
|
1539
1539
|
}
|
@@ -1543,7 +1543,7 @@ declare namespace Finspacedata {
|
|
1543
1543
|
*/
|
1544
1544
|
userId?: UserId;
|
1545
1545
|
/**
|
1546
|
-
* The current status of the user
|
1546
|
+
* The current status of the user. CREATING – The user creation is in progress. ENABLED – The user is created and is currently active. DISABLED – The user is currently inactive.
|
1547
1547
|
*/
|
1548
1548
|
status?: UserStatus;
|
1549
1549
|
/**
|
@@ -1571,19 +1571,19 @@ declare namespace Finspacedata {
|
|
1571
1571
|
*/
|
1572
1572
|
apiAccessPrincipalArn?: RoleArn;
|
1573
1573
|
/**
|
1574
|
-
* The timestamp at which the user
|
1574
|
+
* The timestamp at which the user was created in FinSpace. The value is determined as epoch time in milliseconds.
|
1575
1575
|
*/
|
1576
1576
|
createTime?: TimestampEpoch;
|
1577
1577
|
/**
|
1578
|
-
* Describes the last time the user
|
1578
|
+
* Describes the last time the user was activated. The value is determined as epoch time in milliseconds.
|
1579
1579
|
*/
|
1580
1580
|
lastEnabledTime?: TimestampEpoch;
|
1581
1581
|
/**
|
1582
|
-
* Describes the last time the user
|
1582
|
+
* Describes the last time the user was deactivated. The value is determined as epoch time in milliseconds.
|
1583
1583
|
*/
|
1584
1584
|
lastDisabledTime?: TimestampEpoch;
|
1585
1585
|
/**
|
1586
|
-
* Describes the last time the user
|
1586
|
+
* Describes the last time the user was updated. The value is determined as epoch time in milliseconds.
|
1587
1587
|
*/
|
1588
1588
|
lastModifiedTime?: TimestampEpoch;
|
1589
1589
|
/**
|
@@ -1597,7 +1597,7 @@ declare namespace Finspacedata {
|
|
1597
1597
|
*/
|
1598
1598
|
userId?: UserId;
|
1599
1599
|
/**
|
1600
|
-
* The current status of the user
|
1600
|
+
* The current status of the user. CREATING – The user creation is in progress. ENABLED – The user is created and is currently active. DISABLED – The user is currently inactive.
|
1601
1601
|
*/
|
1602
1602
|
status?: UserStatus;
|
1603
1603
|
/**
|
@@ -1625,7 +1625,7 @@ declare namespace Finspacedata {
|
|
1625
1625
|
*/
|
1626
1626
|
apiAccessPrincipalArn?: RoleArn;
|
1627
1627
|
/**
|
1628
|
-
* Indicates the status of the user
|
1628
|
+
* Indicates the status of the user within a permission group. ADDITION_IN_PROGRESS – The user is currently being added to the permission group. ADDITION_SUCCESS – The user is successfully added to the permission group. REMOVAL_IN_PROGRESS – The user is currently being removed from the permission group.
|
1629
1629
|
*/
|
1630
1630
|
membershipStatus?: PermissionGroupMembershipStatus;
|
1631
1631
|
}
|