cdk-lambda-subminute 2.0.333 → 2.0.334

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 (28) hide show
  1. package/.jsii +16 -3
  2. package/lib/cdk-lambda-subminute.js +3 -3
  3. package/node_modules/aws-sdk/README.md +1 -1
  4. package/node_modules/aws-sdk/apis/glue-2017-03-31.min.json +64 -18
  5. package/node_modules/aws-sdk/apis/lakeformation-2017-03-31.min.json +24 -3
  6. package/node_modules/aws-sdk/apis/mediaconnect-2018-11-14.min.json +151 -20
  7. package/node_modules/aws-sdk/apis/metadata.json +3 -0
  8. package/node_modules/aws-sdk/apis/networkmonitor-2023-08-01.examples.json +5 -0
  9. package/node_modules/aws-sdk/apis/networkmonitor-2023-08-01.min.json +617 -0
  10. package/node_modules/aws-sdk/apis/networkmonitor-2023-08-01.paginators.json +10 -0
  11. package/node_modules/aws-sdk/apis/networkmonitor-2023-08-01.waiters2.json +5 -0
  12. package/node_modules/aws-sdk/apis/s3-2006-03-01.examples.json +121 -121
  13. package/node_modules/aws-sdk/clients/all.d.ts +1 -0
  14. package/node_modules/aws-sdk/clients/all.js +2 -1
  15. package/node_modules/aws-sdk/clients/glue.d.ts +84 -2
  16. package/node_modules/aws-sdk/clients/lakeformation.d.ts +42 -1
  17. package/node_modules/aws-sdk/clients/mediaconnect.d.ts +101 -0
  18. package/node_modules/aws-sdk/clients/networkmonitor.d.ts +696 -0
  19. package/node_modules/aws-sdk/clients/networkmonitor.js +19 -0
  20. package/node_modules/aws-sdk/clients/omics.d.ts +3 -3
  21. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +2 -2
  22. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +51 -7
  23. package/node_modules/aws-sdk/dist/aws-sdk.js +6 -3
  24. package/node_modules/aws-sdk/dist/aws-sdk.min.js +38 -38
  25. package/node_modules/aws-sdk/lib/config_service_placeholders.d.ts +2 -0
  26. package/node_modules/aws-sdk/lib/core.js +1 -1
  27. package/node_modules/aws-sdk/package.json +1 -1
  28. package/package.json +2 -2
@@ -204,11 +204,11 @@ declare class Glue extends Service {
204
204
  */
205
205
  createClassifier(callback?: (err: AWSError, data: Glue.Types.CreateClassifierResponse) => void): Request<Glue.Types.CreateClassifierResponse, AWSError>;
206
206
  /**
207
- * Creates a connection definition in the Data Catalog.
207
+ * Creates a connection definition in the Data Catalog. Connections used for creating federated resources require the IAM glue:PassConnection permission.
208
208
  */
209
209
  createConnection(params: Glue.Types.CreateConnectionRequest, callback?: (err: AWSError, data: Glue.Types.CreateConnectionResponse) => void): Request<Glue.Types.CreateConnectionResponse, AWSError>;
210
210
  /**
211
- * Creates a connection definition in the Data Catalog.
211
+ * Creates a connection definition in the Data Catalog. Connections used for creating federated resources require the IAM glue:PassConnection permission.
212
212
  */
213
213
  createConnection(callback?: (err: AWSError, data: Glue.Types.CreateConnectionResponse) => void): Request<Glue.Types.CreateConnectionResponse, AWSError>;
214
214
  /**
@@ -1745,6 +1745,7 @@ declare namespace Glue {
1745
1745
  CrawlerName?: NameString;
1746
1746
  }
1747
1747
  export type ActionList = Action[];
1748
+ export type AdditionalContextMap = {[key: string]: ContextValue};
1748
1749
  export type AdditionalOptionKeys = "performanceTuning.caching"|"observations.scope"|string;
1749
1750
  export type AdditionalOptions = {[key: string]: EnclosedInStringProperty};
1750
1751
  export type AdditionalPlanOptionsMap = {[key: string]: GenericString};
@@ -3604,6 +3605,8 @@ declare namespace Glue {
3604
3605
  Inputs?: OneInput;
3605
3606
  }
3606
3607
  export type ConnectorOptions = {[key: string]: GenericString};
3608
+ export type ContextKey = string;
3609
+ export type ContextValue = string;
3607
3610
  export type ContextWords = NameString[];
3608
3611
  export interface Crawl {
3609
3612
  /**
@@ -8160,6 +8163,10 @@ declare namespace Glue {
8160
8163
  NextToken?: GenericString;
8161
8164
  }
8162
8165
  export interface GetUnfilteredPartitionMetadataRequest {
8166
+ /**
8167
+ * Specified only if the base tables belong to a different Amazon Web Services Region.
8168
+ */
8169
+ Region?: ValueString;
8163
8170
  /**
8164
8171
  * The catalog ID where the partition resides.
8165
8172
  */
@@ -8184,6 +8191,10 @@ declare namespace Glue {
8184
8191
  * (Required) A list of supported permission types.
8185
8192
  */
8186
8193
  SupportedPermissionTypes: PermissionTypeList;
8194
+ /**
8195
+ * A structure used as a protocol between query engines and Lake Formation or Glue. Contains both a Lake Formation generated authorization identifier and information from the request's authorization context.
8196
+ */
8197
+ QuerySessionContext?: QuerySessionContext;
8187
8198
  }
8188
8199
  export interface GetUnfilteredPartitionMetadataResponse {
8189
8200
  /**
@@ -8200,6 +8211,10 @@ declare namespace Glue {
8200
8211
  IsRegisteredWithLakeFormation?: Boolean;
8201
8212
  }
8202
8213
  export interface GetUnfilteredPartitionsMetadataRequest {
8214
+ /**
8215
+ * Specified only if the base tables belong to a different Amazon Web Services Region.
8216
+ */
8217
+ Region?: ValueString;
8203
8218
  /**
8204
8219
  * The ID of the Data Catalog where the partitions in question reside. If none is provided, the AWS account ID is used by default.
8205
8220
  */
@@ -8236,6 +8251,10 @@ declare namespace Glue {
8236
8251
  * The maximum number of partitions to return in a single response.
8237
8252
  */
8238
8253
  MaxResults?: PageSize;
8254
+ /**
8255
+ * A structure used as a protocol between query engines and Lake Formation or Glue. Contains both a Lake Formation generated authorization identifier and information from the request's authorization context.
8256
+ */
8257
+ QuerySessionContext?: QuerySessionContext;
8239
8258
  }
8240
8259
  export interface GetUnfilteredPartitionsMetadataResponse {
8241
8260
  /**
@@ -8248,6 +8267,10 @@ declare namespace Glue {
8248
8267
  NextToken?: Token;
8249
8268
  }
8250
8269
  export interface GetUnfilteredTableMetadataRequest {
8270
+ /**
8271
+ * Specified only if the base tables belong to a different Amazon Web Services Region.
8272
+ */
8273
+ Region?: ValueString;
8251
8274
  /**
8252
8275
  * The catalog ID where the table resides.
8253
8276
  */
@@ -8268,6 +8291,18 @@ declare namespace Glue {
8268
8291
  * (Required) A list of supported permission types.
8269
8292
  */
8270
8293
  SupportedPermissionTypes: PermissionTypeList;
8294
+ /**
8295
+ * A structure specifying the dialect and dialect version used by the query engine.
8296
+ */
8297
+ SupportedDialect?: SupportedDialect;
8298
+ /**
8299
+ * The Lake Formation data permissions of the caller on the table. Used to authorize the call when no view context is found.
8300
+ */
8301
+ Permissions?: PermissionList;
8302
+ /**
8303
+ * A structure used as a protocol between query engines and Lake Formation or Glue. Contains both a Lake Formation generated authorization identifier and information from the request's authorization context.
8304
+ */
8305
+ QuerySessionContext?: QuerySessionContext;
8271
8306
  }
8272
8307
  export interface GetUnfilteredTableMetadataResponse {
8273
8308
  /**
@@ -8286,6 +8321,18 @@ declare namespace Glue {
8286
8321
  * A list of column row filters.
8287
8322
  */
8288
8323
  CellFilters?: ColumnRowFilterList;
8324
+ /**
8325
+ * A cryptographically generated query identifier generated by Glue or Lake Formation.
8326
+ */
8327
+ QueryAuthorizationId?: HashString;
8328
+ /**
8329
+ * The resource ARN of the parent resource extracted from the request.
8330
+ */
8331
+ ResourceArn?: ArnString;
8332
+ /**
8333
+ * The Lake Formation data permissions of the caller on the table. Used to authorize the call when no view context is found.
8334
+ */
8335
+ Permissions?: PermissionList;
8289
8336
  }
8290
8337
  export interface GetUserDefinedFunctionRequest {
8291
8338
  /**
@@ -10344,6 +10391,7 @@ declare namespace Glue {
10344
10391
  export type NullableBoolean = boolean;
10345
10392
  export type NullableDouble = number;
10346
10393
  export type NullableInteger = number;
10394
+ export type NullableString = string;
10347
10395
  export type OneInput = NodeId[];
10348
10396
  export interface OpenTableFormatInput {
10349
10397
  /**
@@ -10837,6 +10885,28 @@ declare namespace Glue {
10837
10885
  */
10838
10886
  NextToken?: SchemaRegistryTokenString;
10839
10887
  }
10888
+ export interface QuerySessionContext {
10889
+ /**
10890
+ * A unique identifier generated by the query engine for the query.
10891
+ */
10892
+ QueryId?: HashString;
10893
+ /**
10894
+ * A timestamp provided by the query engine for when the query started.
10895
+ */
10896
+ QueryStartTime?: Timestamp;
10897
+ /**
10898
+ * An identifier string for the consumer cluster.
10899
+ */
10900
+ ClusterId?: NullableString;
10901
+ /**
10902
+ * A cryptographically generated query identifier generated by Glue or Lake Formation.
10903
+ */
10904
+ QueryAuthorizationId?: HashString;
10905
+ /**
10906
+ * An opaque string-string map passed by the query engine.
10907
+ */
10908
+ AdditionalContext?: AdditionalContextMap;
10909
+ }
10840
10910
  export type QuoteChar = "quote"|"quillemet"|"single_quote"|"disabled"|string;
10841
10911
  export interface Recipe {
10842
10912
  /**
@@ -12903,6 +12973,16 @@ declare namespace Glue {
12903
12973
  NumberOfDistinctValues: NonNegativeLong;
12904
12974
  }
12905
12975
  export type StringList = GenericString[];
12976
+ export interface SupportedDialect {
12977
+ /**
12978
+ * The dialect of the query engine.
12979
+ */
12980
+ Dialect?: ViewDialect;
12981
+ /**
12982
+ * The version of the dialect of the query engine. For example, 3.0.0.
12983
+ */
12984
+ DialectVersion?: ViewDialectVersionString;
12985
+ }
12906
12986
  export interface Table {
12907
12987
  /**
12908
12988
  * The table name. For Hive compatibility, this must be entirely lowercase.
@@ -14269,6 +14349,8 @@ declare namespace Glue {
14269
14349
  export type VersionLongNumber = number;
14270
14350
  export type VersionString = string;
14271
14351
  export type VersionsString = string;
14352
+ export type ViewDialect = "REDSHIFT"|"ATHENA"|"SPARK"|string;
14353
+ export type ViewDialectVersionString = string;
14272
14354
  export type ViewTextString = string;
14273
14355
  export type WorkerType = "Standard"|"G.1X"|"G.2X"|"G.025X"|"G.4X"|"G.8X"|"Z.2X"|string;
14274
14356
  export interface Workflow {
@@ -485,6 +485,7 @@ declare namespace LakeFormation {
485
485
  */
486
486
  PartitionValues?: PartitionValuesList;
487
487
  }
488
+ export type AdditionalContextMap = {[key: string]: ContextValue};
488
489
  export interface AllRowsWildcard {
489
490
  }
490
491
  export type ApplicationArn = string;
@@ -642,6 +643,8 @@ declare namespace LakeFormation {
642
643
  TransactionStatus?: TransactionStatus;
643
644
  }
644
645
  export type ComparisonOperator = "EQ"|"NE"|"LE"|"LT"|"GE"|"GT"|"CONTAINS"|"NOT_CONTAINS"|"BEGINS_WITH"|"IN"|"BETWEEN"|string;
646
+ export type ContextKey = string;
647
+ export type ContextValue = string;
645
648
  export interface CreateDataCellsFilterRequest {
646
649
  /**
647
650
  * A DataCellsFilter structure containing information about the data cells filter.
@@ -676,7 +679,7 @@ declare namespace LakeFormation {
676
679
  */
677
680
  InstanceArn?: IdentityCenterInstanceArn;
678
681
  /**
679
- * A list of the account IDs of Amazon Web Services accounts of third-party applications that are allowed to to access data managed by Lake Formation.
682
+ * A list of the account IDs of Amazon Web Services accounts of third-party applications that are allowed to access data managed by Lake Formation.
680
683
  */
681
684
  ExternalFiltering?: ExternalFilteringConfiguration;
682
685
  }
@@ -1292,6 +1295,14 @@ declare namespace LakeFormation {
1292
1295
  * A list of supported permission types for the table. Valid values are COLUMN_PERMISSION and CELL_FILTER_PERMISSION.
1293
1296
  */
1294
1297
  SupportedPermissionTypes?: PermissionTypeList;
1298
+ /**
1299
+ * The Amazon S3 path for the table.
1300
+ */
1301
+ S3Path?: PathString;
1302
+ /**
1303
+ * A structure used as a protocol between query engines and Lake Formation or Glue. Contains both a Lake Formation generated authorization identifier and information from the request's authorization context.
1304
+ */
1305
+ QuerySessionContext?: QuerySessionContext;
1295
1306
  }
1296
1307
  export interface GetTemporaryGlueTableCredentialsResponse {
1297
1308
  /**
@@ -1310,6 +1321,10 @@ declare namespace LakeFormation {
1310
1321
  * The date and time when the temporary credentials expire.
1311
1322
  */
1312
1323
  Expiration?: ExpirationTimestamp;
1324
+ /**
1325
+ * The Amazon S3 path for the temporary credentials.
1326
+ */
1327
+ VendedS3Path?: PathStringList;
1313
1328
  }
1314
1329
  export interface GetWorkUnitResultsRequest {
1315
1330
  /**
@@ -1386,6 +1401,7 @@ declare namespace LakeFormation {
1386
1401
  }
1387
1402
  export interface GrantPermissionsResponse {
1388
1403
  }
1404
+ export type HashString = string;
1389
1405
  export type IAMRoleArn = string;
1390
1406
  export type IAMSAMLProviderArn = string;
1391
1407
  export type Identifier = string;
@@ -1680,6 +1696,7 @@ declare namespace LakeFormation {
1680
1696
  export type MessageString = string;
1681
1697
  export type NameString = string;
1682
1698
  export type NullableBoolean = boolean;
1699
+ export type NullableString = string;
1683
1700
  export type NumberOfBytes = number;
1684
1701
  export type NumberOfItems = number;
1685
1702
  export type NumberOfMilliseconds = number;
@@ -1707,6 +1724,8 @@ declare namespace LakeFormation {
1707
1724
  export type PartitionValueString = string;
1708
1725
  export type PartitionValuesList = PartitionValueString[];
1709
1726
  export type PartitionedTableObjectsList = PartitionObjects[];
1727
+ export type PathString = string;
1728
+ export type PathStringList = PathString[];
1710
1729
  export type Permission = "ALL"|"SELECT"|"ALTER"|"DROP"|"DELETE"|"INSERT"|"DESCRIBE"|"CREATE_DATABASE"|"CREATE_TABLE"|"DATA_LOCATION_ACCESS"|"CREATE_LF_TAG"|"ASSOCIATE"|"GRANT_WITH_LF_TAG_EXPRESSION"|string;
1711
1730
  export type PermissionList = Permission[];
1712
1731
  export type PermissionType = "COLUMN_PERMISSION"|"CELL_FILTER_PERMISSION"|"NESTED_PERMISSION"|"NESTED_CELL_PERMISSION"|string;
@@ -1809,6 +1828,28 @@ declare namespace LakeFormation {
1809
1828
  TransactionId?: TransactionIdString;
1810
1829
  }
1811
1830
  export type QueryPlanningContextDatabaseNameString = string;
1831
+ export interface QuerySessionContext {
1832
+ /**
1833
+ * A unique identifier generated by the query engine for the query.
1834
+ */
1835
+ QueryId?: HashString;
1836
+ /**
1837
+ * A timestamp provided by the query engine for when the query started.
1838
+ */
1839
+ QueryStartTime?: Timestamp;
1840
+ /**
1841
+ * An identifier string for the consumer cluster.
1842
+ */
1843
+ ClusterId?: NullableString;
1844
+ /**
1845
+ * A cryptographically generated query identifier generated by Glue or Lake Formation.
1846
+ */
1847
+ QueryAuthorizationId?: HashString;
1848
+ /**
1849
+ * An opaque string-string map passed by the query engine.
1850
+ */
1851
+ AdditionalContext?: AdditionalContextMap;
1852
+ }
1812
1853
  export type QueryStateString = "PENDING"|"WORKUNITS_AVAILABLE"|"ERROR"|"FINISHED"|"EXPIRED"|string;
1813
1854
  export type RAMResourceShareArn = string;
1814
1855
  export interface RegisterResourceRequest {
@@ -132,6 +132,14 @@ declare class MediaConnect extends Service {
132
132
  * Displays the details of a flow. The response includes the flow ARN, name, and Availability Zone, as well as details about the source, outputs, and entitlements.
133
133
  */
134
134
  describeFlow(callback?: (err: AWSError, data: MediaConnect.Types.DescribeFlowResponse) => void): Request<MediaConnect.Types.DescribeFlowResponse, AWSError>;
135
+ /**
136
+ * Displays details of the flow's source stream. The response contains information about the contents of the stream and its programs.
137
+ */
138
+ describeFlowSourceMetadata(params: MediaConnect.Types.DescribeFlowSourceMetadataRequest, callback?: (err: AWSError, data: MediaConnect.Types.DescribeFlowSourceMetadataResponse) => void): Request<MediaConnect.Types.DescribeFlowSourceMetadataResponse, AWSError>;
139
+ /**
140
+ * Displays details of the flow's source stream. The response contains information about the contents of the stream and its programs.
141
+ */
142
+ describeFlowSourceMetadata(callback?: (err: AWSError, data: MediaConnect.Types.DescribeFlowSourceMetadataResponse) => void): Request<MediaConnect.Types.DescribeFlowSourceMetadataResponse, AWSError>;
135
143
  /**
136
144
  * Displays the details of a gateway. The response includes the gateway ARN, name, and CIDR blocks, as well as details about the networks.
137
145
  */
@@ -1027,6 +1035,27 @@ declare namespace MediaConnect {
1027
1035
  Flow?: Flow;
1028
1036
  Messages?: Messages;
1029
1037
  }
1038
+ export interface DescribeFlowSourceMetadataRequest {
1039
+ /**
1040
+ * The Amazon Resource Name (ARN) of the flow.
1041
+ */
1042
+ FlowArn: __string;
1043
+ }
1044
+ export interface DescribeFlowSourceMetadataResponse {
1045
+ /**
1046
+ * The ARN of the flow that DescribeFlowSourceMetadata was performed on.
1047
+ */
1048
+ FlowArn?: __string;
1049
+ /**
1050
+ * Provides a status code and message regarding issues found with the flow source metadata.
1051
+ */
1052
+ Messages?: __listOfMessageDetail;
1053
+ /**
1054
+ * The timestamp of the most recent change in metadata for this flow’s source.
1055
+ */
1056
+ Timestamp?: __timestampIso8601;
1057
+ TransportMediaInfo?: TransportMediaInfo;
1058
+ }
1030
1059
  export interface DescribeGatewayInstanceRequest {
1031
1060
  /**
1032
1061
  * The Amazon Resource Name (ARN) of the gateway instance that you want to describe.
@@ -1320,6 +1349,16 @@ declare namespace MediaConnect {
1320
1349
  */
1321
1350
  Tcs?: Tcs;
1322
1351
  }
1352
+ export interface FrameResolution {
1353
+ /**
1354
+ * The number of pixels in the height of the video frame.
1355
+ */
1356
+ FrameHeight: __integer;
1357
+ /**
1358
+ * The number of pixels in the width of the video frame.
1359
+ */
1360
+ FrameWidth: __integer;
1361
+ }
1323
1362
  export interface Gateway {
1324
1363
  /**
1325
1364
  * The range of IP addresses that contribute content or initiate output requests for flows communicating with this gateway. These IP addresses should be in the form of a Classless Inter-Domain Routing (CIDR) block; for example, 10.0.0.0/16.
@@ -2473,6 +2512,65 @@ declare namespace MediaConnect {
2473
2512
  */
2474
2513
  StreamId?: __string;
2475
2514
  }
2515
+ export interface TransportMediaInfo {
2516
+ /**
2517
+ * The list of transport stream programs in the current flow's source.
2518
+ */
2519
+ Programs: __listOfTransportStreamProgram;
2520
+ }
2521
+ export interface TransportStream {
2522
+ /**
2523
+ * The number of channels in the audio stream.
2524
+ */
2525
+ Channels?: __integer;
2526
+ /**
2527
+ * The codec used by the stream.
2528
+ */
2529
+ Codec?: __string;
2530
+ /**
2531
+ * The frame rate used by the video stream.
2532
+ */
2533
+ FrameRate?: __string;
2534
+ FrameResolution?: FrameResolution;
2535
+ /**
2536
+ * The Packet ID (PID) as it is reported in the Program Map Table.
2537
+ */
2538
+ Pid: __integer;
2539
+ /**
2540
+ * The sample rate used by the audio stream.
2541
+ */
2542
+ SampleRate?: __integer;
2543
+ /**
2544
+ * The sample bit size used by the audio stream.
2545
+ */
2546
+ SampleSize?: __integer;
2547
+ /**
2548
+ * The Stream Type as it is reported in the Program Map Table.
2549
+ */
2550
+ StreamType: __string;
2551
+ }
2552
+ export interface TransportStreamProgram {
2553
+ /**
2554
+ * The Program Clock Reference (PCR) Packet ID (PID) as it is reported in the Program Association Table.
2555
+ */
2556
+ PcrPid: __integer;
2557
+ /**
2558
+ * The program name as it is reported in the Program Association Table.
2559
+ */
2560
+ ProgramName?: __string;
2561
+ /**
2562
+ * The program number as it is reported in the Program Association Table.
2563
+ */
2564
+ ProgramNumber: __integer;
2565
+ /**
2566
+ * The program Packet ID (PID) as it is reported in the Program Association Table.
2567
+ */
2568
+ ProgramPid: __integer;
2569
+ /**
2570
+ * The list of elementary transport streams in the program. The list includes video, audio, and data streams.
2571
+ */
2572
+ Streams: __listOfTransportStream;
2573
+ }
2476
2574
  export interface UntagResourceRequest {
2477
2575
  /**
2478
2576
  * The Amazon Resource Name (ARN) that identifies the AWS Elemental MediaConnect resource from which to delete tags.
@@ -3060,12 +3158,15 @@ declare namespace MediaConnect {
3060
3158
  export type __listOfReservation = Reservation[];
3061
3159
  export type __listOfSetSourceRequest = SetSourceRequest[];
3062
3160
  export type __listOfSource = Source[];
3161
+ export type __listOfTransportStream = TransportStream[];
3162
+ export type __listOfTransportStreamProgram = TransportStreamProgram[];
3063
3163
  export type __listOfVpcInterface = VpcInterface[];
3064
3164
  export type __listOfVpcInterfaceRequest = VpcInterfaceRequest[];
3065
3165
  export type __listOf__integer = __integer[];
3066
3166
  export type __listOf__string = __string[];
3067
3167
  export type __mapOf__string = {[key: string]: __string};
3068
3168
  export type __string = string;
3169
+ export type __timestampIso8601 = Date;
3069
3170
  /**
3070
3171
  * A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
3071
3172
  */