@aws-sdk/client-kinesis-analytics-v2 3.300.0 → 3.303.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.
Files changed (36) hide show
  1. package/dist-cjs/models/models_0.js +75 -88
  2. package/dist-es/models/models_0.js +75 -88
  3. package/dist-types/commands/AddApplicationCloudWatchLoggingOptionCommand.d.ts +2 -2
  4. package/dist-types/commands/AddApplicationInputCommand.d.ts +14 -14
  5. package/dist-types/commands/AddApplicationInputProcessingConfigurationCommand.d.ts +3 -3
  6. package/dist-types/commands/AddApplicationOutputCommand.d.ts +6 -6
  7. package/dist-types/commands/AddApplicationReferenceDataSourceCommand.d.ts +10 -10
  8. package/dist-types/commands/AddApplicationVpcConfigurationCommand.d.ts +4 -4
  9. package/dist-types/commands/CreateApplicationCommand.d.ts +55 -55
  10. package/dist-types/commands/CreateApplicationPresignedUrlCommand.d.ts +1 -1
  11. package/dist-types/commands/CreateApplicationSnapshotCommand.d.ts +1 -1
  12. package/dist-types/commands/DeleteApplicationCloudWatchLoggingOptionCommand.d.ts +1 -1
  13. package/dist-types/commands/DeleteApplicationCommand.d.ts +1 -1
  14. package/dist-types/commands/DeleteApplicationInputProcessingConfigurationCommand.d.ts +1 -1
  15. package/dist-types/commands/DeleteApplicationOutputCommand.d.ts +1 -1
  16. package/dist-types/commands/DeleteApplicationReferenceDataSourceCommand.d.ts +1 -1
  17. package/dist-types/commands/DeleteApplicationSnapshotCommand.d.ts +1 -1
  18. package/dist-types/commands/DeleteApplicationVpcConfigurationCommand.d.ts +1 -1
  19. package/dist-types/commands/DescribeApplicationCommand.d.ts +1 -1
  20. package/dist-types/commands/DescribeApplicationSnapshotCommand.d.ts +1 -1
  21. package/dist-types/commands/DescribeApplicationVersionCommand.d.ts +1 -1
  22. package/dist-types/commands/DiscoverInputSchemaCommand.d.ts +5 -5
  23. package/dist-types/commands/ListApplicationSnapshotsCommand.d.ts +1 -1
  24. package/dist-types/commands/ListApplicationVersionsCommand.d.ts +1 -1
  25. package/dist-types/commands/ListApplicationsCommand.d.ts +1 -1
  26. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
  27. package/dist-types/commands/RollbackApplicationCommand.d.ts +1 -1
  28. package/dist-types/commands/StartApplicationCommand.d.ts +7 -7
  29. package/dist-types/commands/StopApplicationCommand.d.ts +1 -1
  30. package/dist-types/commands/TagResourceCommand.d.ts +3 -3
  31. package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
  32. package/dist-types/commands/UpdateApplicationCommand.d.ts +58 -58
  33. package/dist-types/commands/UpdateApplicationMaintenanceConfigurationCommand.d.ts +2 -2
  34. package/dist-types/models/models_0.d.ts +140 -75
  35. package/dist-types/ts3.4/models/models_0.d.ts +97 -75
  36. package/package.json +34 -34
@@ -98,10 +98,12 @@ export interface MappingParameters {
98
98
  JSONMappingParameters?: JSONMappingParameters;
99
99
  CSVMappingParameters?: CSVMappingParameters;
100
100
  }
101
- export declare enum RecordFormatType {
102
- CSV = "CSV",
103
- JSON = "JSON",
104
- }
101
+ export declare const RecordFormatType: {
102
+ readonly CSV: "CSV";
103
+ readonly JSON: "JSON";
104
+ };
105
+ export type RecordFormatType =
106
+ (typeof RecordFormatType)[keyof typeof RecordFormatType];
105
107
  export interface RecordFormat {
106
108
  RecordFormatType: RecordFormatType | string | undefined;
107
109
  MappingParameters?: MappingParameters;
@@ -137,11 +139,13 @@ export interface InputLambdaProcessorDescription {
137
139
  export interface InputProcessingConfigurationDescription {
138
140
  InputLambdaProcessorDescription?: InputLambdaProcessorDescription;
139
141
  }
140
- export declare enum InputStartingPosition {
141
- LAST_STOPPED_POINT = "LAST_STOPPED_POINT",
142
- NOW = "NOW",
143
- TRIM_HORIZON = "TRIM_HORIZON",
144
- }
142
+ export declare const InputStartingPosition: {
143
+ readonly LAST_STOPPED_POINT: "LAST_STOPPED_POINT";
144
+ readonly NOW: "NOW";
145
+ readonly TRIM_HORIZON: "TRIM_HORIZON";
146
+ };
147
+ export type InputStartingPosition =
148
+ (typeof InputStartingPosition)[keyof typeof InputStartingPosition];
145
149
  export interface InputStartingPositionConfiguration {
146
150
  InputStartingPosition?: InputStartingPosition | string;
147
151
  }
@@ -301,10 +305,12 @@ export interface CodeContent {
301
305
  ZipFileContent?: Uint8Array;
302
306
  S3ContentLocation?: S3ContentLocation;
303
307
  }
304
- export declare enum CodeContentType {
305
- PLAINTEXT = "PLAINTEXT",
306
- ZIPFILE = "ZIPFILE",
307
- }
308
+ export declare const CodeContentType: {
309
+ readonly PLAINTEXT: "PLAINTEXT";
310
+ readonly ZIPFILE: "ZIPFILE";
311
+ };
312
+ export type CodeContentType =
313
+ (typeof CodeContentType)[keyof typeof CodeContentType];
308
314
  export interface ApplicationCodeConfiguration {
309
315
  CodeContent?: CodeContent;
310
316
  CodeContentType: CodeContentType | string | undefined;
@@ -348,28 +354,32 @@ export interface PropertyGroup {
348
354
  export interface EnvironmentProperties {
349
355
  PropertyGroups: PropertyGroup[] | undefined;
350
356
  }
351
- export declare enum ConfigurationType {
352
- CUSTOM = "CUSTOM",
353
- DEFAULT = "DEFAULT",
354
- }
357
+ export declare const ConfigurationType: {
358
+ readonly CUSTOM: "CUSTOM";
359
+ readonly DEFAULT: "DEFAULT";
360
+ };
361
+ export type ConfigurationType =
362
+ (typeof ConfigurationType)[keyof typeof ConfigurationType];
355
363
  export interface CheckpointConfiguration {
356
364
  ConfigurationType: ConfigurationType | string | undefined;
357
365
  CheckpointingEnabled?: boolean;
358
366
  CheckpointInterval?: number;
359
367
  MinPauseBetweenCheckpoints?: number;
360
368
  }
361
- export declare enum LogLevel {
362
- DEBUG = "DEBUG",
363
- ERROR = "ERROR",
364
- INFO = "INFO",
365
- WARN = "WARN",
366
- }
367
- export declare enum MetricsLevel {
368
- APPLICATION = "APPLICATION",
369
- OPERATOR = "OPERATOR",
370
- PARALLELISM = "PARALLELISM",
371
- TASK = "TASK",
372
- }
369
+ export declare const LogLevel: {
370
+ readonly DEBUG: "DEBUG";
371
+ readonly ERROR: "ERROR";
372
+ readonly INFO: "INFO";
373
+ readonly WARN: "WARN";
374
+ };
375
+ export type LogLevel = (typeof LogLevel)[keyof typeof LogLevel];
376
+ export declare const MetricsLevel: {
377
+ readonly APPLICATION: "APPLICATION";
378
+ readonly OPERATOR: "OPERATOR";
379
+ readonly PARALLELISM: "PARALLELISM";
380
+ readonly TASK: "TASK";
381
+ };
382
+ export type MetricsLevel = (typeof MetricsLevel)[keyof typeof MetricsLevel];
373
383
  export interface MonitoringConfiguration {
374
384
  ConfigurationType: ConfigurationType | string | undefined;
375
385
  MetricsLevel?: MetricsLevel | string;
@@ -397,10 +407,11 @@ export interface GlueDataCatalogConfiguration {
397
407
  export interface CatalogConfiguration {
398
408
  GlueDataCatalogConfiguration: GlueDataCatalogConfiguration | undefined;
399
409
  }
400
- export declare enum ArtifactType {
401
- DEPENDENCY_JAR = "DEPENDENCY_JAR",
402
- UDF = "UDF",
403
- }
410
+ export declare const ArtifactType: {
411
+ readonly DEPENDENCY_JAR: "DEPENDENCY_JAR";
412
+ readonly UDF: "UDF";
413
+ };
414
+ export type ArtifactType = (typeof ArtifactType)[keyof typeof ArtifactType];
404
415
  export interface MavenReference {
405
416
  GroupId: string | undefined;
406
417
  ArtifactId: string | undefined;
@@ -466,11 +477,13 @@ export interface FlinkApplicationConfigurationDescription {
466
477
  ParallelismConfigurationDescription?: ParallelismConfigurationDescription;
467
478
  JobPlanDescription?: string;
468
479
  }
469
- export declare enum ApplicationRestoreType {
470
- RESTORE_FROM_CUSTOM_SNAPSHOT = "RESTORE_FROM_CUSTOM_SNAPSHOT",
471
- RESTORE_FROM_LATEST_SNAPSHOT = "RESTORE_FROM_LATEST_SNAPSHOT",
472
- SKIP_RESTORE_FROM_SNAPSHOT = "SKIP_RESTORE_FROM_SNAPSHOT",
473
- }
480
+ export declare const ApplicationRestoreType: {
481
+ readonly RESTORE_FROM_CUSTOM_SNAPSHOT: "RESTORE_FROM_CUSTOM_SNAPSHOT";
482
+ readonly RESTORE_FROM_LATEST_SNAPSHOT: "RESTORE_FROM_LATEST_SNAPSHOT";
483
+ readonly SKIP_RESTORE_FROM_SNAPSHOT: "SKIP_RESTORE_FROM_SNAPSHOT";
484
+ };
485
+ export type ApplicationRestoreType =
486
+ (typeof ApplicationRestoreType)[keyof typeof ApplicationRestoreType];
474
487
  export interface ApplicationRestoreConfiguration {
475
488
  ApplicationRestoreType: ApplicationRestoreType | string | undefined;
476
489
  SnapshotName?: string;
@@ -659,33 +672,39 @@ export interface ApplicationMaintenanceConfigurationDescription {
659
672
  ApplicationMaintenanceWindowStartTime: string | undefined;
660
673
  ApplicationMaintenanceWindowEndTime: string | undefined;
661
674
  }
662
- export declare enum ApplicationMode {
663
- INTERACTIVE = "INTERACTIVE",
664
- STREAMING = "STREAMING",
665
- }
666
- export declare enum ApplicationStatus {
667
- AUTOSCALING = "AUTOSCALING",
668
- DELETING = "DELETING",
669
- FORCE_STOPPING = "FORCE_STOPPING",
670
- MAINTENANCE = "MAINTENANCE",
671
- READY = "READY",
672
- ROLLED_BACK = "ROLLED_BACK",
673
- ROLLING_BACK = "ROLLING_BACK",
674
- RUNNING = "RUNNING",
675
- STARTING = "STARTING",
676
- STOPPING = "STOPPING",
677
- UPDATING = "UPDATING",
678
- }
679
- export declare enum RuntimeEnvironment {
680
- FLINK_1_11 = "FLINK-1_11",
681
- FLINK_1_13 = "FLINK-1_13",
682
- FLINK_1_15 = "FLINK-1_15",
683
- FLINK_1_6 = "FLINK-1_6",
684
- FLINK_1_8 = "FLINK-1_8",
685
- SQL_1_0 = "SQL-1_0",
686
- ZEPPELIN_FLINK_1_0 = "ZEPPELIN-FLINK-1_0",
687
- ZEPPELIN_FLINK_2_0 = "ZEPPELIN-FLINK-2_0",
688
- }
675
+ export declare const ApplicationMode: {
676
+ readonly INTERACTIVE: "INTERACTIVE";
677
+ readonly STREAMING: "STREAMING";
678
+ };
679
+ export type ApplicationMode =
680
+ (typeof ApplicationMode)[keyof typeof ApplicationMode];
681
+ export declare const ApplicationStatus: {
682
+ readonly AUTOSCALING: "AUTOSCALING";
683
+ readonly DELETING: "DELETING";
684
+ readonly FORCE_STOPPING: "FORCE_STOPPING";
685
+ readonly MAINTENANCE: "MAINTENANCE";
686
+ readonly READY: "READY";
687
+ readonly ROLLED_BACK: "ROLLED_BACK";
688
+ readonly ROLLING_BACK: "ROLLING_BACK";
689
+ readonly RUNNING: "RUNNING";
690
+ readonly STARTING: "STARTING";
691
+ readonly STOPPING: "STOPPING";
692
+ readonly UPDATING: "UPDATING";
693
+ };
694
+ export type ApplicationStatus =
695
+ (typeof ApplicationStatus)[keyof typeof ApplicationStatus];
696
+ export declare const RuntimeEnvironment: {
697
+ readonly FLINK_1_11: "FLINK-1_11";
698
+ readonly FLINK_1_13: "FLINK-1_13";
699
+ readonly FLINK_1_15: "FLINK-1_15";
700
+ readonly FLINK_1_6: "FLINK-1_6";
701
+ readonly FLINK_1_8: "FLINK-1_8";
702
+ readonly SQL_1_0: "SQL-1_0";
703
+ readonly ZEPPELIN_FLINK_1_0: "ZEPPELIN-FLINK-1_0";
704
+ readonly ZEPPELIN_FLINK_2_0: "ZEPPELIN-FLINK-2_0";
705
+ };
706
+ export type RuntimeEnvironment =
707
+ (typeof RuntimeEnvironment)[keyof typeof RuntimeEnvironment];
689
708
  export interface ApplicationDetail {
690
709
  ApplicationARN: string | undefined;
691
710
  ApplicationDescription?: string;
@@ -764,10 +783,11 @@ export declare class UnsupportedOperationException extends __BaseException {
764
783
  opts: __ExceptionOptionType<UnsupportedOperationException, __BaseException>
765
784
  );
766
785
  }
767
- export declare enum UrlType {
768
- FLINK_DASHBOARD_URL = "FLINK_DASHBOARD_URL",
769
- ZEPPELIN_UI_URL = "ZEPPELIN_UI_URL",
770
- }
786
+ export declare const UrlType: {
787
+ readonly FLINK_DASHBOARD_URL: "FLINK_DASHBOARD_URL";
788
+ readonly ZEPPELIN_UI_URL: "ZEPPELIN_UI_URL";
789
+ };
790
+ export type UrlType = (typeof UrlType)[keyof typeof UrlType];
771
791
  export interface CreateApplicationPresignedUrlRequest {
772
792
  ApplicationName: string | undefined;
773
793
  UrlType: UrlType | string | undefined;
@@ -851,12 +871,14 @@ export interface DescribeApplicationSnapshotRequest {
851
871
  ApplicationName: string | undefined;
852
872
  SnapshotName: string | undefined;
853
873
  }
854
- export declare enum SnapshotStatus {
855
- CREATING = "CREATING",
856
- DELETING = "DELETING",
857
- FAILED = "FAILED",
858
- READY = "READY",
859
- }
874
+ export declare const SnapshotStatus: {
875
+ readonly CREATING: "CREATING";
876
+ readonly DELETING: "DELETING";
877
+ readonly FAILED: "FAILED";
878
+ readonly READY: "READY";
879
+ };
880
+ export type SnapshotStatus =
881
+ (typeof SnapshotStatus)[keyof typeof SnapshotStatus];
860
882
  export interface SnapshotDetails {
861
883
  SnapshotName: string | undefined;
862
884
  SnapshotStatus: SnapshotStatus | string | undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-kinesis-analytics-v2",
3
3
  "description": "AWS SDK for JavaScript Kinesis Analytics V2 Client for Node.js, Browser and React Native",
4
- "version": "3.300.0",
4
+ "version": "3.303.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,42 +21,42 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.300.0",
25
- "@aws-sdk/config-resolver": "3.300.0",
26
- "@aws-sdk/credential-provider-node": "3.300.0",
27
- "@aws-sdk/fetch-http-handler": "3.296.0",
28
- "@aws-sdk/hash-node": "3.296.0",
29
- "@aws-sdk/invalid-dependency": "3.296.0",
30
- "@aws-sdk/middleware-content-length": "3.296.0",
31
- "@aws-sdk/middleware-endpoint": "3.299.0",
32
- "@aws-sdk/middleware-host-header": "3.296.0",
33
- "@aws-sdk/middleware-logger": "3.296.0",
34
- "@aws-sdk/middleware-recursion-detection": "3.296.0",
35
- "@aws-sdk/middleware-retry": "3.300.0",
36
- "@aws-sdk/middleware-serde": "3.296.0",
37
- "@aws-sdk/middleware-signing": "3.299.0",
38
- "@aws-sdk/middleware-stack": "3.296.0",
39
- "@aws-sdk/middleware-user-agent": "3.299.0",
40
- "@aws-sdk/node-config-provider": "3.300.0",
41
- "@aws-sdk/node-http-handler": "3.296.0",
42
- "@aws-sdk/protocol-http": "3.296.0",
43
- "@aws-sdk/smithy-client": "3.296.0",
44
- "@aws-sdk/types": "3.296.0",
45
- "@aws-sdk/url-parser": "3.296.0",
46
- "@aws-sdk/util-base64": "3.295.0",
47
- "@aws-sdk/util-body-length-browser": "3.295.0",
48
- "@aws-sdk/util-body-length-node": "3.295.0",
49
- "@aws-sdk/util-defaults-mode-browser": "3.296.0",
50
- "@aws-sdk/util-defaults-mode-node": "3.300.0",
51
- "@aws-sdk/util-endpoints": "3.296.0",
52
- "@aws-sdk/util-retry": "3.296.0",
53
- "@aws-sdk/util-user-agent-browser": "3.299.0",
54
- "@aws-sdk/util-user-agent-node": "3.300.0",
55
- "@aws-sdk/util-utf8": "3.295.0",
24
+ "@aws-sdk/client-sts": "3.303.0",
25
+ "@aws-sdk/config-resolver": "3.303.0",
26
+ "@aws-sdk/credential-provider-node": "3.303.0",
27
+ "@aws-sdk/fetch-http-handler": "3.303.0",
28
+ "@aws-sdk/hash-node": "3.303.0",
29
+ "@aws-sdk/invalid-dependency": "3.303.0",
30
+ "@aws-sdk/middleware-content-length": "3.303.0",
31
+ "@aws-sdk/middleware-endpoint": "3.303.0",
32
+ "@aws-sdk/middleware-host-header": "3.303.0",
33
+ "@aws-sdk/middleware-logger": "3.303.0",
34
+ "@aws-sdk/middleware-recursion-detection": "3.303.0",
35
+ "@aws-sdk/middleware-retry": "3.303.0",
36
+ "@aws-sdk/middleware-serde": "3.303.0",
37
+ "@aws-sdk/middleware-signing": "3.303.0",
38
+ "@aws-sdk/middleware-stack": "3.303.0",
39
+ "@aws-sdk/middleware-user-agent": "3.303.0",
40
+ "@aws-sdk/node-config-provider": "3.303.0",
41
+ "@aws-sdk/node-http-handler": "3.303.0",
42
+ "@aws-sdk/protocol-http": "3.303.0",
43
+ "@aws-sdk/smithy-client": "3.303.0",
44
+ "@aws-sdk/types": "3.303.0",
45
+ "@aws-sdk/url-parser": "3.303.0",
46
+ "@aws-sdk/util-base64": "3.303.0",
47
+ "@aws-sdk/util-body-length-browser": "3.303.0",
48
+ "@aws-sdk/util-body-length-node": "3.303.0",
49
+ "@aws-sdk/util-defaults-mode-browser": "3.303.0",
50
+ "@aws-sdk/util-defaults-mode-node": "3.303.0",
51
+ "@aws-sdk/util-endpoints": "3.303.0",
52
+ "@aws-sdk/util-retry": "3.303.0",
53
+ "@aws-sdk/util-user-agent-browser": "3.303.0",
54
+ "@aws-sdk/util-user-agent-node": "3.303.0",
55
+ "@aws-sdk/util-utf8": "3.303.0",
56
56
  "tslib": "^2.5.0"
57
57
  },
58
58
  "devDependencies": {
59
- "@aws-sdk/service-client-documentation-generator": "3.295.0",
59
+ "@aws-sdk/service-client-documentation-generator": "3.303.0",
60
60
  "@tsconfig/node14": "1.0.3",
61
61
  "@types/node": "^14.14.31",
62
62
  "concurrently": "7.0.0",