@aws-sdk/client-kinesis-analytics 3.299.0 → 3.301.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/commands/AddApplicationCloudWatchLoggingOptionCommand.d.ts +8 -0
- package/dist-types/commands/AddApplicationInputCommand.d.ts +46 -0
- package/dist-types/commands/AddApplicationInputProcessingConfigurationCommand.d.ts +11 -0
- package/dist-types/commands/AddApplicationOutputCommand.d.ts +22 -0
- package/dist-types/commands/AddApplicationReferenceDataSourceCommand.d.ts +34 -0
- package/dist-types/commands/CreateApplicationCommand.d.ts +81 -0
- package/dist-types/commands/DeleteApplicationCloudWatchLoggingOptionCommand.d.ts +5 -0
- package/dist-types/commands/DeleteApplicationCommand.d.ts +4 -0
- package/dist-types/commands/DeleteApplicationInputProcessingConfigurationCommand.d.ts +5 -0
- package/dist-types/commands/DeleteApplicationOutputCommand.d.ts +5 -0
- package/dist-types/commands/DeleteApplicationReferenceDataSourceCommand.d.ts +5 -0
- package/dist-types/commands/DescribeApplicationCommand.d.ts +3 -0
- package/dist-types/commands/DiscoverInputSchemaCommand.d.ts +18 -0
- package/dist-types/commands/ListApplicationsCommand.d.ts +4 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -0
- package/dist-types/commands/StartApplicationCommand.d.ts +11 -0
- package/dist-types/commands/StopApplicationCommand.d.ts +3 -0
- package/dist-types/commands/TagResourceCommand.d.ts +9 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +6 -0
- package/dist-types/commands/UpdateApplicationCommand.d.ts +113 -0
- package/package.json +8 -8
|
@@ -32,6 +32,14 @@ export interface AddApplicationCloudWatchLoggingOptionCommandOutput extends AddA
|
|
|
32
32
|
* import { KinesisAnalyticsClient, AddApplicationCloudWatchLoggingOptionCommand } from "@aws-sdk/client-kinesis-analytics"; // ES Modules import
|
|
33
33
|
* // const { KinesisAnalyticsClient, AddApplicationCloudWatchLoggingOptionCommand } = require("@aws-sdk/client-kinesis-analytics"); // CommonJS import
|
|
34
34
|
* const client = new KinesisAnalyticsClient(config);
|
|
35
|
+
* const input = { // AddApplicationCloudWatchLoggingOptionRequest
|
|
36
|
+
* ApplicationName: "STRING_VALUE", // required
|
|
37
|
+
* CurrentApplicationVersionId: Number("long"), // required
|
|
38
|
+
* CloudWatchLoggingOption: { // CloudWatchLoggingOption
|
|
39
|
+
* LogStreamARN: "STRING_VALUE", // required
|
|
40
|
+
* RoleARN: "STRING_VALUE", // required
|
|
41
|
+
* },
|
|
42
|
+
* };
|
|
35
43
|
* const command = new AddApplicationCloudWatchLoggingOptionCommand(input);
|
|
36
44
|
* const response = await client.send(command);
|
|
37
45
|
* ```
|
|
@@ -42,6 +42,52 @@ export interface AddApplicationInputCommandOutput extends AddApplicationInputRes
|
|
|
42
42
|
* import { KinesisAnalyticsClient, AddApplicationInputCommand } from "@aws-sdk/client-kinesis-analytics"; // ES Modules import
|
|
43
43
|
* // const { KinesisAnalyticsClient, AddApplicationInputCommand } = require("@aws-sdk/client-kinesis-analytics"); // CommonJS import
|
|
44
44
|
* const client = new KinesisAnalyticsClient(config);
|
|
45
|
+
* const input = { // AddApplicationInputRequest
|
|
46
|
+
* ApplicationName: "STRING_VALUE", // required
|
|
47
|
+
* CurrentApplicationVersionId: Number("long"), // required
|
|
48
|
+
* Input: { // Input
|
|
49
|
+
* NamePrefix: "STRING_VALUE", // required
|
|
50
|
+
* InputProcessingConfiguration: { // InputProcessingConfiguration
|
|
51
|
+
* InputLambdaProcessor: { // InputLambdaProcessor
|
|
52
|
+
* ResourceARN: "STRING_VALUE", // required
|
|
53
|
+
* RoleARN: "STRING_VALUE", // required
|
|
54
|
+
* },
|
|
55
|
+
* },
|
|
56
|
+
* KinesisStreamsInput: { // KinesisStreamsInput
|
|
57
|
+
* ResourceARN: "STRING_VALUE", // required
|
|
58
|
+
* RoleARN: "STRING_VALUE", // required
|
|
59
|
+
* },
|
|
60
|
+
* KinesisFirehoseInput: { // KinesisFirehoseInput
|
|
61
|
+
* ResourceARN: "STRING_VALUE", // required
|
|
62
|
+
* RoleARN: "STRING_VALUE", // required
|
|
63
|
+
* },
|
|
64
|
+
* InputParallelism: { // InputParallelism
|
|
65
|
+
* Count: Number("int"),
|
|
66
|
+
* },
|
|
67
|
+
* InputSchema: { // SourceSchema
|
|
68
|
+
* RecordFormat: { // RecordFormat
|
|
69
|
+
* RecordFormatType: "STRING_VALUE", // required
|
|
70
|
+
* MappingParameters: { // MappingParameters
|
|
71
|
+
* JSONMappingParameters: { // JSONMappingParameters
|
|
72
|
+
* RecordRowPath: "STRING_VALUE", // required
|
|
73
|
+
* },
|
|
74
|
+
* CSVMappingParameters: { // CSVMappingParameters
|
|
75
|
+
* RecordRowDelimiter: "STRING_VALUE", // required
|
|
76
|
+
* RecordColumnDelimiter: "STRING_VALUE", // required
|
|
77
|
+
* },
|
|
78
|
+
* },
|
|
79
|
+
* },
|
|
80
|
+
* RecordEncoding: "STRING_VALUE",
|
|
81
|
+
* RecordColumns: [ // RecordColumns // required
|
|
82
|
+
* { // RecordColumn
|
|
83
|
+
* Name: "STRING_VALUE", // required
|
|
84
|
+
* Mapping: "STRING_VALUE",
|
|
85
|
+
* SqlType: "STRING_VALUE", // required
|
|
86
|
+
* },
|
|
87
|
+
* ],
|
|
88
|
+
* },
|
|
89
|
+
* },
|
|
90
|
+
* };
|
|
45
91
|
* const command = new AddApplicationInputCommand(input);
|
|
46
92
|
* const response = await client.send(command);
|
|
47
93
|
* ```
|
|
@@ -31,6 +31,17 @@ export interface AddApplicationInputProcessingConfigurationCommandOutput extends
|
|
|
31
31
|
* import { KinesisAnalyticsClient, AddApplicationInputProcessingConfigurationCommand } from "@aws-sdk/client-kinesis-analytics"; // ES Modules import
|
|
32
32
|
* // const { KinesisAnalyticsClient, AddApplicationInputProcessingConfigurationCommand } = require("@aws-sdk/client-kinesis-analytics"); // CommonJS import
|
|
33
33
|
* const client = new KinesisAnalyticsClient(config);
|
|
34
|
+
* const input = { // AddApplicationInputProcessingConfigurationRequest
|
|
35
|
+
* ApplicationName: "STRING_VALUE", // required
|
|
36
|
+
* CurrentApplicationVersionId: Number("long"), // required
|
|
37
|
+
* InputId: "STRING_VALUE", // required
|
|
38
|
+
* InputProcessingConfiguration: { // InputProcessingConfiguration
|
|
39
|
+
* InputLambdaProcessor: { // InputLambdaProcessor
|
|
40
|
+
* ResourceARN: "STRING_VALUE", // required
|
|
41
|
+
* RoleARN: "STRING_VALUE", // required
|
|
42
|
+
* },
|
|
43
|
+
* },
|
|
44
|
+
* };
|
|
34
45
|
* const command = new AddApplicationInputProcessingConfigurationCommand(input);
|
|
35
46
|
* const response = await client.send(command);
|
|
36
47
|
* ```
|
|
@@ -45,6 +45,28 @@ export interface AddApplicationOutputCommandOutput extends AddApplicationOutputR
|
|
|
45
45
|
* import { KinesisAnalyticsClient, AddApplicationOutputCommand } from "@aws-sdk/client-kinesis-analytics"; // ES Modules import
|
|
46
46
|
* // const { KinesisAnalyticsClient, AddApplicationOutputCommand } = require("@aws-sdk/client-kinesis-analytics"); // CommonJS import
|
|
47
47
|
* const client = new KinesisAnalyticsClient(config);
|
|
48
|
+
* const input = { // AddApplicationOutputRequest
|
|
49
|
+
* ApplicationName: "STRING_VALUE", // required
|
|
50
|
+
* CurrentApplicationVersionId: Number("long"), // required
|
|
51
|
+
* Output: { // Output
|
|
52
|
+
* Name: "STRING_VALUE", // required
|
|
53
|
+
* KinesisStreamsOutput: { // KinesisStreamsOutput
|
|
54
|
+
* ResourceARN: "STRING_VALUE", // required
|
|
55
|
+
* RoleARN: "STRING_VALUE", // required
|
|
56
|
+
* },
|
|
57
|
+
* KinesisFirehoseOutput: { // KinesisFirehoseOutput
|
|
58
|
+
* ResourceARN: "STRING_VALUE", // required
|
|
59
|
+
* RoleARN: "STRING_VALUE", // required
|
|
60
|
+
* },
|
|
61
|
+
* LambdaOutput: { // LambdaOutput
|
|
62
|
+
* ResourceARN: "STRING_VALUE", // required
|
|
63
|
+
* RoleARN: "STRING_VALUE", // required
|
|
64
|
+
* },
|
|
65
|
+
* DestinationSchema: { // DestinationSchema
|
|
66
|
+
* RecordFormatType: "STRING_VALUE", // required
|
|
67
|
+
* },
|
|
68
|
+
* },
|
|
69
|
+
* };
|
|
48
70
|
* const command = new AddApplicationOutputCommand(input);
|
|
49
71
|
* const response = await client.send(command);
|
|
50
72
|
* ```
|
|
@@ -39,6 +39,40 @@ export interface AddApplicationReferenceDataSourceCommandOutput extends AddAppli
|
|
|
39
39
|
* import { KinesisAnalyticsClient, AddApplicationReferenceDataSourceCommand } from "@aws-sdk/client-kinesis-analytics"; // ES Modules import
|
|
40
40
|
* // const { KinesisAnalyticsClient, AddApplicationReferenceDataSourceCommand } = require("@aws-sdk/client-kinesis-analytics"); // CommonJS import
|
|
41
41
|
* const client = new KinesisAnalyticsClient(config);
|
|
42
|
+
* const input = { // AddApplicationReferenceDataSourceRequest
|
|
43
|
+
* ApplicationName: "STRING_VALUE", // required
|
|
44
|
+
* CurrentApplicationVersionId: Number("long"), // required
|
|
45
|
+
* ReferenceDataSource: { // ReferenceDataSource
|
|
46
|
+
* TableName: "STRING_VALUE", // required
|
|
47
|
+
* S3ReferenceDataSource: { // S3ReferenceDataSource
|
|
48
|
+
* BucketARN: "STRING_VALUE", // required
|
|
49
|
+
* FileKey: "STRING_VALUE", // required
|
|
50
|
+
* ReferenceRoleARN: "STRING_VALUE", // required
|
|
51
|
+
* },
|
|
52
|
+
* ReferenceSchema: { // SourceSchema
|
|
53
|
+
* RecordFormat: { // RecordFormat
|
|
54
|
+
* RecordFormatType: "STRING_VALUE", // required
|
|
55
|
+
* MappingParameters: { // MappingParameters
|
|
56
|
+
* JSONMappingParameters: { // JSONMappingParameters
|
|
57
|
+
* RecordRowPath: "STRING_VALUE", // required
|
|
58
|
+
* },
|
|
59
|
+
* CSVMappingParameters: { // CSVMappingParameters
|
|
60
|
+
* RecordRowDelimiter: "STRING_VALUE", // required
|
|
61
|
+
* RecordColumnDelimiter: "STRING_VALUE", // required
|
|
62
|
+
* },
|
|
63
|
+
* },
|
|
64
|
+
* },
|
|
65
|
+
* RecordEncoding: "STRING_VALUE",
|
|
66
|
+
* RecordColumns: [ // RecordColumns // required
|
|
67
|
+
* { // RecordColumn
|
|
68
|
+
* Name: "STRING_VALUE", // required
|
|
69
|
+
* Mapping: "STRING_VALUE",
|
|
70
|
+
* SqlType: "STRING_VALUE", // required
|
|
71
|
+
* },
|
|
72
|
+
* ],
|
|
73
|
+
* },
|
|
74
|
+
* },
|
|
75
|
+
* };
|
|
42
76
|
* const command = new AddApplicationReferenceDataSourceCommand(input);
|
|
43
77
|
* const response = await client.send(command);
|
|
44
78
|
* ```
|
|
@@ -52,6 +52,87 @@ export interface CreateApplicationCommandOutput extends CreateApplicationRespons
|
|
|
52
52
|
* import { KinesisAnalyticsClient, CreateApplicationCommand } from "@aws-sdk/client-kinesis-analytics"; // ES Modules import
|
|
53
53
|
* // const { KinesisAnalyticsClient, CreateApplicationCommand } = require("@aws-sdk/client-kinesis-analytics"); // CommonJS import
|
|
54
54
|
* const client = new KinesisAnalyticsClient(config);
|
|
55
|
+
* const input = { // CreateApplicationRequest
|
|
56
|
+
* ApplicationName: "STRING_VALUE", // required
|
|
57
|
+
* ApplicationDescription: "STRING_VALUE",
|
|
58
|
+
* Inputs: [ // Inputs
|
|
59
|
+
* { // Input
|
|
60
|
+
* NamePrefix: "STRING_VALUE", // required
|
|
61
|
+
* InputProcessingConfiguration: { // InputProcessingConfiguration
|
|
62
|
+
* InputLambdaProcessor: { // InputLambdaProcessor
|
|
63
|
+
* ResourceARN: "STRING_VALUE", // required
|
|
64
|
+
* RoleARN: "STRING_VALUE", // required
|
|
65
|
+
* },
|
|
66
|
+
* },
|
|
67
|
+
* KinesisStreamsInput: { // KinesisStreamsInput
|
|
68
|
+
* ResourceARN: "STRING_VALUE", // required
|
|
69
|
+
* RoleARN: "STRING_VALUE", // required
|
|
70
|
+
* },
|
|
71
|
+
* KinesisFirehoseInput: { // KinesisFirehoseInput
|
|
72
|
+
* ResourceARN: "STRING_VALUE", // required
|
|
73
|
+
* RoleARN: "STRING_VALUE", // required
|
|
74
|
+
* },
|
|
75
|
+
* InputParallelism: { // InputParallelism
|
|
76
|
+
* Count: Number("int"),
|
|
77
|
+
* },
|
|
78
|
+
* InputSchema: { // SourceSchema
|
|
79
|
+
* RecordFormat: { // RecordFormat
|
|
80
|
+
* RecordFormatType: "STRING_VALUE", // required
|
|
81
|
+
* MappingParameters: { // MappingParameters
|
|
82
|
+
* JSONMappingParameters: { // JSONMappingParameters
|
|
83
|
+
* RecordRowPath: "STRING_VALUE", // required
|
|
84
|
+
* },
|
|
85
|
+
* CSVMappingParameters: { // CSVMappingParameters
|
|
86
|
+
* RecordRowDelimiter: "STRING_VALUE", // required
|
|
87
|
+
* RecordColumnDelimiter: "STRING_VALUE", // required
|
|
88
|
+
* },
|
|
89
|
+
* },
|
|
90
|
+
* },
|
|
91
|
+
* RecordEncoding: "STRING_VALUE",
|
|
92
|
+
* RecordColumns: [ // RecordColumns // required
|
|
93
|
+
* { // RecordColumn
|
|
94
|
+
* Name: "STRING_VALUE", // required
|
|
95
|
+
* Mapping: "STRING_VALUE",
|
|
96
|
+
* SqlType: "STRING_VALUE", // required
|
|
97
|
+
* },
|
|
98
|
+
* ],
|
|
99
|
+
* },
|
|
100
|
+
* },
|
|
101
|
+
* ],
|
|
102
|
+
* Outputs: [ // Outputs
|
|
103
|
+
* { // Output
|
|
104
|
+
* Name: "STRING_VALUE", // required
|
|
105
|
+
* KinesisStreamsOutput: { // KinesisStreamsOutput
|
|
106
|
+
* ResourceARN: "STRING_VALUE", // required
|
|
107
|
+
* RoleARN: "STRING_VALUE", // required
|
|
108
|
+
* },
|
|
109
|
+
* KinesisFirehoseOutput: { // KinesisFirehoseOutput
|
|
110
|
+
* ResourceARN: "STRING_VALUE", // required
|
|
111
|
+
* RoleARN: "STRING_VALUE", // required
|
|
112
|
+
* },
|
|
113
|
+
* LambdaOutput: { // LambdaOutput
|
|
114
|
+
* ResourceARN: "STRING_VALUE", // required
|
|
115
|
+
* RoleARN: "STRING_VALUE", // required
|
|
116
|
+
* },
|
|
117
|
+
* DestinationSchema: { // DestinationSchema
|
|
118
|
+
* RecordFormatType: "STRING_VALUE", // required
|
|
119
|
+
* },
|
|
120
|
+
* },
|
|
121
|
+
* ],
|
|
122
|
+
* CloudWatchLoggingOptions: [ // CloudWatchLoggingOptions
|
|
123
|
+
* { // CloudWatchLoggingOption
|
|
124
|
+
* LogStreamARN: "STRING_VALUE", // required
|
|
125
|
+
* RoleARN: "STRING_VALUE", // required
|
|
126
|
+
* },
|
|
127
|
+
* ],
|
|
128
|
+
* ApplicationCode: "STRING_VALUE",
|
|
129
|
+
* Tags: [ // Tags
|
|
130
|
+
* { // Tag
|
|
131
|
+
* Key: "STRING_VALUE", // required
|
|
132
|
+
* Value: "STRING_VALUE",
|
|
133
|
+
* },
|
|
134
|
+
* ],
|
|
135
|
+
* };
|
|
55
136
|
* const command = new CreateApplicationCommand(input);
|
|
56
137
|
* const response = await client.send(command);
|
|
57
138
|
* ```
|
|
@@ -31,6 +31,11 @@ export interface DeleteApplicationCloudWatchLoggingOptionCommandOutput extends D
|
|
|
31
31
|
* import { KinesisAnalyticsClient, DeleteApplicationCloudWatchLoggingOptionCommand } from "@aws-sdk/client-kinesis-analytics"; // ES Modules import
|
|
32
32
|
* // const { KinesisAnalyticsClient, DeleteApplicationCloudWatchLoggingOptionCommand } = require("@aws-sdk/client-kinesis-analytics"); // CommonJS import
|
|
33
33
|
* const client = new KinesisAnalyticsClient(config);
|
|
34
|
+
* const input = { // DeleteApplicationCloudWatchLoggingOptionRequest
|
|
35
|
+
* ApplicationName: "STRING_VALUE", // required
|
|
36
|
+
* CurrentApplicationVersionId: Number("long"), // required
|
|
37
|
+
* CloudWatchLoggingOptionId: "STRING_VALUE", // required
|
|
38
|
+
* };
|
|
34
39
|
* const command = new DeleteApplicationCloudWatchLoggingOptionCommand(input);
|
|
35
40
|
* const response = await client.send(command);
|
|
36
41
|
* ```
|
|
@@ -31,6 +31,10 @@ export interface DeleteApplicationCommandOutput extends DeleteApplicationRespons
|
|
|
31
31
|
* import { KinesisAnalyticsClient, DeleteApplicationCommand } from "@aws-sdk/client-kinesis-analytics"; // ES Modules import
|
|
32
32
|
* // const { KinesisAnalyticsClient, DeleteApplicationCommand } = require("@aws-sdk/client-kinesis-analytics"); // CommonJS import
|
|
33
33
|
* const client = new KinesisAnalyticsClient(config);
|
|
34
|
+
* const input = { // DeleteApplicationRequest
|
|
35
|
+
* ApplicationName: "STRING_VALUE", // required
|
|
36
|
+
* CreateTimestamp: new Date("TIMESTAMP"), // required
|
|
37
|
+
* };
|
|
34
38
|
* const command = new DeleteApplicationCommand(input);
|
|
35
39
|
* const response = await client.send(command);
|
|
36
40
|
* ```
|
|
@@ -29,6 +29,11 @@ export interface DeleteApplicationInputProcessingConfigurationCommandOutput exte
|
|
|
29
29
|
* import { KinesisAnalyticsClient, DeleteApplicationInputProcessingConfigurationCommand } from "@aws-sdk/client-kinesis-analytics"; // ES Modules import
|
|
30
30
|
* // const { KinesisAnalyticsClient, DeleteApplicationInputProcessingConfigurationCommand } = require("@aws-sdk/client-kinesis-analytics"); // CommonJS import
|
|
31
31
|
* const client = new KinesisAnalyticsClient(config);
|
|
32
|
+
* const input = { // DeleteApplicationInputProcessingConfigurationRequest
|
|
33
|
+
* ApplicationName: "STRING_VALUE", // required
|
|
34
|
+
* CurrentApplicationVersionId: Number("long"), // required
|
|
35
|
+
* InputId: "STRING_VALUE", // required
|
|
36
|
+
* };
|
|
32
37
|
* const command = new DeleteApplicationInputProcessingConfigurationCommand(input);
|
|
33
38
|
* const response = await client.send(command);
|
|
34
39
|
* ```
|
|
@@ -31,6 +31,11 @@ export interface DeleteApplicationOutputCommandOutput extends DeleteApplicationO
|
|
|
31
31
|
* import { KinesisAnalyticsClient, DeleteApplicationOutputCommand } from "@aws-sdk/client-kinesis-analytics"; // ES Modules import
|
|
32
32
|
* // const { KinesisAnalyticsClient, DeleteApplicationOutputCommand } = require("@aws-sdk/client-kinesis-analytics"); // CommonJS import
|
|
33
33
|
* const client = new KinesisAnalyticsClient(config);
|
|
34
|
+
* const input = { // DeleteApplicationOutputRequest
|
|
35
|
+
* ApplicationName: "STRING_VALUE", // required
|
|
36
|
+
* CurrentApplicationVersionId: Number("long"), // required
|
|
37
|
+
* OutputId: "STRING_VALUE", // required
|
|
38
|
+
* };
|
|
34
39
|
* const command = new DeleteApplicationOutputCommand(input);
|
|
35
40
|
* const response = await client.send(command);
|
|
36
41
|
* ```
|
|
@@ -34,6 +34,11 @@ export interface DeleteApplicationReferenceDataSourceCommandOutput extends Delet
|
|
|
34
34
|
* import { KinesisAnalyticsClient, DeleteApplicationReferenceDataSourceCommand } from "@aws-sdk/client-kinesis-analytics"; // ES Modules import
|
|
35
35
|
* // const { KinesisAnalyticsClient, DeleteApplicationReferenceDataSourceCommand } = require("@aws-sdk/client-kinesis-analytics"); // CommonJS import
|
|
36
36
|
* const client = new KinesisAnalyticsClient(config);
|
|
37
|
+
* const input = { // DeleteApplicationReferenceDataSourceRequest
|
|
38
|
+
* ApplicationName: "STRING_VALUE", // required
|
|
39
|
+
* CurrentApplicationVersionId: Number("long"), // required
|
|
40
|
+
* ReferenceId: "STRING_VALUE", // required
|
|
41
|
+
* };
|
|
37
42
|
* const command = new DeleteApplicationReferenceDataSourceCommand(input);
|
|
38
43
|
* const response = await client.send(command);
|
|
39
44
|
* ```
|
|
@@ -35,6 +35,9 @@ export interface DescribeApplicationCommandOutput extends DescribeApplicationRes
|
|
|
35
35
|
* import { KinesisAnalyticsClient, DescribeApplicationCommand } from "@aws-sdk/client-kinesis-analytics"; // ES Modules import
|
|
36
36
|
* // const { KinesisAnalyticsClient, DescribeApplicationCommand } = require("@aws-sdk/client-kinesis-analytics"); // CommonJS import
|
|
37
37
|
* const client = new KinesisAnalyticsClient(config);
|
|
38
|
+
* const input = { // DescribeApplicationRequest
|
|
39
|
+
* ApplicationName: "STRING_VALUE", // required
|
|
40
|
+
* };
|
|
38
41
|
* const command = new DescribeApplicationCommand(input);
|
|
39
42
|
* const response = await client.send(command);
|
|
40
43
|
* ```
|
|
@@ -40,6 +40,24 @@ export interface DiscoverInputSchemaCommandOutput extends DiscoverInputSchemaRes
|
|
|
40
40
|
* import { KinesisAnalyticsClient, DiscoverInputSchemaCommand } from "@aws-sdk/client-kinesis-analytics"; // ES Modules import
|
|
41
41
|
* // const { KinesisAnalyticsClient, DiscoverInputSchemaCommand } = require("@aws-sdk/client-kinesis-analytics"); // CommonJS import
|
|
42
42
|
* const client = new KinesisAnalyticsClient(config);
|
|
43
|
+
* const input = { // DiscoverInputSchemaRequest
|
|
44
|
+
* ResourceARN: "STRING_VALUE",
|
|
45
|
+
* RoleARN: "STRING_VALUE",
|
|
46
|
+
* InputStartingPositionConfiguration: { // InputStartingPositionConfiguration
|
|
47
|
+
* InputStartingPosition: "STRING_VALUE",
|
|
48
|
+
* },
|
|
49
|
+
* S3Configuration: { // S3Configuration
|
|
50
|
+
* RoleARN: "STRING_VALUE", // required
|
|
51
|
+
* BucketARN: "STRING_VALUE", // required
|
|
52
|
+
* FileKey: "STRING_VALUE", // required
|
|
53
|
+
* },
|
|
54
|
+
* InputProcessingConfiguration: { // InputProcessingConfiguration
|
|
55
|
+
* InputLambdaProcessor: { // InputLambdaProcessor
|
|
56
|
+
* ResourceARN: "STRING_VALUE", // required
|
|
57
|
+
* RoleARN: "STRING_VALUE", // required
|
|
58
|
+
* },
|
|
59
|
+
* },
|
|
60
|
+
* };
|
|
43
61
|
* const command = new DiscoverInputSchemaCommand(input);
|
|
44
62
|
* const response = await client.send(command);
|
|
45
63
|
* ```
|
|
@@ -42,6 +42,10 @@ export interface ListApplicationsCommandOutput extends ListApplicationsResponse,
|
|
|
42
42
|
* import { KinesisAnalyticsClient, ListApplicationsCommand } from "@aws-sdk/client-kinesis-analytics"; // ES Modules import
|
|
43
43
|
* // const { KinesisAnalyticsClient, ListApplicationsCommand } = require("@aws-sdk/client-kinesis-analytics"); // CommonJS import
|
|
44
44
|
* const client = new KinesisAnalyticsClient(config);
|
|
45
|
+
* const input = { // ListApplicationsRequest
|
|
46
|
+
* Limit: Number("int"),
|
|
47
|
+
* ExclusiveStartApplicationName: "STRING_VALUE",
|
|
48
|
+
* };
|
|
45
49
|
* const command = new ListApplicationsCommand(input);
|
|
46
50
|
* const response = await client.send(command);
|
|
47
51
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
26
26
|
* import { KinesisAnalyticsClient, ListTagsForResourceCommand } from "@aws-sdk/client-kinesis-analytics"; // ES Modules import
|
|
27
27
|
* // const { KinesisAnalyticsClient, ListTagsForResourceCommand } = require("@aws-sdk/client-kinesis-analytics"); // CommonJS import
|
|
28
28
|
* const client = new KinesisAnalyticsClient(config);
|
|
29
|
+
* const input = { // ListTagsForResourceRequest
|
|
30
|
+
* ResourceARN: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new ListTagsForResourceCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -37,6 +37,17 @@ export interface StartApplicationCommandOutput extends StartApplicationResponse,
|
|
|
37
37
|
* import { KinesisAnalyticsClient, StartApplicationCommand } from "@aws-sdk/client-kinesis-analytics"; // ES Modules import
|
|
38
38
|
* // const { KinesisAnalyticsClient, StartApplicationCommand } = require("@aws-sdk/client-kinesis-analytics"); // CommonJS import
|
|
39
39
|
* const client = new KinesisAnalyticsClient(config);
|
|
40
|
+
* const input = { // StartApplicationRequest
|
|
41
|
+
* ApplicationName: "STRING_VALUE", // required
|
|
42
|
+
* InputConfigurations: [ // InputConfigurations // required
|
|
43
|
+
* { // InputConfiguration
|
|
44
|
+
* Id: "STRING_VALUE", // required
|
|
45
|
+
* InputStartingPositionConfiguration: { // InputStartingPositionConfiguration
|
|
46
|
+
* InputStartingPosition: "STRING_VALUE",
|
|
47
|
+
* },
|
|
48
|
+
* },
|
|
49
|
+
* ],
|
|
50
|
+
* };
|
|
40
51
|
* const command = new StartApplicationCommand(input);
|
|
41
52
|
* const response = await client.send(command);
|
|
42
53
|
* ```
|
|
@@ -36,6 +36,9 @@ export interface StopApplicationCommandOutput extends StopApplicationResponse, _
|
|
|
36
36
|
* import { KinesisAnalyticsClient, StopApplicationCommand } from "@aws-sdk/client-kinesis-analytics"; // ES Modules import
|
|
37
37
|
* // const { KinesisAnalyticsClient, StopApplicationCommand } = require("@aws-sdk/client-kinesis-analytics"); // CommonJS import
|
|
38
38
|
* const client = new KinesisAnalyticsClient(config);
|
|
39
|
+
* const input = { // StopApplicationRequest
|
|
40
|
+
* ApplicationName: "STRING_VALUE", // required
|
|
41
|
+
* };
|
|
39
42
|
* const command = new StopApplicationCommand(input);
|
|
40
43
|
* const response = await client.send(command);
|
|
41
44
|
* ```
|
|
@@ -27,6 +27,15 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
27
27
|
* import { KinesisAnalyticsClient, TagResourceCommand } from "@aws-sdk/client-kinesis-analytics"; // ES Modules import
|
|
28
28
|
* // const { KinesisAnalyticsClient, TagResourceCommand } = require("@aws-sdk/client-kinesis-analytics"); // CommonJS import
|
|
29
29
|
* const client = new KinesisAnalyticsClient(config);
|
|
30
|
+
* const input = { // TagResourceRequest
|
|
31
|
+
* ResourceARN: "STRING_VALUE", // required
|
|
32
|
+
* Tags: [ // Tags // required
|
|
33
|
+
* { // Tag
|
|
34
|
+
* Key: "STRING_VALUE", // required
|
|
35
|
+
* Value: "STRING_VALUE",
|
|
36
|
+
* },
|
|
37
|
+
* ],
|
|
38
|
+
* };
|
|
30
39
|
* const command = new TagResourceCommand(input);
|
|
31
40
|
* const response = await client.send(command);
|
|
32
41
|
* ```
|
|
@@ -26,6 +26,12 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
26
26
|
* import { KinesisAnalyticsClient, UntagResourceCommand } from "@aws-sdk/client-kinesis-analytics"; // ES Modules import
|
|
27
27
|
* // const { KinesisAnalyticsClient, UntagResourceCommand } = require("@aws-sdk/client-kinesis-analytics"); // CommonJS import
|
|
28
28
|
* const client = new KinesisAnalyticsClient(config);
|
|
29
|
+
* const input = { // UntagResourceRequest
|
|
30
|
+
* ResourceARN: "STRING_VALUE", // required
|
|
31
|
+
* TagKeys: [ // TagKeys // required
|
|
32
|
+
* "STRING_VALUE",
|
|
33
|
+
* ],
|
|
34
|
+
* };
|
|
29
35
|
* const command = new UntagResourceCommand(input);
|
|
30
36
|
* const response = await client.send(command);
|
|
31
37
|
* ```
|
|
@@ -35,6 +35,119 @@ export interface UpdateApplicationCommandOutput extends UpdateApplicationRespons
|
|
|
35
35
|
* import { KinesisAnalyticsClient, UpdateApplicationCommand } from "@aws-sdk/client-kinesis-analytics"; // ES Modules import
|
|
36
36
|
* // const { KinesisAnalyticsClient, UpdateApplicationCommand } = require("@aws-sdk/client-kinesis-analytics"); // CommonJS import
|
|
37
37
|
* const client = new KinesisAnalyticsClient(config);
|
|
38
|
+
* const input = { // UpdateApplicationRequest
|
|
39
|
+
* ApplicationName: "STRING_VALUE", // required
|
|
40
|
+
* CurrentApplicationVersionId: Number("long"), // required
|
|
41
|
+
* ApplicationUpdate: { // ApplicationUpdate
|
|
42
|
+
* InputUpdates: [ // InputUpdates
|
|
43
|
+
* { // InputUpdate
|
|
44
|
+
* InputId: "STRING_VALUE", // required
|
|
45
|
+
* NamePrefixUpdate: "STRING_VALUE",
|
|
46
|
+
* InputProcessingConfigurationUpdate: { // InputProcessingConfigurationUpdate
|
|
47
|
+
* InputLambdaProcessorUpdate: { // InputLambdaProcessorUpdate
|
|
48
|
+
* ResourceARNUpdate: "STRING_VALUE",
|
|
49
|
+
* RoleARNUpdate: "STRING_VALUE",
|
|
50
|
+
* },
|
|
51
|
+
* },
|
|
52
|
+
* KinesisStreamsInputUpdate: { // KinesisStreamsInputUpdate
|
|
53
|
+
* ResourceARNUpdate: "STRING_VALUE",
|
|
54
|
+
* RoleARNUpdate: "STRING_VALUE",
|
|
55
|
+
* },
|
|
56
|
+
* KinesisFirehoseInputUpdate: { // KinesisFirehoseInputUpdate
|
|
57
|
+
* ResourceARNUpdate: "STRING_VALUE",
|
|
58
|
+
* RoleARNUpdate: "STRING_VALUE",
|
|
59
|
+
* },
|
|
60
|
+
* InputSchemaUpdate: { // InputSchemaUpdate
|
|
61
|
+
* RecordFormatUpdate: { // RecordFormat
|
|
62
|
+
* RecordFormatType: "STRING_VALUE", // required
|
|
63
|
+
* MappingParameters: { // MappingParameters
|
|
64
|
+
* JSONMappingParameters: { // JSONMappingParameters
|
|
65
|
+
* RecordRowPath: "STRING_VALUE", // required
|
|
66
|
+
* },
|
|
67
|
+
* CSVMappingParameters: { // CSVMappingParameters
|
|
68
|
+
* RecordRowDelimiter: "STRING_VALUE", // required
|
|
69
|
+
* RecordColumnDelimiter: "STRING_VALUE", // required
|
|
70
|
+
* },
|
|
71
|
+
* },
|
|
72
|
+
* },
|
|
73
|
+
* RecordEncodingUpdate: "STRING_VALUE",
|
|
74
|
+
* RecordColumnUpdates: [ // RecordColumns
|
|
75
|
+
* { // RecordColumn
|
|
76
|
+
* Name: "STRING_VALUE", // required
|
|
77
|
+
* Mapping: "STRING_VALUE",
|
|
78
|
+
* SqlType: "STRING_VALUE", // required
|
|
79
|
+
* },
|
|
80
|
+
* ],
|
|
81
|
+
* },
|
|
82
|
+
* InputParallelismUpdate: { // InputParallelismUpdate
|
|
83
|
+
* CountUpdate: Number("int"),
|
|
84
|
+
* },
|
|
85
|
+
* },
|
|
86
|
+
* ],
|
|
87
|
+
* ApplicationCodeUpdate: "STRING_VALUE",
|
|
88
|
+
* OutputUpdates: [ // OutputUpdates
|
|
89
|
+
* { // OutputUpdate
|
|
90
|
+
* OutputId: "STRING_VALUE", // required
|
|
91
|
+
* NameUpdate: "STRING_VALUE",
|
|
92
|
+
* KinesisStreamsOutputUpdate: { // KinesisStreamsOutputUpdate
|
|
93
|
+
* ResourceARNUpdate: "STRING_VALUE",
|
|
94
|
+
* RoleARNUpdate: "STRING_VALUE",
|
|
95
|
+
* },
|
|
96
|
+
* KinesisFirehoseOutputUpdate: { // KinesisFirehoseOutputUpdate
|
|
97
|
+
* ResourceARNUpdate: "STRING_VALUE",
|
|
98
|
+
* RoleARNUpdate: "STRING_VALUE",
|
|
99
|
+
* },
|
|
100
|
+
* LambdaOutputUpdate: { // LambdaOutputUpdate
|
|
101
|
+
* ResourceARNUpdate: "STRING_VALUE",
|
|
102
|
+
* RoleARNUpdate: "STRING_VALUE",
|
|
103
|
+
* },
|
|
104
|
+
* DestinationSchemaUpdate: { // DestinationSchema
|
|
105
|
+
* RecordFormatType: "STRING_VALUE", // required
|
|
106
|
+
* },
|
|
107
|
+
* },
|
|
108
|
+
* ],
|
|
109
|
+
* ReferenceDataSourceUpdates: [ // ReferenceDataSourceUpdates
|
|
110
|
+
* { // ReferenceDataSourceUpdate
|
|
111
|
+
* ReferenceId: "STRING_VALUE", // required
|
|
112
|
+
* TableNameUpdate: "STRING_VALUE",
|
|
113
|
+
* S3ReferenceDataSourceUpdate: { // S3ReferenceDataSourceUpdate
|
|
114
|
+
* BucketARNUpdate: "STRING_VALUE",
|
|
115
|
+
* FileKeyUpdate: "STRING_VALUE",
|
|
116
|
+
* ReferenceRoleARNUpdate: "STRING_VALUE",
|
|
117
|
+
* },
|
|
118
|
+
* ReferenceSchemaUpdate: { // SourceSchema
|
|
119
|
+
* RecordFormat: {
|
|
120
|
+
* RecordFormatType: "STRING_VALUE", // required
|
|
121
|
+
* MappingParameters: {
|
|
122
|
+
* JSONMappingParameters: {
|
|
123
|
+
* RecordRowPath: "STRING_VALUE", // required
|
|
124
|
+
* },
|
|
125
|
+
* CSVMappingParameters: {
|
|
126
|
+
* RecordRowDelimiter: "STRING_VALUE", // required
|
|
127
|
+
* RecordColumnDelimiter: "STRING_VALUE", // required
|
|
128
|
+
* },
|
|
129
|
+
* },
|
|
130
|
+
* },
|
|
131
|
+
* RecordEncoding: "STRING_VALUE",
|
|
132
|
+
* RecordColumns: [ // required
|
|
133
|
+
* {
|
|
134
|
+
* Name: "STRING_VALUE", // required
|
|
135
|
+
* Mapping: "STRING_VALUE",
|
|
136
|
+
* SqlType: "STRING_VALUE", // required
|
|
137
|
+
* },
|
|
138
|
+
* ],
|
|
139
|
+
* },
|
|
140
|
+
* },
|
|
141
|
+
* ],
|
|
142
|
+
* CloudWatchLoggingOptionUpdates: [ // CloudWatchLoggingOptionUpdates
|
|
143
|
+
* { // CloudWatchLoggingOptionUpdate
|
|
144
|
+
* CloudWatchLoggingOptionId: "STRING_VALUE", // required
|
|
145
|
+
* LogStreamARNUpdate: "STRING_VALUE",
|
|
146
|
+
* RoleARNUpdate: "STRING_VALUE",
|
|
147
|
+
* },
|
|
148
|
+
* ],
|
|
149
|
+
* },
|
|
150
|
+
* };
|
|
38
151
|
* const command = new UpdateApplicationCommand(input);
|
|
39
152
|
* const response = await client.send(command);
|
|
40
153
|
* ```
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-kinesis-analytics",
|
|
3
3
|
"description": "AWS SDK for JavaScript Kinesis Analytics Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.301.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,9 +21,9 @@
|
|
|
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.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.301.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.300.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.301.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.296.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.296.0",
|
|
@@ -32,12 +32,12 @@
|
|
|
32
32
|
"@aws-sdk/middleware-host-header": "3.296.0",
|
|
33
33
|
"@aws-sdk/middleware-logger": "3.296.0",
|
|
34
34
|
"@aws-sdk/middleware-recursion-detection": "3.296.0",
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.300.0",
|
|
36
36
|
"@aws-sdk/middleware-serde": "3.296.0",
|
|
37
37
|
"@aws-sdk/middleware-signing": "3.299.0",
|
|
38
38
|
"@aws-sdk/middleware-stack": "3.296.0",
|
|
39
39
|
"@aws-sdk/middleware-user-agent": "3.299.0",
|
|
40
|
-
"@aws-sdk/node-config-provider": "3.
|
|
40
|
+
"@aws-sdk/node-config-provider": "3.300.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.296.0",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.296.0",
|
|
43
43
|
"@aws-sdk/smithy-client": "3.296.0",
|
|
@@ -47,11 +47,11 @@
|
|
|
47
47
|
"@aws-sdk/util-body-length-browser": "3.295.0",
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.295.0",
|
|
49
49
|
"@aws-sdk/util-defaults-mode-browser": "3.296.0",
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.300.0",
|
|
51
51
|
"@aws-sdk/util-endpoints": "3.296.0",
|
|
52
52
|
"@aws-sdk/util-retry": "3.296.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-browser": "3.299.0",
|
|
54
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
54
|
+
"@aws-sdk/util-user-agent-node": "3.300.0",
|
|
55
55
|
"@aws-sdk/util-utf8": "3.295.0",
|
|
56
56
|
"tslib": "^2.5.0"
|
|
57
57
|
},
|