aws-sdk 2.1495.0 → 2.1496.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.
- package/CHANGELOG.md +14 -1
- package/README.md +1 -1
- package/apis/backup-2018-11-15.min.json +222 -9
- package/apis/backup-2018-11-15.paginators.json +15 -0
- package/apis/cleanrooms-2022-02-17.min.json +133 -74
- package/apis/connect-2017-08-08.min.json +20 -10
- package/apis/glue-2017-03-31.min.json +538 -304
- package/apis/glue-2017-03-31.paginators.json +5 -0
- package/apis/iot-2015-05-28.min.json +193 -161
- package/apis/pipes-2015-10-07.min.json +136 -53
- package/apis/resource-explorer-2-2022-07-28.min.json +69 -5
- package/apis/resource-explorer-2-2022-07-28.paginators.json +6 -0
- package/apis/sagemaker-2017-07-24.min.json +1 -3
- package/apis/states-2016-11-23.min.json +100 -22
- package/clients/backup.d.ts +279 -0
- package/clients/cleanrooms.d.ts +58 -10
- package/clients/connect.d.ts +13 -0
- package/clients/glue.d.ts +352 -2
- package/clients/iot.d.ts +46 -5
- package/clients/lambda.d.ts +1 -1
- package/clients/pipes.d.ts +143 -18
- package/clients/resourceexplorer2.d.ts +90 -9
- package/clients/sagemaker.d.ts +2 -2
- package/clients/signer.d.ts +35 -35
- package/clients/stepfunctions.d.ts +123 -18
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +13 -13
- package/dist/aws-sdk.js +216 -174
- package/dist/aws-sdk.min.js +79 -79
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/clients/cleanrooms.d.ts
CHANGED
@@ -1200,6 +1200,10 @@ declare namespace CleanRooms {
|
|
1200
1200
|
* An optional label that you can assign to a resource when you create it. Each tag consists of a key and an optional value, both of which you define. When you use tagging, you can also use tag-based access control in IAM policies to control access to this resource.
|
1201
1201
|
*/
|
1202
1202
|
tags?: TagMap;
|
1203
|
+
/**
|
1204
|
+
* The collaboration creator's payment responsibilities set by the collaboration creator. If the collaboration creator hasn't specified anyone as the member paying for query compute costs, then the member who can query is the default payer.
|
1205
|
+
*/
|
1206
|
+
creatorPaymentConfiguration?: PaymentConfiguration;
|
1203
1207
|
}
|
1204
1208
|
export interface CreateCollaborationOutput {
|
1205
1209
|
/**
|
@@ -1297,7 +1301,7 @@ declare namespace CleanRooms {
|
|
1297
1301
|
*/
|
1298
1302
|
collaborationIdentifier: CollaborationIdentifier;
|
1299
1303
|
/**
|
1300
|
-
* An indicator as to whether query logging has been enabled or disabled for the
|
1304
|
+
* An indicator as to whether query logging has been enabled or disabled for the membership.
|
1301
1305
|
*/
|
1302
1306
|
queryLogStatus: MembershipQueryLogStatus;
|
1303
1307
|
/**
|
@@ -1308,6 +1312,10 @@ declare namespace CleanRooms {
|
|
1308
1312
|
* The default protected query result configuration as specified by the member who can receive results.
|
1309
1313
|
*/
|
1310
1314
|
defaultResultConfiguration?: MembershipProtectedQueryResultConfiguration;
|
1315
|
+
/**
|
1316
|
+
* The payment responsibilities accepted by the collaboration member. Not required if the collaboration member has the member ability to run queries. Required if the collaboration member doesn't have the member ability to run queries but is configured as a payer by the collaboration creator.
|
1317
|
+
*/
|
1318
|
+
paymentConfiguration?: MembershipPaymentConfiguration;
|
1311
1319
|
}
|
1312
1320
|
export interface CreateMembershipOutput {
|
1313
1321
|
/**
|
@@ -1317,19 +1325,19 @@ declare namespace CleanRooms {
|
|
1317
1325
|
}
|
1318
1326
|
export interface DataEncryptionMetadata {
|
1319
1327
|
/**
|
1320
|
-
* Indicates whether encrypted tables can contain cleartext data (
|
1328
|
+
* Indicates whether encrypted tables can contain cleartext data (TRUE) or are to cryptographically process every column (FALSE).
|
1321
1329
|
*/
|
1322
1330
|
allowCleartext: Boolean;
|
1323
1331
|
/**
|
1324
|
-
* Indicates whether Fingerprint columns can contain duplicate entries (
|
1332
|
+
* Indicates whether Fingerprint columns can contain duplicate entries (TRUE) or are to contain only non-repeated values (FALSE).
|
1325
1333
|
*/
|
1326
1334
|
allowDuplicates: Boolean;
|
1327
1335
|
/**
|
1328
|
-
* Indicates whether Fingerprint columns can be joined on any other Fingerprint column with a different name (
|
1336
|
+
* Indicates whether Fingerprint columns can be joined on any other Fingerprint column with a different name (TRUE) or can only be joined on Fingerprint columns of the same name (FALSE).
|
1329
1337
|
*/
|
1330
1338
|
allowJoinsOnColumnsWithDifferentNames: Boolean;
|
1331
1339
|
/**
|
1332
|
-
* Indicates whether NULL values are to be copied as NULL to encrypted tables (
|
1340
|
+
* Indicates whether NULL values are to be copied as NULL to encrypted tables (TRUE) or cryptographically processed (FALSE).
|
1333
1341
|
*/
|
1334
1342
|
preserveNulls: Boolean;
|
1335
1343
|
}
|
@@ -1825,6 +1833,10 @@ declare namespace CleanRooms {
|
|
1825
1833
|
* The member's display name.
|
1826
1834
|
*/
|
1827
1835
|
displayName: DisplayName;
|
1836
|
+
/**
|
1837
|
+
* The collaboration member's payment responsibilities set by the collaboration creator. If the collaboration creator hasn't specified anyone as the member paying for query compute costs, then the member who can query is the default payer.
|
1838
|
+
*/
|
1839
|
+
paymentConfiguration?: PaymentConfiguration;
|
1828
1840
|
}
|
1829
1841
|
export type MemberStatus = "INVITED"|"ACTIVE"|"LEFT"|"REMOVED"|string;
|
1830
1842
|
export interface MemberSummary {
|
@@ -1833,7 +1845,7 @@ declare namespace CleanRooms {
|
|
1833
1845
|
*/
|
1834
1846
|
accountId: AccountId;
|
1835
1847
|
/**
|
1836
|
-
* The status of the member.
|
1848
|
+
* The status of the member.
|
1837
1849
|
*/
|
1838
1850
|
status: MemberStatus;
|
1839
1851
|
/**
|
@@ -1860,6 +1872,10 @@ declare namespace CleanRooms {
|
|
1860
1872
|
* The unique ARN for the member's associated membership, if present.
|
1861
1873
|
*/
|
1862
1874
|
membershipArn?: MembershipArn;
|
1875
|
+
/**
|
1876
|
+
* The collaboration member's payment responsibilities set by the collaboration creator.
|
1877
|
+
*/
|
1878
|
+
paymentConfiguration: PaymentConfiguration;
|
1863
1879
|
}
|
1864
1880
|
export type MemberSummaryList = MemberSummary[];
|
1865
1881
|
export interface Membership {
|
@@ -1900,7 +1916,7 @@ declare namespace CleanRooms {
|
|
1900
1916
|
*/
|
1901
1917
|
updateTime: Timestamp;
|
1902
1918
|
/**
|
1903
|
-
* The status of the membership.
|
1919
|
+
* The status of the membership.
|
1904
1920
|
*/
|
1905
1921
|
status: MembershipStatus;
|
1906
1922
|
/**
|
@@ -1908,16 +1924,26 @@ declare namespace CleanRooms {
|
|
1908
1924
|
*/
|
1909
1925
|
memberAbilities: MemberAbilities;
|
1910
1926
|
/**
|
1911
|
-
* An indicator as to whether query logging has been enabled or disabled for the
|
1927
|
+
* An indicator as to whether query logging has been enabled or disabled for the membership.
|
1912
1928
|
*/
|
1913
1929
|
queryLogStatus: MembershipQueryLogStatus;
|
1914
1930
|
/**
|
1915
1931
|
* The default protected query result configuration as specified by the member who can receive results.
|
1916
1932
|
*/
|
1917
1933
|
defaultResultConfiguration?: MembershipProtectedQueryResultConfiguration;
|
1934
|
+
/**
|
1935
|
+
* The payment responsibilities accepted by the collaboration member.
|
1936
|
+
*/
|
1937
|
+
paymentConfiguration: MembershipPaymentConfiguration;
|
1918
1938
|
}
|
1919
1939
|
export type MembershipArn = string;
|
1920
1940
|
export type MembershipIdentifier = string;
|
1941
|
+
export interface MembershipPaymentConfiguration {
|
1942
|
+
/**
|
1943
|
+
* The payment responsibilities accepted by the collaboration member for query compute costs.
|
1944
|
+
*/
|
1945
|
+
queryCompute: MembershipQueryComputePaymentConfig;
|
1946
|
+
}
|
1921
1947
|
export interface MembershipProtectedQueryOutputConfiguration {
|
1922
1948
|
s3?: ProtectedQueryS3OutputConfiguration;
|
1923
1949
|
}
|
@@ -1931,6 +1957,12 @@ declare namespace CleanRooms {
|
|
1931
1957
|
*/
|
1932
1958
|
roleArn?: RoleArn;
|
1933
1959
|
}
|
1960
|
+
export interface MembershipQueryComputePaymentConfig {
|
1961
|
+
/**
|
1962
|
+
* Indicates whether the collaboration member has accepted to pay for query compute costs (TRUE) or has not accepted to pay for query compute costs (FALSE). If the collaboration creator has not specified anyone to pay for query compute costs, then the member who can query is the default payer. An error message is returned for the following reasons: If you set the value to FALSE but you are responsible to pay for query compute costs. If you set the value to TRUE but you are not responsible to pay for query compute costs.
|
1963
|
+
*/
|
1964
|
+
isResponsible: Boolean;
|
1965
|
+
}
|
1934
1966
|
export type MembershipQueryLogStatus = "ENABLED"|"DISABLED"|string;
|
1935
1967
|
export type MembershipStatus = "ACTIVE"|"REMOVED"|"COLLABORATION_DELETED"|string;
|
1936
1968
|
export interface MembershipSummary {
|
@@ -1971,13 +2003,17 @@ declare namespace CleanRooms {
|
|
1971
2003
|
*/
|
1972
2004
|
updateTime: Timestamp;
|
1973
2005
|
/**
|
1974
|
-
* The status of the membership.
|
2006
|
+
* The status of the membership.
|
1975
2007
|
*/
|
1976
2008
|
status: MembershipStatus;
|
1977
2009
|
/**
|
1978
2010
|
* The abilities granted to the collaboration member.
|
1979
2011
|
*/
|
1980
2012
|
memberAbilities: MemberAbilities;
|
2013
|
+
/**
|
2014
|
+
* The payment responsibilities accepted by the collaboration member.
|
2015
|
+
*/
|
2016
|
+
paymentConfiguration: MembershipPaymentConfiguration;
|
1981
2017
|
}
|
1982
2018
|
export type MembershipSummaryList = MembershipSummary[];
|
1983
2019
|
export type PaginationToken = string;
|
@@ -1985,6 +2021,12 @@ declare namespace CleanRooms {
|
|
1985
2021
|
export type ParameterName = string;
|
1986
2022
|
export type ParameterType = "SMALLINT"|"INTEGER"|"BIGINT"|"DECIMAL"|"REAL"|"DOUBLE_PRECISION"|"BOOLEAN"|"CHAR"|"VARCHAR"|"DATE"|"TIMESTAMP"|"TIMESTAMPTZ"|"TIME"|"TIMETZ"|"VARBYTE"|string;
|
1987
2023
|
export type ParameterValue = string;
|
2024
|
+
export interface PaymentConfiguration {
|
2025
|
+
/**
|
2026
|
+
* The collaboration member's payment responsibilities set by the collaboration creator for query compute costs.
|
2027
|
+
*/
|
2028
|
+
queryCompute: QueryComputePaymentConfig;
|
2029
|
+
}
|
1988
2030
|
export interface ProtectedQuery {
|
1989
2031
|
/**
|
1990
2032
|
* The identifier for a protected query instance.
|
@@ -2140,6 +2182,12 @@ declare namespace CleanRooms {
|
|
2140
2182
|
}
|
2141
2183
|
export type ProtectedQuerySummaryList = ProtectedQuerySummary[];
|
2142
2184
|
export type ProtectedQueryType = "SQL"|string;
|
2185
|
+
export interface QueryComputePaymentConfig {
|
2186
|
+
/**
|
2187
|
+
* Indicates whether the collaboration creator has configured the collaboration member to pay for query compute costs (TRUE) or has not configured the collaboration member to pay for query compute costs (FALSE). Exactly one member can be configured to pay for query compute costs. An error is returned if the collaboration creator sets a TRUE value for more than one member in the collaboration. If the collaboration creator hasn't specified anyone as the member paying for query compute costs, then the member who can query is the default payer. An error is returned if the collaboration creator sets a FALSE value for the member who can query.
|
2188
|
+
*/
|
2189
|
+
isResponsible: Boolean;
|
2190
|
+
}
|
2143
2191
|
export type QueryTables = TableAlias[];
|
2144
2192
|
export type ResourceAlias = string;
|
2145
2193
|
export type ResourceDescription = string;
|
@@ -2413,7 +2461,7 @@ declare namespace CleanRooms {
|
|
2413
2461
|
*/
|
2414
2462
|
membershipIdentifier: MembershipIdentifier;
|
2415
2463
|
/**
|
2416
|
-
* An indicator as to whether query logging has been enabled or disabled for the
|
2464
|
+
* An indicator as to whether query logging has been enabled or disabled for the membership.
|
2417
2465
|
*/
|
2418
2466
|
queryLogStatus?: MembershipQueryLogStatus;
|
2419
2467
|
/**
|
package/clients/connect.d.ts
CHANGED
@@ -8480,6 +8480,15 @@ declare namespace Connect {
|
|
8480
8480
|
}
|
8481
8481
|
export type SecurityProfilesSearchSummaryList = SecurityProfileSearchSummary[];
|
8482
8482
|
export type SecurityToken = string;
|
8483
|
+
export type SegmentAttributeName = string;
|
8484
|
+
export interface SegmentAttributeValue {
|
8485
|
+
/**
|
8486
|
+
* The value of a segment attribute.
|
8487
|
+
*/
|
8488
|
+
ValueString?: SegmentAttributeValueString;
|
8489
|
+
}
|
8490
|
+
export type SegmentAttributeValueString = string;
|
8491
|
+
export type SegmentAttributes = {[key: string]: SegmentAttributeValue};
|
8483
8492
|
export interface SendNotificationActionDefinition {
|
8484
8493
|
/**
|
8485
8494
|
* Notification delivery method.
|
@@ -8581,6 +8590,10 @@ declare namespace Connect {
|
|
8581
8590
|
* The unique identifier for an Amazon Connect contact. This identifier is related to the chat starting. You cannot provide data for both RelatedContactId and PersistentChat.
|
8582
8591
|
*/
|
8583
8592
|
RelatedContactId?: ContactId;
|
8593
|
+
/**
|
8594
|
+
* A set of system defined key-value pairs stored on individual contact segments using an attribute map. The attributes are standard Amazon Connect attributes. They can be accessed in flows. Attribute keys can include only alphanumeric, -, and _. This field can be used to show channel subtype, such as connect:Guide. The types application/vnd.amazonaws.connect.message.interactive and application/vnd.amazonaws.connect.message.interactive.response must be present in the SupportedMessagingContentTypes field of this API in order to set SegmentAttributes as { "connect:Subtype": {"valueString" : "connect:Guide" }}.
|
8595
|
+
*/
|
8596
|
+
SegmentAttributes?: SegmentAttributes;
|
8584
8597
|
}
|
8585
8598
|
export interface StartChatContactResponse {
|
8586
8599
|
/**
|