cdk-docker-image-deployment 0.0.198 → 0.0.199

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.
@@ -42,6 +42,30 @@
42
42
  "limit_key": "maxResults",
43
43
  "result_key": "items"
44
44
  },
45
+ "ListExportErrors": {
46
+ "input_token": "nextToken",
47
+ "output_token": "nextToken",
48
+ "limit_key": "maxResults",
49
+ "result_key": "items"
50
+ },
51
+ "ListExports": {
52
+ "input_token": "nextToken",
53
+ "output_token": "nextToken",
54
+ "limit_key": "maxResults",
55
+ "result_key": "items"
56
+ },
57
+ "ListImportErrors": {
58
+ "input_token": "nextToken",
59
+ "output_token": "nextToken",
60
+ "limit_key": "maxResults",
61
+ "result_key": "items"
62
+ },
63
+ "ListImports": {
64
+ "input_token": "nextToken",
65
+ "output_token": "nextToken",
66
+ "limit_key": "maxResults",
67
+ "result_key": "items"
68
+ },
45
69
  "ListSourceServerActions": {
46
70
  "input_token": "nextToken",
47
71
  "output_token": "nextToken",
@@ -123,6 +123,14 @@ declare class ChimeSDKMessaging extends Service {
123
123
  * Deletes a channel moderator. The x-amz-chime-bearer request header is mandatory. Use the AppInstanceUserArn of the user that makes the API call as the value in the header.
124
124
  */
125
125
  deleteChannelModerator(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
126
+ /**
127
+ * Deletes the streaming configurations for an AppInstance. For more information, see Streaming messaging data in the Amazon Chime SDK Developer Guide.
128
+ */
129
+ deleteMessagingStreamingConfigurations(params: ChimeSDKMessaging.Types.DeleteMessagingStreamingConfigurationsRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
130
+ /**
131
+ * Deletes the streaming configurations for an AppInstance. For more information, see Streaming messaging data in the Amazon Chime SDK Developer Guide.
132
+ */
133
+ deleteMessagingStreamingConfigurations(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
126
134
  /**
127
135
  * Returns the full details of a channel in an Amazon Chime AppInstance. The x-amz-chime-bearer request header is mandatory. Use the AppInstanceUserArn of the user that makes the API call as the value in the header.
128
136
  */
@@ -219,6 +227,14 @@ declare class ChimeSDKMessaging extends Service {
219
227
  * The details of the endpoint for the messaging session.
220
228
  */
221
229
  getMessagingSessionEndpoint(callback?: (err: AWSError, data: ChimeSDKMessaging.Types.GetMessagingSessionEndpointResponse) => void): Request<ChimeSDKMessaging.Types.GetMessagingSessionEndpointResponse, AWSError>;
230
+ /**
231
+ * Retrieves the data streaming configuration for an AppInstance. For more information, see Streaming messaging data in the Amazon Chime SDK Developer Guide.
232
+ */
233
+ getMessagingStreamingConfigurations(params: ChimeSDKMessaging.Types.GetMessagingStreamingConfigurationsRequest, callback?: (err: AWSError, data: ChimeSDKMessaging.Types.GetMessagingStreamingConfigurationsResponse) => void): Request<ChimeSDKMessaging.Types.GetMessagingStreamingConfigurationsResponse, AWSError>;
234
+ /**
235
+ * Retrieves the data streaming configuration for an AppInstance. For more information, see Streaming messaging data in the Amazon Chime SDK Developer Guide.
236
+ */
237
+ getMessagingStreamingConfigurations(callback?: (err: AWSError, data: ChimeSDKMessaging.Types.GetMessagingStreamingConfigurationsResponse) => void): Request<ChimeSDKMessaging.Types.GetMessagingStreamingConfigurationsResponse, AWSError>;
222
238
  /**
223
239
  * Lists all the users banned from a particular channel. The x-amz-chime-bearer request header is mandatory. Use the AppInstanceUserArn of the user that makes the API call as the value in the header.
224
240
  */
@@ -315,6 +331,14 @@ declare class ChimeSDKMessaging extends Service {
315
331
  * Sets the membership preferences of an AppInstanceUser for the specified channel. The AppInstanceUser must be a member of the channel. Only the AppInstanceUser who owns the membership can set preferences. Users in the AppInstanceAdmin and channel moderator roles can't set preferences for other users. Banned users can't set membership preferences for the channel from which they are banned.
316
332
  */
317
333
  putChannelMembershipPreferences(callback?: (err: AWSError, data: ChimeSDKMessaging.Types.PutChannelMembershipPreferencesResponse) => void): Request<ChimeSDKMessaging.Types.PutChannelMembershipPreferencesResponse, AWSError>;
334
+ /**
335
+ * Sets the data streaming configuration for an AppInstance. For more information, see Streaming messaging data in the Amazon Chime SDK Developer Guide.
336
+ */
337
+ putMessagingStreamingConfigurations(params: ChimeSDKMessaging.Types.PutMessagingStreamingConfigurationsRequest, callback?: (err: AWSError, data: ChimeSDKMessaging.Types.PutMessagingStreamingConfigurationsResponse) => void): Request<ChimeSDKMessaging.Types.PutMessagingStreamingConfigurationsResponse, AWSError>;
338
+ /**
339
+ * Sets the data streaming configuration for an AppInstance. For more information, see Streaming messaging data in the Amazon Chime SDK Developer Guide.
340
+ */
341
+ putMessagingStreamingConfigurations(callback?: (err: AWSError, data: ChimeSDKMessaging.Types.PutMessagingStreamingConfigurationsResponse) => void): Request<ChimeSDKMessaging.Types.PutMessagingStreamingConfigurationsResponse, AWSError>;
318
342
  /**
319
343
  * Redacts message content, but not metadata. The message exists in the back end, but the action returns null content, and the state shows as redacted. The x-amz-chime-bearer request header is mandatory. Use the AppInstanceUserArn of the user that makes the API call as the value in the header.
320
344
  */
@@ -1166,6 +1190,12 @@ declare namespace ChimeSDKMessaging {
1166
1190
  */
1167
1191
  SubChannelId?: SubChannelId;
1168
1192
  }
1193
+ export interface DeleteMessagingStreamingConfigurationsRequest {
1194
+ /**
1195
+ * The ARN of the streaming configurations being deleted.
1196
+ */
1197
+ AppInstanceArn: ChimeArn;
1198
+ }
1169
1199
  export interface DescribeChannelBanRequest {
1170
1200
  /**
1171
1201
  * The ARN of the channel from which the user is banned.
@@ -1413,6 +1443,18 @@ declare namespace ChimeSDKMessaging {
1413
1443
  */
1414
1444
  Endpoint?: MessagingSessionEndpoint;
1415
1445
  }
1446
+ export interface GetMessagingStreamingConfigurationsRequest {
1447
+ /**
1448
+ * The ARN of the streaming configurations.
1449
+ */
1450
+ AppInstanceArn: ChimeArn;
1451
+ }
1452
+ export interface GetMessagingStreamingConfigurationsResponse {
1453
+ /**
1454
+ * The streaming settings.
1455
+ */
1456
+ StreamingConfigurations?: StreamingConfigurationList;
1457
+ }
1416
1458
  export interface Identity {
1417
1459
  /**
1418
1460
  * The ARN in an Identity.
@@ -1787,6 +1829,7 @@ declare namespace ChimeSDKMessaging {
1787
1829
  StringValues?: MessageAttributeStringValues;
1788
1830
  }
1789
1831
  export type MessageId = string;
1832
+ export type MessagingDataType = "Channel"|"ChannelMessage"|string;
1790
1833
  export interface MessagingSessionEndpoint {
1791
1834
  /**
1792
1835
  * The endpoint to which you establish a websocket connection.
@@ -1883,6 +1926,22 @@ declare namespace ChimeSDKMessaging {
1883
1926
  */
1884
1927
  Preferences?: ChannelMembershipPreferences;
1885
1928
  }
1929
+ export interface PutMessagingStreamingConfigurationsRequest {
1930
+ /**
1931
+ * The ARN of the streaming configuration.
1932
+ */
1933
+ AppInstanceArn: ChimeArn;
1934
+ /**
1935
+ * The streaming configurations.
1936
+ */
1937
+ StreamingConfigurations: StreamingConfigurationList;
1938
+ }
1939
+ export interface PutMessagingStreamingConfigurationsResponse {
1940
+ /**
1941
+ * The requested streaming configurations.
1942
+ */
1943
+ StreamingConfigurations?: StreamingConfigurationList;
1944
+ }
1886
1945
  export interface RedactChannelMessageRequest {
1887
1946
  /**
1888
1947
  * The ARN of the channel containing the messages that you want to redact.
@@ -2025,6 +2084,17 @@ declare namespace ChimeSDKMessaging {
2025
2084
  }
2026
2085
  export type SortOrder = "ASCENDING"|"DESCENDING"|string;
2027
2086
  export type StatusDetail = string;
2087
+ export interface StreamingConfiguration {
2088
+ /**
2089
+ * The data type of the configuration.
2090
+ */
2091
+ DataType: MessagingDataType;
2092
+ /**
2093
+ * The ARN of the resource in the configuration.
2094
+ */
2095
+ ResourceArn: ChimeArn;
2096
+ }
2097
+ export type StreamingConfigurationList = StreamingConfiguration[];
2028
2098
  export type String = string;
2029
2099
  export type SubChannelId = string;
2030
2100
  export interface SubChannelSummary {
@@ -227,6 +227,14 @@ declare class CleanRooms extends Service {
227
227
  * Lists the schemas for relations within a collaboration.
228
228
  */
229
229
  listSchemas(callback?: (err: AWSError, data: CleanRooms.Types.ListSchemasOutput) => void): Request<CleanRooms.Types.ListSchemasOutput, AWSError>;
230
+ /**
231
+ * Lists all of the tags that have been added to a resource.
232
+ */
233
+ listTagsForResource(params: CleanRooms.Types.ListTagsForResourceInput, callback?: (err: AWSError, data: CleanRooms.Types.ListTagsForResourceOutput) => void): Request<CleanRooms.Types.ListTagsForResourceOutput, AWSError>;
234
+ /**
235
+ * Lists all of the tags that have been added to a resource.
236
+ */
237
+ listTagsForResource(callback?: (err: AWSError, data: CleanRooms.Types.ListTagsForResourceOutput) => void): Request<CleanRooms.Types.ListTagsForResourceOutput, AWSError>;
230
238
  /**
231
239
  * Creates a protected query that is started by AWS Clean Rooms.
232
240
  */
@@ -235,6 +243,22 @@ declare class CleanRooms extends Service {
235
243
  * Creates a protected query that is started by AWS Clean Rooms.
236
244
  */
237
245
  startProtectedQuery(callback?: (err: AWSError, data: CleanRooms.Types.StartProtectedQueryOutput) => void): Request<CleanRooms.Types.StartProtectedQueryOutput, AWSError>;
246
+ /**
247
+ * Tags a resource.
248
+ */
249
+ tagResource(params: CleanRooms.Types.TagResourceInput, callback?: (err: AWSError, data: CleanRooms.Types.TagResourceOutput) => void): Request<CleanRooms.Types.TagResourceOutput, AWSError>;
250
+ /**
251
+ * Tags a resource.
252
+ */
253
+ tagResource(callback?: (err: AWSError, data: CleanRooms.Types.TagResourceOutput) => void): Request<CleanRooms.Types.TagResourceOutput, AWSError>;
254
+ /**
255
+ * Removes a tag or list of tags from a resource.
256
+ */
257
+ untagResource(params: CleanRooms.Types.UntagResourceInput, callback?: (err: AWSError, data: CleanRooms.Types.UntagResourceOutput) => void): Request<CleanRooms.Types.UntagResourceOutput, AWSError>;
258
+ /**
259
+ * Removes a tag or list of tags from a resource.
260
+ */
261
+ untagResource(callback?: (err: AWSError, data: CleanRooms.Types.UntagResourceOutput) => void): Request<CleanRooms.Types.UntagResourceOutput, AWSError>;
238
262
  /**
239
263
  * Updates collaboration metadata and can only be called by the collaboration owner.
240
264
  */
@@ -437,6 +461,7 @@ declare namespace CleanRooms {
437
461
  errors: BatchGetSchemaErrorList;
438
462
  }
439
463
  export type Boolean = boolean;
464
+ export type CleanroomsArn = string;
440
465
  export interface Collaboration {
441
466
  /**
442
467
  * The unique ID for the collaboration.
@@ -783,6 +808,10 @@ declare namespace CleanRooms {
783
808
  * An indicator as to whether query logging has been enabled or disabled for the collaboration.
784
809
  */
785
810
  queryLogStatus: CollaborationQueryLogStatus;
811
+ /**
812
+ * 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.
813
+ */
814
+ tags?: TagMap;
786
815
  }
787
816
  export interface CreateCollaborationOutput {
788
817
  /**
@@ -831,6 +860,10 @@ declare namespace CleanRooms {
831
860
  * The service will assume this role to access catalog metadata and query the table.
832
861
  */
833
862
  roleArn: RoleArn;
863
+ /**
864
+ * 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.
865
+ */
866
+ tags?: TagMap;
834
867
  }
835
868
  export interface CreateConfiguredTableAssociationOutput {
836
869
  /**
@@ -859,6 +892,10 @@ declare namespace CleanRooms {
859
892
  * The analysis method for the configured tables. The only valid value is currently `DIRECT_QUERY`.
860
893
  */
861
894
  analysisMethod: AnalysisMethod;
895
+ /**
896
+ * 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.
897
+ */
898
+ tags?: TagMap;
862
899
  }
863
900
  export interface CreateConfiguredTableOutput {
864
901
  /**
@@ -875,6 +912,10 @@ declare namespace CleanRooms {
875
912
  * An indicator as to whether query logging has been enabled or disabled for the collaboration.
876
913
  */
877
914
  queryLogStatus: MembershipQueryLogStatus;
915
+ /**
916
+ * 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.
917
+ */
918
+ tags?: TagMap;
878
919
  }
879
920
  export interface CreateMembershipOutput {
880
921
  /**
@@ -1267,6 +1308,18 @@ declare namespace CleanRooms {
1267
1308
  */
1268
1309
  nextToken?: PaginationToken;
1269
1310
  }
1311
+ export interface ListTagsForResourceInput {
1312
+ /**
1313
+ * The Amazon Resource Name (ARN) associated with the resource you want to list tags on.
1314
+ */
1315
+ resourceArn: CleanroomsArn;
1316
+ }
1317
+ export interface ListTagsForResourceOutput {
1318
+ /**
1319
+ * A map of objects specifying each key name and value.
1320
+ */
1321
+ tags: TagMap;
1322
+ }
1270
1323
  export type Long = number;
1271
1324
  export type MaxResults = number;
1272
1325
  export type MemberAbilities = MemberAbility[];
@@ -1570,7 +1623,7 @@ declare namespace CleanRooms {
1570
1623
  */
1571
1624
  columns: ColumnList;
1572
1625
  /**
1573
- * The partition keys for the data set underlying this schema.
1626
+ * The partition keys for the dataset underlying this schema.
1574
1627
  */
1575
1628
  partitionKeys: ColumnList;
1576
1629
  /**
@@ -1689,9 +1742,37 @@ declare namespace CleanRooms {
1689
1742
  */
1690
1743
  glue?: GlueTableReference;
1691
1744
  }
1745
+ export type TagKey = string;
1746
+ export type TagKeys = TagKey[];
1747
+ export type TagMap = {[key: string]: TagValue};
1748
+ export interface TagResourceInput {
1749
+ /**
1750
+ * The Amazon Resource Name (ARN) associated with the resource you want to tag.
1751
+ */
1752
+ resourceArn: CleanroomsArn;
1753
+ /**
1754
+ * A map of objects specifying each key name and value.
1755
+ */
1756
+ tags: TagMap;
1757
+ }
1758
+ export interface TagResourceOutput {
1759
+ }
1760
+ export type TagValue = string;
1692
1761
  export type TargetProtectedQueryStatus = "CANCELLED"|string;
1693
1762
  export type Timestamp = Date;
1694
1763
  export type UUID = string;
1764
+ export interface UntagResourceInput {
1765
+ /**
1766
+ * The Amazon Resource Name (ARN) associated with the resource you want to remove the tag from.
1767
+ */
1768
+ resourceArn: CleanroomsArn;
1769
+ /**
1770
+ * A list of key names of tags to be removed.
1771
+ */
1772
+ tagKeys: TagKeys;
1773
+ }
1774
+ export interface UntagResourceOutput {
1775
+ }
1695
1776
  export interface UpdateCollaborationInput {
1696
1777
  /**
1697
1778
  * The identifier for the collaboration.