@aws-sdk/client-kinesis-analytics 3.296.0 → 3.298.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 (68) hide show
  1. package/dist-cjs/commands/AddApplicationCloudWatchLoggingOptionCommand.js +2 -3
  2. package/dist-cjs/commands/AddApplicationInputCommand.js +2 -3
  3. package/dist-cjs/commands/AddApplicationInputProcessingConfigurationCommand.js +2 -3
  4. package/dist-cjs/commands/AddApplicationOutputCommand.js +2 -3
  5. package/dist-cjs/commands/AddApplicationReferenceDataSourceCommand.js +2 -3
  6. package/dist-cjs/commands/CreateApplicationCommand.js +2 -3
  7. package/dist-cjs/commands/DeleteApplicationCloudWatchLoggingOptionCommand.js +2 -3
  8. package/dist-cjs/commands/DeleteApplicationCommand.js +2 -3
  9. package/dist-cjs/commands/DeleteApplicationInputProcessingConfigurationCommand.js +2 -3
  10. package/dist-cjs/commands/DeleteApplicationOutputCommand.js +2 -3
  11. package/dist-cjs/commands/DeleteApplicationReferenceDataSourceCommand.js +2 -3
  12. package/dist-cjs/commands/DescribeApplicationCommand.js +2 -3
  13. package/dist-cjs/commands/DiscoverInputSchemaCommand.js +2 -3
  14. package/dist-cjs/commands/ListApplicationsCommand.js +2 -3
  15. package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -3
  16. package/dist-cjs/commands/StartApplicationCommand.js +2 -3
  17. package/dist-cjs/commands/StopApplicationCommand.js +2 -3
  18. package/dist-cjs/commands/TagResourceCommand.js +2 -3
  19. package/dist-cjs/commands/UntagResourceCommand.js +2 -3
  20. package/dist-cjs/commands/UpdateApplicationCommand.js +2 -3
  21. package/dist-cjs/models/models_0.js +1 -375
  22. package/dist-es/commands/AddApplicationCloudWatchLoggingOptionCommand.js +2 -3
  23. package/dist-es/commands/AddApplicationInputCommand.js +2 -3
  24. package/dist-es/commands/AddApplicationInputProcessingConfigurationCommand.js +2 -3
  25. package/dist-es/commands/AddApplicationOutputCommand.js +2 -3
  26. package/dist-es/commands/AddApplicationReferenceDataSourceCommand.js +2 -3
  27. package/dist-es/commands/CreateApplicationCommand.js +2 -3
  28. package/dist-es/commands/DeleteApplicationCloudWatchLoggingOptionCommand.js +2 -3
  29. package/dist-es/commands/DeleteApplicationCommand.js +2 -3
  30. package/dist-es/commands/DeleteApplicationInputProcessingConfigurationCommand.js +2 -3
  31. package/dist-es/commands/DeleteApplicationOutputCommand.js +2 -3
  32. package/dist-es/commands/DeleteApplicationReferenceDataSourceCommand.js +2 -3
  33. package/dist-es/commands/DescribeApplicationCommand.js +2 -3
  34. package/dist-es/commands/DiscoverInputSchemaCommand.js +2 -3
  35. package/dist-es/commands/ListApplicationsCommand.js +2 -3
  36. package/dist-es/commands/ListTagsForResourceCommand.js +2 -3
  37. package/dist-es/commands/StartApplicationCommand.js +2 -3
  38. package/dist-es/commands/StopApplicationCommand.js +2 -3
  39. package/dist-es/commands/TagResourceCommand.js +2 -3
  40. package/dist-es/commands/UntagResourceCommand.js +2 -3
  41. package/dist-es/commands/UpdateApplicationCommand.js +2 -3
  42. package/dist-es/models/models_0.js +0 -279
  43. package/dist-types/KinesisAnalytics.d.ts +21 -0
  44. package/dist-types/KinesisAnalyticsClient.d.ts +24 -4
  45. package/dist-types/commands/AddApplicationCloudWatchLoggingOptionCommand.d.ts +16 -0
  46. package/dist-types/commands/AddApplicationInputCommand.d.ts +16 -0
  47. package/dist-types/commands/AddApplicationInputProcessingConfigurationCommand.d.ts +16 -0
  48. package/dist-types/commands/AddApplicationOutputCommand.d.ts +16 -0
  49. package/dist-types/commands/AddApplicationReferenceDataSourceCommand.d.ts +16 -0
  50. package/dist-types/commands/CreateApplicationCommand.d.ts +16 -0
  51. package/dist-types/commands/DeleteApplicationCloudWatchLoggingOptionCommand.d.ts +16 -0
  52. package/dist-types/commands/DeleteApplicationCommand.d.ts +16 -0
  53. package/dist-types/commands/DeleteApplicationInputProcessingConfigurationCommand.d.ts +16 -0
  54. package/dist-types/commands/DeleteApplicationOutputCommand.d.ts +16 -0
  55. package/dist-types/commands/DeleteApplicationReferenceDataSourceCommand.d.ts +16 -0
  56. package/dist-types/commands/DescribeApplicationCommand.d.ts +16 -0
  57. package/dist-types/commands/DiscoverInputSchemaCommand.d.ts +16 -0
  58. package/dist-types/commands/ListApplicationsCommand.d.ts +16 -0
  59. package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
  60. package/dist-types/commands/StartApplicationCommand.d.ts +16 -0
  61. package/dist-types/commands/StopApplicationCommand.d.ts +16 -0
  62. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  63. package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
  64. package/dist-types/commands/UpdateApplicationCommand.d.ts +16 -0
  65. package/dist-types/models/KinesisAnalyticsServiceException.d.ts +2 -0
  66. package/dist-types/models/models_0.d.ts +152 -372
  67. package/dist-types/ts3.4/models/models_0.d.ts +0 -261
  68. package/package.json +4 -3
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { KinesisAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisAnalyticsClient";
5
5
  import { AddApplicationCloudWatchLoggingOptionRequest, AddApplicationCloudWatchLoggingOptionResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link AddApplicationCloudWatchLoggingOptionCommand}.
8
10
  */
9
11
  export interface AddApplicationCloudWatchLoggingOptionCommandInput extends AddApplicationCloudWatchLoggingOptionRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link AddApplicationCloudWatchLoggingOptionCommand}.
13
17
  */
14
18
  export interface AddApplicationCloudWatchLoggingOptionCommandOutput extends AddApplicationCloudWatchLoggingOptionResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <note>
18
23
  * <p>This documentation is for version 1 of the Amazon Kinesis Data Analytics API, which only supports SQL applications. Version 2 of the API supports SQL and Java applications. For more information about version 2, see <a href="/kinesisanalytics/latest/apiv2/Welcome.html">Amazon Kinesis Data Analytics API V2 Documentation</a>.</p>
19
24
  * </note>
@@ -31,6 +36,8 @@ export interface AddApplicationCloudWatchLoggingOptionCommandOutput extends AddA
31
36
  * const response = await client.send(command);
32
37
  * ```
33
38
  *
39
+ * @param AddApplicationCloudWatchLoggingOptionCommandInput - {@link AddApplicationCloudWatchLoggingOptionCommandInput}
40
+ * @returns {@link AddApplicationCloudWatchLoggingOptionCommandOutput}
34
41
  * @see {@link AddApplicationCloudWatchLoggingOptionCommandInput} for command's `input` shape.
35
42
  * @see {@link AddApplicationCloudWatchLoggingOptionCommandOutput} for command's `response` shape.
36
43
  * @see {@link KinesisAnalyticsClientResolvedConfig | config} for KinesisAnalyticsClient's `config` shape.
@@ -55,11 +62,20 @@ export interface AddApplicationCloudWatchLoggingOptionCommandOutput extends AddA
55
62
  export declare class AddApplicationCloudWatchLoggingOptionCommand extends $Command<AddApplicationCloudWatchLoggingOptionCommandInput, AddApplicationCloudWatchLoggingOptionCommandOutput, KinesisAnalyticsClientResolvedConfig> {
56
63
  readonly input: AddApplicationCloudWatchLoggingOptionCommandInput;
57
64
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
65
+ /**
66
+ * @public
67
+ */
58
68
  constructor(input: AddApplicationCloudWatchLoggingOptionCommandInput);
59
69
  /**
60
70
  * @internal
61
71
  */
62
72
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KinesisAnalyticsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<AddApplicationCloudWatchLoggingOptionCommandInput, AddApplicationCloudWatchLoggingOptionCommandOutput>;
73
+ /**
74
+ * @internal
75
+ */
63
76
  private serialize;
77
+ /**
78
+ * @internal
79
+ */
64
80
  private deserialize;
65
81
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { KinesisAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisAnalyticsClient";
5
5
  import { AddApplicationInputRequest, AddApplicationInputResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link AddApplicationInputCommand}.
8
10
  */
9
11
  export interface AddApplicationInputCommandInput extends AddApplicationInputRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link AddApplicationInputCommand}.
13
17
  */
14
18
  export interface AddApplicationInputCommandOutput extends AddApplicationInputResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <note>
18
23
  * <p>This documentation is for version 1 of the Amazon Kinesis Data Analytics API, which only supports SQL applications. Version 2 of the API supports SQL and Java applications. For more information about version 2, see <a href="/kinesisanalytics/latest/apiv2/Welcome.html">Amazon Kinesis Data Analytics API V2 Documentation</a>.</p>
19
24
  * </note>
@@ -41,6 +46,8 @@ export interface AddApplicationInputCommandOutput extends AddApplicationInputRes
41
46
  * const response = await client.send(command);
42
47
  * ```
43
48
  *
49
+ * @param AddApplicationInputCommandInput - {@link AddApplicationInputCommandInput}
50
+ * @returns {@link AddApplicationInputCommandOutput}
44
51
  * @see {@link AddApplicationInputCommandInput} for command's `input` shape.
45
52
  * @see {@link AddApplicationInputCommandOutput} for command's `response` shape.
46
53
  * @see {@link KinesisAnalyticsClientResolvedConfig | config} for KinesisAnalyticsClient's `config` shape.
@@ -68,11 +75,20 @@ export interface AddApplicationInputCommandOutput extends AddApplicationInputRes
68
75
  export declare class AddApplicationInputCommand extends $Command<AddApplicationInputCommandInput, AddApplicationInputCommandOutput, KinesisAnalyticsClientResolvedConfig> {
69
76
  readonly input: AddApplicationInputCommandInput;
70
77
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
78
+ /**
79
+ * @public
80
+ */
71
81
  constructor(input: AddApplicationInputCommandInput);
72
82
  /**
73
83
  * @internal
74
84
  */
75
85
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KinesisAnalyticsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<AddApplicationInputCommandInput, AddApplicationInputCommandOutput>;
86
+ /**
87
+ * @internal
88
+ */
76
89
  private serialize;
90
+ /**
91
+ * @internal
92
+ */
77
93
  private deserialize;
78
94
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { KinesisAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisAnalyticsClient";
5
5
  import { AddApplicationInputProcessingConfigurationRequest, AddApplicationInputProcessingConfigurationResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link AddApplicationInputProcessingConfigurationCommand}.
8
10
  */
9
11
  export interface AddApplicationInputProcessingConfigurationCommandInput extends AddApplicationInputProcessingConfigurationRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link AddApplicationInputProcessingConfigurationCommand}.
13
17
  */
14
18
  export interface AddApplicationInputProcessingConfigurationCommandOutput extends AddApplicationInputProcessingConfigurationResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <note>
18
23
  * <p>This documentation is for version 1 of the Amazon Kinesis Data Analytics API, which only supports SQL applications. Version 2 of the API supports SQL and Java applications. For more information about version 2, see <a href="/kinesisanalytics/latest/apiv2/Welcome.html">Amazon Kinesis Data Analytics API V2 Documentation</a>.</p>
19
24
  * </note>
@@ -30,6 +35,8 @@ export interface AddApplicationInputProcessingConfigurationCommandOutput extends
30
35
  * const response = await client.send(command);
31
36
  * ```
32
37
  *
38
+ * @param AddApplicationInputProcessingConfigurationCommandInput - {@link AddApplicationInputProcessingConfigurationCommandInput}
39
+ * @returns {@link AddApplicationInputProcessingConfigurationCommandOutput}
33
40
  * @see {@link AddApplicationInputProcessingConfigurationCommandInput} for command's `input` shape.
34
41
  * @see {@link AddApplicationInputProcessingConfigurationCommandOutput} for command's `response` shape.
35
42
  * @see {@link KinesisAnalyticsClientResolvedConfig | config} for KinesisAnalyticsClient's `config` shape.
@@ -54,11 +61,20 @@ export interface AddApplicationInputProcessingConfigurationCommandOutput extends
54
61
  export declare class AddApplicationInputProcessingConfigurationCommand extends $Command<AddApplicationInputProcessingConfigurationCommandInput, AddApplicationInputProcessingConfigurationCommandOutput, KinesisAnalyticsClientResolvedConfig> {
55
62
  readonly input: AddApplicationInputProcessingConfigurationCommandInput;
56
63
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
64
+ /**
65
+ * @public
66
+ */
57
67
  constructor(input: AddApplicationInputProcessingConfigurationCommandInput);
58
68
  /**
59
69
  * @internal
60
70
  */
61
71
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KinesisAnalyticsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<AddApplicationInputProcessingConfigurationCommandInput, AddApplicationInputProcessingConfigurationCommandOutput>;
72
+ /**
73
+ * @internal
74
+ */
62
75
  private serialize;
76
+ /**
77
+ * @internal
78
+ */
63
79
  private deserialize;
64
80
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { KinesisAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisAnalyticsClient";
5
5
  import { AddApplicationOutputRequest, AddApplicationOutputResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link AddApplicationOutputCommand}.
8
10
  */
9
11
  export interface AddApplicationOutputCommandInput extends AddApplicationOutputRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link AddApplicationOutputCommand}.
13
17
  */
14
18
  export interface AddApplicationOutputCommandOutput extends AddApplicationOutputResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <note>
18
23
  * <p>This documentation is for version 1 of the Amazon Kinesis Data Analytics API, which only supports SQL applications. Version 2 of the API supports SQL and Java applications. For more information about version 2, see <a href="/kinesisanalytics/latest/apiv2/Welcome.html">Amazon Kinesis Data Analytics API V2 Documentation</a>.</p>
19
24
  * </note>
@@ -44,6 +49,8 @@ export interface AddApplicationOutputCommandOutput extends AddApplicationOutputR
44
49
  * const response = await client.send(command);
45
50
  * ```
46
51
  *
52
+ * @param AddApplicationOutputCommandInput - {@link AddApplicationOutputCommandInput}
53
+ * @returns {@link AddApplicationOutputCommandOutput}
47
54
  * @see {@link AddApplicationOutputCommandInput} for command's `input` shape.
48
55
  * @see {@link AddApplicationOutputCommandOutput} for command's `response` shape.
49
56
  * @see {@link KinesisAnalyticsClientResolvedConfig | config} for KinesisAnalyticsClient's `config` shape.
@@ -68,11 +75,20 @@ export interface AddApplicationOutputCommandOutput extends AddApplicationOutputR
68
75
  export declare class AddApplicationOutputCommand extends $Command<AddApplicationOutputCommandInput, AddApplicationOutputCommandOutput, KinesisAnalyticsClientResolvedConfig> {
69
76
  readonly input: AddApplicationOutputCommandInput;
70
77
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
78
+ /**
79
+ * @public
80
+ */
71
81
  constructor(input: AddApplicationOutputCommandInput);
72
82
  /**
73
83
  * @internal
74
84
  */
75
85
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KinesisAnalyticsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<AddApplicationOutputCommandInput, AddApplicationOutputCommandOutput>;
86
+ /**
87
+ * @internal
88
+ */
76
89
  private serialize;
90
+ /**
91
+ * @internal
92
+ */
77
93
  private deserialize;
78
94
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { KinesisAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisAnalyticsClient";
5
5
  import { AddApplicationReferenceDataSourceRequest, AddApplicationReferenceDataSourceResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link AddApplicationReferenceDataSourceCommand}.
8
10
  */
9
11
  export interface AddApplicationReferenceDataSourceCommandInput extends AddApplicationReferenceDataSourceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link AddApplicationReferenceDataSourceCommand}.
13
17
  */
14
18
  export interface AddApplicationReferenceDataSourceCommandOutput extends AddApplicationReferenceDataSourceResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <note>
18
23
  * <p>This documentation is for version 1 of the Amazon Kinesis Data Analytics API, which only supports SQL applications. Version 2 of the API supports SQL and Java applications. For more information about version 2, see <a href="/kinesisanalytics/latest/apiv2/Welcome.html">Amazon Kinesis Data Analytics API V2 Documentation</a>.</p>
19
24
  * </note>
@@ -38,6 +43,8 @@ export interface AddApplicationReferenceDataSourceCommandOutput extends AddAppli
38
43
  * const response = await client.send(command);
39
44
  * ```
40
45
  *
46
+ * @param AddApplicationReferenceDataSourceCommandInput - {@link AddApplicationReferenceDataSourceCommandInput}
47
+ * @returns {@link AddApplicationReferenceDataSourceCommandOutput}
41
48
  * @see {@link AddApplicationReferenceDataSourceCommandInput} for command's `input` shape.
42
49
  * @see {@link AddApplicationReferenceDataSourceCommandOutput} for command's `response` shape.
43
50
  * @see {@link KinesisAnalyticsClientResolvedConfig | config} for KinesisAnalyticsClient's `config` shape.
@@ -62,11 +69,20 @@ export interface AddApplicationReferenceDataSourceCommandOutput extends AddAppli
62
69
  export declare class AddApplicationReferenceDataSourceCommand extends $Command<AddApplicationReferenceDataSourceCommandInput, AddApplicationReferenceDataSourceCommandOutput, KinesisAnalyticsClientResolvedConfig> {
63
70
  readonly input: AddApplicationReferenceDataSourceCommandInput;
64
71
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
72
+ /**
73
+ * @public
74
+ */
65
75
  constructor(input: AddApplicationReferenceDataSourceCommandInput);
66
76
  /**
67
77
  * @internal
68
78
  */
69
79
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KinesisAnalyticsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<AddApplicationReferenceDataSourceCommandInput, AddApplicationReferenceDataSourceCommandOutput>;
80
+ /**
81
+ * @internal
82
+ */
70
83
  private serialize;
84
+ /**
85
+ * @internal
86
+ */
71
87
  private deserialize;
72
88
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { KinesisAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisAnalyticsClient";
5
5
  import { CreateApplicationRequest, CreateApplicationResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link CreateApplicationCommand}.
8
10
  */
9
11
  export interface CreateApplicationCommandInput extends CreateApplicationRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link CreateApplicationCommand}.
13
17
  */
14
18
  export interface CreateApplicationCommandOutput extends CreateApplicationResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <note>
18
23
  * <p>This documentation is for version 1 of the Amazon Kinesis Data Analytics API, which only supports SQL applications. Version 2 of the API supports SQL and Java applications. For more information about version 2, see <a href="/kinesisanalytics/latest/apiv2/Welcome.html">Amazon Kinesis Data Analytics API V2 Documentation</a>.</p>
19
24
  * </note>
@@ -51,6 +56,8 @@ export interface CreateApplicationCommandOutput extends CreateApplicationRespons
51
56
  * const response = await client.send(command);
52
57
  * ```
53
58
  *
59
+ * @param CreateApplicationCommandInput - {@link CreateApplicationCommandInput}
60
+ * @returns {@link CreateApplicationCommandOutput}
54
61
  * @see {@link CreateApplicationCommandInput} for command's `input` shape.
55
62
  * @see {@link CreateApplicationCommandOutput} for command's `response` shape.
56
63
  * @see {@link KinesisAnalyticsClientResolvedConfig | config} for KinesisAnalyticsClient's `config` shape.
@@ -78,11 +85,20 @@ export interface CreateApplicationCommandOutput extends CreateApplicationRespons
78
85
  export declare class CreateApplicationCommand extends $Command<CreateApplicationCommandInput, CreateApplicationCommandOutput, KinesisAnalyticsClientResolvedConfig> {
79
86
  readonly input: CreateApplicationCommandInput;
80
87
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
88
+ /**
89
+ * @public
90
+ */
81
91
  constructor(input: CreateApplicationCommandInput);
82
92
  /**
83
93
  * @internal
84
94
  */
85
95
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KinesisAnalyticsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateApplicationCommandInput, CreateApplicationCommandOutput>;
96
+ /**
97
+ * @internal
98
+ */
86
99
  private serialize;
100
+ /**
101
+ * @internal
102
+ */
87
103
  private deserialize;
88
104
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { KinesisAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisAnalyticsClient";
5
5
  import { DeleteApplicationCloudWatchLoggingOptionRequest, DeleteApplicationCloudWatchLoggingOptionResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DeleteApplicationCloudWatchLoggingOptionCommand}.
8
10
  */
9
11
  export interface DeleteApplicationCloudWatchLoggingOptionCommandInput extends DeleteApplicationCloudWatchLoggingOptionRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DeleteApplicationCloudWatchLoggingOptionCommand}.
13
17
  */
14
18
  export interface DeleteApplicationCloudWatchLoggingOptionCommandOutput extends DeleteApplicationCloudWatchLoggingOptionResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <note>
18
23
  * <p>This documentation is for version 1 of the Amazon Kinesis Data Analytics API, which only supports SQL applications. Version 2 of the API supports SQL and Java applications. For more information about version 2, see <a href="/kinesisanalytics/latest/apiv2/Welcome.html">Amazon Kinesis Data Analytics API V2 Documentation</a>.</p>
19
24
  * </note>
@@ -30,6 +35,8 @@ export interface DeleteApplicationCloudWatchLoggingOptionCommandOutput extends D
30
35
  * const response = await client.send(command);
31
36
  * ```
32
37
  *
38
+ * @param DeleteApplicationCloudWatchLoggingOptionCommandInput - {@link DeleteApplicationCloudWatchLoggingOptionCommandInput}
39
+ * @returns {@link DeleteApplicationCloudWatchLoggingOptionCommandOutput}
33
40
  * @see {@link DeleteApplicationCloudWatchLoggingOptionCommandInput} for command's `input` shape.
34
41
  * @see {@link DeleteApplicationCloudWatchLoggingOptionCommandOutput} for command's `response` shape.
35
42
  * @see {@link KinesisAnalyticsClientResolvedConfig | config} for KinesisAnalyticsClient's `config` shape.
@@ -54,11 +61,20 @@ export interface DeleteApplicationCloudWatchLoggingOptionCommandOutput extends D
54
61
  export declare class DeleteApplicationCloudWatchLoggingOptionCommand extends $Command<DeleteApplicationCloudWatchLoggingOptionCommandInput, DeleteApplicationCloudWatchLoggingOptionCommandOutput, KinesisAnalyticsClientResolvedConfig> {
55
62
  readonly input: DeleteApplicationCloudWatchLoggingOptionCommandInput;
56
63
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
64
+ /**
65
+ * @public
66
+ */
57
67
  constructor(input: DeleteApplicationCloudWatchLoggingOptionCommandInput);
58
68
  /**
59
69
  * @internal
60
70
  */
61
71
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KinesisAnalyticsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteApplicationCloudWatchLoggingOptionCommandInput, DeleteApplicationCloudWatchLoggingOptionCommandOutput>;
72
+ /**
73
+ * @internal
74
+ */
62
75
  private serialize;
76
+ /**
77
+ * @internal
78
+ */
63
79
  private deserialize;
64
80
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { KinesisAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisAnalyticsClient";
5
5
  import { DeleteApplicationRequest, DeleteApplicationResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DeleteApplicationCommand}.
8
10
  */
9
11
  export interface DeleteApplicationCommandInput extends DeleteApplicationRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DeleteApplicationCommand}.
13
17
  */
14
18
  export interface DeleteApplicationCommandOutput extends DeleteApplicationResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <note>
18
23
  * <p>This documentation is for version 1 of the Amazon Kinesis Data Analytics API, which only supports SQL applications. Version 2 of the API supports SQL and Java applications. For more information about version 2, see <a href="/kinesisanalytics/latest/apiv2/Welcome.html">Amazon Kinesis Data Analytics API V2 Documentation</a>.</p>
19
24
  * </note>
@@ -30,6 +35,8 @@ export interface DeleteApplicationCommandOutput extends DeleteApplicationRespons
30
35
  * const response = await client.send(command);
31
36
  * ```
32
37
  *
38
+ * @param DeleteApplicationCommandInput - {@link DeleteApplicationCommandInput}
39
+ * @returns {@link DeleteApplicationCommandOutput}
33
40
  * @see {@link DeleteApplicationCommandInput} for command's `input` shape.
34
41
  * @see {@link DeleteApplicationCommandOutput} for command's `response` shape.
35
42
  * @see {@link KinesisAnalyticsClientResolvedConfig | config} for KinesisAnalyticsClient's `config` shape.
@@ -51,11 +58,20 @@ export interface DeleteApplicationCommandOutput extends DeleteApplicationRespons
51
58
  export declare class DeleteApplicationCommand extends $Command<DeleteApplicationCommandInput, DeleteApplicationCommandOutput, KinesisAnalyticsClientResolvedConfig> {
52
59
  readonly input: DeleteApplicationCommandInput;
53
60
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
61
+ /**
62
+ * @public
63
+ */
54
64
  constructor(input: DeleteApplicationCommandInput);
55
65
  /**
56
66
  * @internal
57
67
  */
58
68
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KinesisAnalyticsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteApplicationCommandInput, DeleteApplicationCommandOutput>;
69
+ /**
70
+ * @internal
71
+ */
59
72
  private serialize;
73
+ /**
74
+ * @internal
75
+ */
60
76
  private deserialize;
61
77
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { KinesisAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisAnalyticsClient";
5
5
  import { DeleteApplicationInputProcessingConfigurationRequest, DeleteApplicationInputProcessingConfigurationResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DeleteApplicationInputProcessingConfigurationCommand}.
8
10
  */
9
11
  export interface DeleteApplicationInputProcessingConfigurationCommandInput extends DeleteApplicationInputProcessingConfigurationRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DeleteApplicationInputProcessingConfigurationCommand}.
13
17
  */
14
18
  export interface DeleteApplicationInputProcessingConfigurationCommandOutput extends DeleteApplicationInputProcessingConfigurationResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <note>
18
23
  * <p>This documentation is for version 1 of the Amazon Kinesis Data Analytics API, which only supports SQL applications. Version 2 of the API supports SQL and Java applications. For more information about version 2, see <a href="/kinesisanalytics/latest/apiv2/Welcome.html">Amazon Kinesis Data Analytics API V2 Documentation</a>.</p>
19
24
  * </note>
@@ -28,6 +33,8 @@ export interface DeleteApplicationInputProcessingConfigurationCommandOutput exte
28
33
  * const response = await client.send(command);
29
34
  * ```
30
35
  *
36
+ * @param DeleteApplicationInputProcessingConfigurationCommandInput - {@link DeleteApplicationInputProcessingConfigurationCommandInput}
37
+ * @returns {@link DeleteApplicationInputProcessingConfigurationCommandOutput}
31
38
  * @see {@link DeleteApplicationInputProcessingConfigurationCommandInput} for command's `input` shape.
32
39
  * @see {@link DeleteApplicationInputProcessingConfigurationCommandOutput} for command's `response` shape.
33
40
  * @see {@link KinesisAnalyticsClientResolvedConfig | config} for KinesisAnalyticsClient's `config` shape.
@@ -52,11 +59,20 @@ export interface DeleteApplicationInputProcessingConfigurationCommandOutput exte
52
59
  export declare class DeleteApplicationInputProcessingConfigurationCommand extends $Command<DeleteApplicationInputProcessingConfigurationCommandInput, DeleteApplicationInputProcessingConfigurationCommandOutput, KinesisAnalyticsClientResolvedConfig> {
53
60
  readonly input: DeleteApplicationInputProcessingConfigurationCommandInput;
54
61
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
+ /**
63
+ * @public
64
+ */
55
65
  constructor(input: DeleteApplicationInputProcessingConfigurationCommandInput);
56
66
  /**
57
67
  * @internal
58
68
  */
59
69
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KinesisAnalyticsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteApplicationInputProcessingConfigurationCommandInput, DeleteApplicationInputProcessingConfigurationCommandOutput>;
70
+ /**
71
+ * @internal
72
+ */
60
73
  private serialize;
74
+ /**
75
+ * @internal
76
+ */
61
77
  private deserialize;
62
78
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { KinesisAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisAnalyticsClient";
5
5
  import { DeleteApplicationOutputRequest, DeleteApplicationOutputResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DeleteApplicationOutputCommand}.
8
10
  */
9
11
  export interface DeleteApplicationOutputCommandInput extends DeleteApplicationOutputRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DeleteApplicationOutputCommand}.
13
17
  */
14
18
  export interface DeleteApplicationOutputCommandOutput extends DeleteApplicationOutputResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <note>
18
23
  * <p>This documentation is for version 1 of the Amazon Kinesis Data Analytics API, which only supports SQL applications. Version 2 of the API supports SQL and Java applications. For more information about version 2, see <a href="/kinesisanalytics/latest/apiv2/Welcome.html">Amazon Kinesis Data Analytics API V2 Documentation</a>.</p>
19
24
  * </note>
@@ -30,6 +35,8 @@ export interface DeleteApplicationOutputCommandOutput extends DeleteApplicationO
30
35
  * const response = await client.send(command);
31
36
  * ```
32
37
  *
38
+ * @param DeleteApplicationOutputCommandInput - {@link DeleteApplicationOutputCommandInput}
39
+ * @returns {@link DeleteApplicationOutputCommandOutput}
33
40
  * @see {@link DeleteApplicationOutputCommandInput} for command's `input` shape.
34
41
  * @see {@link DeleteApplicationOutputCommandOutput} for command's `response` shape.
35
42
  * @see {@link KinesisAnalyticsClientResolvedConfig | config} for KinesisAnalyticsClient's `config` shape.
@@ -54,11 +61,20 @@ export interface DeleteApplicationOutputCommandOutput extends DeleteApplicationO
54
61
  export declare class DeleteApplicationOutputCommand extends $Command<DeleteApplicationOutputCommandInput, DeleteApplicationOutputCommandOutput, KinesisAnalyticsClientResolvedConfig> {
55
62
  readonly input: DeleteApplicationOutputCommandInput;
56
63
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
64
+ /**
65
+ * @public
66
+ */
57
67
  constructor(input: DeleteApplicationOutputCommandInput);
58
68
  /**
59
69
  * @internal
60
70
  */
61
71
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KinesisAnalyticsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteApplicationOutputCommandInput, DeleteApplicationOutputCommandOutput>;
72
+ /**
73
+ * @internal
74
+ */
62
75
  private serialize;
76
+ /**
77
+ * @internal
78
+ */
63
79
  private deserialize;
64
80
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { KinesisAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisAnalyticsClient";
5
5
  import { DeleteApplicationReferenceDataSourceRequest, DeleteApplicationReferenceDataSourceResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DeleteApplicationReferenceDataSourceCommand}.
8
10
  */
9
11
  export interface DeleteApplicationReferenceDataSourceCommandInput extends DeleteApplicationReferenceDataSourceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DeleteApplicationReferenceDataSourceCommand}.
13
17
  */
14
18
  export interface DeleteApplicationReferenceDataSourceCommandOutput extends DeleteApplicationReferenceDataSourceResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <note>
18
23
  * <p>This documentation is for version 1 of the Amazon Kinesis Data Analytics API, which only supports SQL applications. Version 2 of the API supports SQL and Java applications. For more information about version 2, see <a href="/kinesisanalytics/latest/apiv2/Welcome.html">Amazon Kinesis Data Analytics API V2 Documentation</a>.</p>
19
24
  * </note>
@@ -33,6 +38,8 @@ export interface DeleteApplicationReferenceDataSourceCommandOutput extends Delet
33
38
  * const response = await client.send(command);
34
39
  * ```
35
40
  *
41
+ * @param DeleteApplicationReferenceDataSourceCommandInput - {@link DeleteApplicationReferenceDataSourceCommandInput}
42
+ * @returns {@link DeleteApplicationReferenceDataSourceCommandOutput}
36
43
  * @see {@link DeleteApplicationReferenceDataSourceCommandInput} for command's `input` shape.
37
44
  * @see {@link DeleteApplicationReferenceDataSourceCommandOutput} for command's `response` shape.
38
45
  * @see {@link KinesisAnalyticsClientResolvedConfig | config} for KinesisAnalyticsClient's `config` shape.
@@ -57,11 +64,20 @@ export interface DeleteApplicationReferenceDataSourceCommandOutput extends Delet
57
64
  export declare class DeleteApplicationReferenceDataSourceCommand extends $Command<DeleteApplicationReferenceDataSourceCommandInput, DeleteApplicationReferenceDataSourceCommandOutput, KinesisAnalyticsClientResolvedConfig> {
58
65
  readonly input: DeleteApplicationReferenceDataSourceCommandInput;
59
66
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
67
+ /**
68
+ * @public
69
+ */
60
70
  constructor(input: DeleteApplicationReferenceDataSourceCommandInput);
61
71
  /**
62
72
  * @internal
63
73
  */
64
74
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KinesisAnalyticsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteApplicationReferenceDataSourceCommandInput, DeleteApplicationReferenceDataSourceCommandOutput>;
75
+ /**
76
+ * @internal
77
+ */
65
78
  private serialize;
79
+ /**
80
+ * @internal
81
+ */
66
82
  private deserialize;
67
83
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { KinesisAnalyticsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KinesisAnalyticsClient";
5
5
  import { DescribeApplicationRequest, DescribeApplicationResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DescribeApplicationCommand}.
8
10
  */
9
11
  export interface DescribeApplicationCommandInput extends DescribeApplicationRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DescribeApplicationCommand}.
13
17
  */
14
18
  export interface DescribeApplicationCommandOutput extends DescribeApplicationResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <note>
18
23
  * <p>This documentation is for version 1 of the Amazon Kinesis Data Analytics API, which only supports SQL applications. Version 2 of the API supports SQL and Java applications. For more information about version 2, see <a href="/kinesisanalytics/latest/apiv2/Welcome.html">Amazon Kinesis Data Analytics API V2 Documentation</a>.</p>
19
24
  * </note>
@@ -34,6 +39,8 @@ export interface DescribeApplicationCommandOutput extends DescribeApplicationRes
34
39
  * const response = await client.send(command);
35
40
  * ```
36
41
  *
42
+ * @param DescribeApplicationCommandInput - {@link DescribeApplicationCommandInput}
43
+ * @returns {@link DescribeApplicationCommandOutput}
37
44
  * @see {@link DescribeApplicationCommandInput} for command's `input` shape.
38
45
  * @see {@link DescribeApplicationCommandOutput} for command's `response` shape.
39
46
  * @see {@link KinesisAnalyticsClientResolvedConfig | config} for KinesisAnalyticsClient's `config` shape.
@@ -49,11 +56,20 @@ export interface DescribeApplicationCommandOutput extends DescribeApplicationRes
49
56
  export declare class DescribeApplicationCommand extends $Command<DescribeApplicationCommandInput, DescribeApplicationCommandOutput, KinesisAnalyticsClientResolvedConfig> {
50
57
  readonly input: DescribeApplicationCommandInput;
51
58
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
59
+ /**
60
+ * @public
61
+ */
52
62
  constructor(input: DescribeApplicationCommandInput);
53
63
  /**
54
64
  * @internal
55
65
  */
56
66
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: KinesisAnalyticsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeApplicationCommandInput, DescribeApplicationCommandOutput>;
67
+ /**
68
+ * @internal
69
+ */
57
70
  private serialize;
71
+ /**
72
+ * @internal
73
+ */
58
74
  private deserialize;
59
75
  }