@aws-sdk/client-kinesis-analytics-v2 3.168.0 → 3.170.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/CHANGELOG.md +16 -0
- package/dist-types/ts3.4/KinesisAnalyticsV2.d.ts +610 -160
- package/dist-types/ts3.4/KinesisAnalyticsV2Client.d.ts +316 -104
- package/dist-types/ts3.4/commands/AddApplicationCloudWatchLoggingOptionCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/AddApplicationInputCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/AddApplicationInputProcessingConfigurationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/AddApplicationOutputCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/AddApplicationReferenceDataSourceCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/AddApplicationVpcConfigurationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateApplicationCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/CreateApplicationPresignedUrlCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateApplicationSnapshotCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteApplicationCloudWatchLoggingOptionCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteApplicationCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/DeleteApplicationInputProcessingConfigurationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteApplicationOutputCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteApplicationReferenceDataSourceCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteApplicationSnapshotCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteApplicationVpcConfigurationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeApplicationCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/DescribeApplicationSnapshotCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeApplicationVersionCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DiscoverInputSchemaCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ListApplicationSnapshotsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListApplicationVersionsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListApplicationsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/RollbackApplicationCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/StartApplicationCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/StopApplicationCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateApplicationCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/UpdateApplicationMaintenanceConfigurationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/index.d.ts +31 -31
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +5 -5
- package/dist-types/ts3.4/models/KinesisAnalyticsV2ServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +2152 -1944
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +377 -95
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +68 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +68 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +69 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +13 -11
- package/package.json +34 -34
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
KinesisAnalyticsV2ClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../KinesisAnalyticsV2Client";
|
|
13
|
+
import {
|
|
14
|
+
AddApplicationOutputRequest,
|
|
15
|
+
AddApplicationOutputResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface AddApplicationOutputCommandInput
|
|
18
|
+
extends AddApplicationOutputRequest {}
|
|
19
|
+
export interface AddApplicationOutputCommandOutput
|
|
20
|
+
extends AddApplicationOutputResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class AddApplicationOutputCommand extends $Command<
|
|
24
|
+
AddApplicationOutputCommandInput,
|
|
25
|
+
AddApplicationOutputCommandOutput,
|
|
26
|
+
KinesisAnalyticsV2ClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: AddApplicationOutputCommandInput;
|
|
29
|
+
constructor(input: AddApplicationOutputCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: KinesisAnalyticsV2ClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
AddApplicationOutputCommandInput,
|
|
37
|
+
AddApplicationOutputCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
KinesisAnalyticsV2ClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../KinesisAnalyticsV2Client";
|
|
13
|
+
import {
|
|
14
|
+
AddApplicationReferenceDataSourceRequest,
|
|
15
|
+
AddApplicationReferenceDataSourceResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface AddApplicationReferenceDataSourceCommandInput
|
|
18
|
+
extends AddApplicationReferenceDataSourceRequest {}
|
|
19
|
+
export interface AddApplicationReferenceDataSourceCommandOutput
|
|
20
|
+
extends AddApplicationReferenceDataSourceResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class AddApplicationReferenceDataSourceCommand extends $Command<
|
|
24
|
+
AddApplicationReferenceDataSourceCommandInput,
|
|
25
|
+
AddApplicationReferenceDataSourceCommandOutput,
|
|
26
|
+
KinesisAnalyticsV2ClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: AddApplicationReferenceDataSourceCommandInput;
|
|
29
|
+
constructor(input: AddApplicationReferenceDataSourceCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: KinesisAnalyticsV2ClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
AddApplicationReferenceDataSourceCommandInput,
|
|
37
|
+
AddApplicationReferenceDataSourceCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
KinesisAnalyticsV2ClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../KinesisAnalyticsV2Client";
|
|
13
|
+
import {
|
|
14
|
+
AddApplicationVpcConfigurationRequest,
|
|
15
|
+
AddApplicationVpcConfigurationResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface AddApplicationVpcConfigurationCommandInput
|
|
18
|
+
extends AddApplicationVpcConfigurationRequest {}
|
|
19
|
+
export interface AddApplicationVpcConfigurationCommandOutput
|
|
20
|
+
extends AddApplicationVpcConfigurationResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class AddApplicationVpcConfigurationCommand extends $Command<
|
|
24
|
+
AddApplicationVpcConfigurationCommandInput,
|
|
25
|
+
AddApplicationVpcConfigurationCommandOutput,
|
|
26
|
+
KinesisAnalyticsV2ClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: AddApplicationVpcConfigurationCommandInput;
|
|
29
|
+
constructor(input: AddApplicationVpcConfigurationCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: KinesisAnalyticsV2ClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
AddApplicationVpcConfigurationCommandInput,
|
|
37
|
+
AddApplicationVpcConfigurationCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,38 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
KinesisAnalyticsV2ClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../KinesisAnalyticsV2Client";
|
|
13
|
+
import {
|
|
14
|
+
CreateApplicationRequest,
|
|
15
|
+
CreateApplicationResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface CreateApplicationCommandInput
|
|
18
|
+
extends CreateApplicationRequest {}
|
|
19
|
+
export interface CreateApplicationCommandOutput
|
|
20
|
+
extends CreateApplicationResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class CreateApplicationCommand extends $Command<
|
|
24
|
+
CreateApplicationCommandInput,
|
|
25
|
+
CreateApplicationCommandOutput,
|
|
26
|
+
KinesisAnalyticsV2ClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: CreateApplicationCommandInput;
|
|
29
|
+
constructor(input: CreateApplicationCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: KinesisAnalyticsV2ClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<CreateApplicationCommandInput, CreateApplicationCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
KinesisAnalyticsV2ClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../KinesisAnalyticsV2Client";
|
|
13
|
+
import {
|
|
14
|
+
CreateApplicationPresignedUrlRequest,
|
|
15
|
+
CreateApplicationPresignedUrlResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface CreateApplicationPresignedUrlCommandInput
|
|
18
|
+
extends CreateApplicationPresignedUrlRequest {}
|
|
19
|
+
export interface CreateApplicationPresignedUrlCommandOutput
|
|
20
|
+
extends CreateApplicationPresignedUrlResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class CreateApplicationPresignedUrlCommand extends $Command<
|
|
24
|
+
CreateApplicationPresignedUrlCommandInput,
|
|
25
|
+
CreateApplicationPresignedUrlCommandOutput,
|
|
26
|
+
KinesisAnalyticsV2ClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: CreateApplicationPresignedUrlCommandInput;
|
|
29
|
+
constructor(input: CreateApplicationPresignedUrlCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: KinesisAnalyticsV2ClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
CreateApplicationPresignedUrlCommandInput,
|
|
37
|
+
CreateApplicationPresignedUrlCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
KinesisAnalyticsV2ClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../KinesisAnalyticsV2Client";
|
|
13
|
+
import {
|
|
14
|
+
CreateApplicationSnapshotRequest,
|
|
15
|
+
CreateApplicationSnapshotResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface CreateApplicationSnapshotCommandInput
|
|
18
|
+
extends CreateApplicationSnapshotRequest {}
|
|
19
|
+
export interface CreateApplicationSnapshotCommandOutput
|
|
20
|
+
extends CreateApplicationSnapshotResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class CreateApplicationSnapshotCommand extends $Command<
|
|
24
|
+
CreateApplicationSnapshotCommandInput,
|
|
25
|
+
CreateApplicationSnapshotCommandOutput,
|
|
26
|
+
KinesisAnalyticsV2ClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: CreateApplicationSnapshotCommandInput;
|
|
29
|
+
constructor(input: CreateApplicationSnapshotCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: KinesisAnalyticsV2ClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
CreateApplicationSnapshotCommandInput,
|
|
37
|
+
CreateApplicationSnapshotCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
KinesisAnalyticsV2ClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../KinesisAnalyticsV2Client";
|
|
13
|
+
import {
|
|
14
|
+
DeleteApplicationCloudWatchLoggingOptionRequest,
|
|
15
|
+
DeleteApplicationCloudWatchLoggingOptionResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DeleteApplicationCloudWatchLoggingOptionCommandInput
|
|
18
|
+
extends DeleteApplicationCloudWatchLoggingOptionRequest {}
|
|
19
|
+
export interface DeleteApplicationCloudWatchLoggingOptionCommandOutput
|
|
20
|
+
extends DeleteApplicationCloudWatchLoggingOptionResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class DeleteApplicationCloudWatchLoggingOptionCommand extends $Command<
|
|
24
|
+
DeleteApplicationCloudWatchLoggingOptionCommandInput,
|
|
25
|
+
DeleteApplicationCloudWatchLoggingOptionCommandOutput,
|
|
26
|
+
KinesisAnalyticsV2ClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DeleteApplicationCloudWatchLoggingOptionCommandInput;
|
|
29
|
+
constructor(input: DeleteApplicationCloudWatchLoggingOptionCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: KinesisAnalyticsV2ClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
DeleteApplicationCloudWatchLoggingOptionCommandInput,
|
|
37
|
+
DeleteApplicationCloudWatchLoggingOptionCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,38 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
KinesisAnalyticsV2ClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../KinesisAnalyticsV2Client";
|
|
13
|
+
import {
|
|
14
|
+
DeleteApplicationRequest,
|
|
15
|
+
DeleteApplicationResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DeleteApplicationCommandInput
|
|
18
|
+
extends DeleteApplicationRequest {}
|
|
19
|
+
export interface DeleteApplicationCommandOutput
|
|
20
|
+
extends DeleteApplicationResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class DeleteApplicationCommand extends $Command<
|
|
24
|
+
DeleteApplicationCommandInput,
|
|
25
|
+
DeleteApplicationCommandOutput,
|
|
26
|
+
KinesisAnalyticsV2ClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DeleteApplicationCommandInput;
|
|
29
|
+
constructor(input: DeleteApplicationCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: KinesisAnalyticsV2ClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<DeleteApplicationCommandInput, DeleteApplicationCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
KinesisAnalyticsV2ClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../KinesisAnalyticsV2Client";
|
|
13
|
+
import {
|
|
14
|
+
DeleteApplicationInputProcessingConfigurationRequest,
|
|
15
|
+
DeleteApplicationInputProcessingConfigurationResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DeleteApplicationInputProcessingConfigurationCommandInput
|
|
18
|
+
extends DeleteApplicationInputProcessingConfigurationRequest {}
|
|
19
|
+
export interface DeleteApplicationInputProcessingConfigurationCommandOutput
|
|
20
|
+
extends DeleteApplicationInputProcessingConfigurationResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class DeleteApplicationInputProcessingConfigurationCommand extends $Command<
|
|
24
|
+
DeleteApplicationInputProcessingConfigurationCommandInput,
|
|
25
|
+
DeleteApplicationInputProcessingConfigurationCommandOutput,
|
|
26
|
+
KinesisAnalyticsV2ClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DeleteApplicationInputProcessingConfigurationCommandInput;
|
|
29
|
+
constructor(input: DeleteApplicationInputProcessingConfigurationCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: KinesisAnalyticsV2ClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
DeleteApplicationInputProcessingConfigurationCommandInput,
|
|
37
|
+
DeleteApplicationInputProcessingConfigurationCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
KinesisAnalyticsV2ClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../KinesisAnalyticsV2Client";
|
|
13
|
+
import {
|
|
14
|
+
DeleteApplicationOutputRequest,
|
|
15
|
+
DeleteApplicationOutputResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DeleteApplicationOutputCommandInput
|
|
18
|
+
extends DeleteApplicationOutputRequest {}
|
|
19
|
+
export interface DeleteApplicationOutputCommandOutput
|
|
20
|
+
extends DeleteApplicationOutputResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class DeleteApplicationOutputCommand extends $Command<
|
|
24
|
+
DeleteApplicationOutputCommandInput,
|
|
25
|
+
DeleteApplicationOutputCommandOutput,
|
|
26
|
+
KinesisAnalyticsV2ClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DeleteApplicationOutputCommandInput;
|
|
29
|
+
constructor(input: DeleteApplicationOutputCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: KinesisAnalyticsV2ClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
DeleteApplicationOutputCommandInput,
|
|
37
|
+
DeleteApplicationOutputCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|