@aws-sdk/client-cloudfront 3.936.0 → 3.939.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/README.md +120 -0
- package/dist-cjs/index.js +1018 -69
- package/dist-es/CloudFront.js +30 -0
- package/dist-es/commands/CreateConnectionFunctionCommand.js +16 -0
- package/dist-es/commands/CreateTrustStoreCommand.js +16 -0
- package/dist-es/commands/DeleteConnectionFunctionCommand.js +16 -0
- package/dist-es/commands/DeleteTrustStoreCommand.js +16 -0
- package/dist-es/commands/DescribeConnectionFunctionCommand.js +16 -0
- package/dist-es/commands/GetConnectionFunctionCommand.js +16 -0
- package/dist-es/commands/GetTrustStoreCommand.js +16 -0
- package/dist-es/commands/ListConnectionFunctionsCommand.js +16 -0
- package/dist-es/commands/ListDistributionsByConnectionFunctionCommand.js +16 -0
- package/dist-es/commands/ListDistributionsByTrustStoreCommand.js +16 -0
- package/dist-es/commands/ListTrustStoresCommand.js +16 -0
- package/dist-es/commands/PublishConnectionFunctionCommand.js +16 -0
- package/dist-es/commands/TestConnectionFunctionCommand.js +16 -0
- package/dist-es/commands/UpdateConnectionFunctionCommand.js +16 -0
- package/dist-es/commands/UpdateTrustStoreCommand.js +16 -0
- package/dist-es/commands/index.js +18 -3
- package/dist-es/models/enums.js +31 -8
- package/dist-es/models/errors.js +14 -14
- package/dist-es/pagination/ListConnectionFunctionsPaginator.js +4 -0
- package/dist-es/pagination/ListDistributionsByConnectionFunctionPaginator.js +4 -0
- package/dist-es/pagination/ListDistributionsByTrustStorePaginator.js +4 -0
- package/dist-es/pagination/ListTrustStoresPaginator.js +4 -0
- package/dist-es/pagination/index.js +4 -0
- package/dist-es/schemas/schemas_0.js +735 -34
- package/dist-types/CloudFront.d.ts +107 -0
- package/dist-types/CloudFrontClient.d.ts +17 -2
- package/dist-types/commands/CopyDistributionCommand.d.ts +11 -0
- package/dist-types/commands/CreateAnycastIpListCommand.d.ts +19 -0
- package/dist-types/commands/CreateConnectionFunctionCommand.d.ts +138 -0
- package/dist-types/commands/CreateDistributionCommand.d.ts +22 -0
- package/dist-types/commands/CreateDistributionWithTagsCommand.d.ts +22 -0
- package/dist-types/commands/CreateTrustStoreCommand.d.ts +117 -0
- package/dist-types/commands/DeleteConnectionFunctionCommand.d.ts +94 -0
- package/dist-types/commands/DeleteTrustStoreCommand.d.ts +91 -0
- package/dist-types/commands/DescribeConnectionFunctionCommand.d.ts +108 -0
- package/dist-types/commands/GetAnycastIpListCommand.d.ts +11 -0
- package/dist-types/commands/GetConnectionFunctionCommand.d.ts +93 -0
- package/dist-types/commands/GetDistributionCommand.d.ts +11 -0
- package/dist-types/commands/GetDistributionConfigCommand.d.ts +11 -0
- package/dist-types/commands/GetManagedCertificateDetailsCommand.d.ts +2 -1
- package/dist-types/commands/GetMonitoringSubscriptionCommand.d.ts +1 -1
- package/dist-types/commands/GetOriginAccessControlCommand.d.ts +1 -1
- package/dist-types/commands/GetOriginAccessControlConfigCommand.d.ts +1 -1
- package/dist-types/commands/GetOriginRequestPolicyCommand.d.ts +1 -1
- package/dist-types/commands/GetOriginRequestPolicyConfigCommand.d.ts +1 -1
- package/dist-types/commands/GetPublicKeyCommand.d.ts +1 -1
- package/dist-types/commands/GetPublicKeyConfigCommand.d.ts +1 -1
- package/dist-types/commands/GetRealtimeLogConfigCommand.d.ts +1 -1
- package/dist-types/commands/GetTrustStoreCommand.d.ts +92 -0
- package/dist-types/commands/ListAnycastIpListsCommand.d.ts +11 -0
- package/dist-types/commands/ListConnectionFunctionsCommand.d.ts +108 -0
- package/dist-types/commands/ListDistributionsByAnycastIpListIdCommand.d.ts +11 -0
- package/dist-types/commands/ListDistributionsByConnectionFunctionCommand.d.ts +412 -0
- package/dist-types/commands/ListDistributionsByConnectionModeCommand.d.ts +11 -0
- package/dist-types/commands/ListDistributionsByRealtimeLogConfigCommand.d.ts +11 -0
- package/dist-types/commands/ListDistributionsByTrustStoreCommand.d.ts +412 -0
- package/dist-types/commands/ListDistributionsByWebACLIdCommand.d.ts +11 -0
- package/dist-types/commands/ListDistributionsCommand.d.ts +11 -0
- package/dist-types/commands/ListTrustStoresCommand.d.ts +96 -0
- package/dist-types/commands/PublishConnectionFunctionCommand.d.ts +113 -0
- package/dist-types/commands/TestConnectionFunctionCommand.d.ts +123 -0
- package/dist-types/commands/UpdateAnycastIpListCommand.d.ts +11 -0
- package/dist-types/commands/UpdateConnectionFunctionCommand.d.ts +130 -0
- package/dist-types/commands/UpdateDistributionCommand.d.ts +22 -0
- package/dist-types/commands/UpdateDistributionWithStagingConfigCommand.d.ts +11 -0
- package/dist-types/commands/UpdateTrustStoreCommand.d.ts +107 -0
- package/dist-types/commands/index.d.ts +18 -3
- package/dist-types/models/enums.d.ts +71 -24
- package/dist-types/models/errors.d.ts +13 -13
- package/dist-types/models/models_0.d.ts +498 -314
- package/dist-types/models/models_1.d.ts +627 -3
- package/dist-types/pagination/ListConnectionFunctionsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListDistributionsByConnectionFunctionPaginator.d.ts +7 -0
- package/dist-types/pagination/ListDistributionsByTrustStorePaginator.d.ts +7 -0
- package/dist-types/pagination/ListTrustStoresPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +4 -0
- package/dist-types/schemas/schemas_0.d.ts +57 -0
- package/dist-types/ts3.4/CloudFront.d.ts +263 -0
- package/dist-types/ts3.4/CloudFrontClient.d.ts +90 -0
- package/dist-types/ts3.4/commands/CreateConnectionFunctionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateTrustStoreCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/DeleteConnectionFunctionCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/DeleteTrustStoreCommand.d.ts +45 -0
- package/dist-types/ts3.4/commands/DescribeConnectionFunctionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetConnectionFunctionCommand.d.ts +58 -0
- package/dist-types/ts3.4/commands/GetManagedCertificateDetailsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/GetMonitoringSubscriptionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetOriginAccessControlCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetOriginAccessControlConfigCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetOriginRequestPolicyCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetOriginRequestPolicyConfigCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetPublicKeyCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetPublicKeyConfigCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetRealtimeLogConfigCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetTrustStoreCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListConnectionFunctionsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListDistributionsByConnectionFunctionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListDistributionsByTrustStoreCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListTrustStoresCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/PublishConnectionFunctionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/TestConnectionFunctionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateConnectionFunctionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateTrustStoreCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/index.d.ts +18 -3
- package/dist-types/ts3.4/models/enums.d.ts +40 -11
- package/dist-types/ts3.4/models/errors.d.ts +8 -8
- package/dist-types/ts3.4/models/models_0.d.ts +131 -82
- package/dist-types/ts3.4/models/models_1.d.ts +172 -0
- package/dist-types/ts3.4/pagination/ListConnectionFunctionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListDistributionsByConnectionFunctionPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListDistributionsByTrustStorePaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListTrustStoresPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +57 -0
- package/package.json +2 -2
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
import {
|
|
9
9
|
GetOriginRequestPolicyConfigRequest,
|
|
10
10
|
GetOriginRequestPolicyConfigResult,
|
|
11
|
-
} from "../models/
|
|
11
|
+
} from "../models/models_1";
|
|
12
12
|
export { __MetadataBearer };
|
|
13
13
|
export { $Command };
|
|
14
14
|
export interface GetOriginRequestPolicyConfigCommandInput
|
|
@@ -5,7 +5,7 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../CloudFrontClient";
|
|
8
|
-
import { GetPublicKeyRequest, GetPublicKeyResult } from "../models/
|
|
8
|
+
import { GetPublicKeyRequest, GetPublicKeyResult } from "../models/models_1";
|
|
9
9
|
export { __MetadataBearer };
|
|
10
10
|
export { $Command };
|
|
11
11
|
export interface GetPublicKeyCommandInput extends GetPublicKeyRequest {}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
CloudFrontClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../CloudFrontClient";
|
|
8
|
+
import { GetTrustStoreRequest, GetTrustStoreResult } from "../models/models_1";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface GetTrustStoreCommandInput extends GetTrustStoreRequest {}
|
|
12
|
+
export interface GetTrustStoreCommandOutput
|
|
13
|
+
extends GetTrustStoreResult,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const GetTrustStoreCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: GetTrustStoreCommandInput
|
|
18
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
19
|
+
GetTrustStoreCommandInput,
|
|
20
|
+
GetTrustStoreCommandOutput,
|
|
21
|
+
CloudFrontClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
input: GetTrustStoreCommandInput
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
GetTrustStoreCommandInput,
|
|
29
|
+
GetTrustStoreCommandOutput,
|
|
30
|
+
CloudFrontClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class GetTrustStoreCommand extends GetTrustStoreCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: GetTrustStoreRequest;
|
|
40
|
+
output: GetTrustStoreResult;
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: GetTrustStoreCommandInput;
|
|
44
|
+
output: GetTrustStoreCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
CloudFrontClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../CloudFrontClient";
|
|
8
|
+
import {
|
|
9
|
+
ListConnectionFunctionsRequest,
|
|
10
|
+
ListConnectionFunctionsResult,
|
|
11
|
+
} from "../models/models_1";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListConnectionFunctionsCommandInput
|
|
15
|
+
extends ListConnectionFunctionsRequest {}
|
|
16
|
+
export interface ListConnectionFunctionsCommandOutput
|
|
17
|
+
extends ListConnectionFunctionsResult,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListConnectionFunctionsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListConnectionFunctionsCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ListConnectionFunctionsCommandInput,
|
|
24
|
+
ListConnectionFunctionsCommandOutput,
|
|
25
|
+
CloudFrontClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
...[input]: [] | [ListConnectionFunctionsCommandInput]
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ListConnectionFunctionsCommandInput,
|
|
33
|
+
ListConnectionFunctionsCommandOutput,
|
|
34
|
+
CloudFrontClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ListConnectionFunctionsCommand extends ListConnectionFunctionsCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ListConnectionFunctionsRequest;
|
|
44
|
+
output: ListConnectionFunctionsResult;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ListConnectionFunctionsCommandInput;
|
|
48
|
+
output: ListConnectionFunctionsCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
CloudFrontClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../CloudFrontClient";
|
|
8
|
+
import {
|
|
9
|
+
ListDistributionsByConnectionFunctionRequest,
|
|
10
|
+
ListDistributionsByConnectionFunctionResult,
|
|
11
|
+
} from "../models/models_1";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListDistributionsByConnectionFunctionCommandInput
|
|
15
|
+
extends ListDistributionsByConnectionFunctionRequest {}
|
|
16
|
+
export interface ListDistributionsByConnectionFunctionCommandOutput
|
|
17
|
+
extends ListDistributionsByConnectionFunctionResult,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListDistributionsByConnectionFunctionCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListDistributionsByConnectionFunctionCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ListDistributionsByConnectionFunctionCommandInput,
|
|
24
|
+
ListDistributionsByConnectionFunctionCommandOutput,
|
|
25
|
+
CloudFrontClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: ListDistributionsByConnectionFunctionCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ListDistributionsByConnectionFunctionCommandInput,
|
|
33
|
+
ListDistributionsByConnectionFunctionCommandOutput,
|
|
34
|
+
CloudFrontClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ListDistributionsByConnectionFunctionCommand extends ListDistributionsByConnectionFunctionCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ListDistributionsByConnectionFunctionRequest;
|
|
44
|
+
output: ListDistributionsByConnectionFunctionResult;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ListDistributionsByConnectionFunctionCommandInput;
|
|
48
|
+
output: ListDistributionsByConnectionFunctionCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
CloudFrontClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../CloudFrontClient";
|
|
8
|
+
import {
|
|
9
|
+
ListDistributionsByTrustStoreRequest,
|
|
10
|
+
ListDistributionsByTrustStoreResult,
|
|
11
|
+
} from "../models/models_1";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListDistributionsByTrustStoreCommandInput
|
|
15
|
+
extends ListDistributionsByTrustStoreRequest {}
|
|
16
|
+
export interface ListDistributionsByTrustStoreCommandOutput
|
|
17
|
+
extends ListDistributionsByTrustStoreResult,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListDistributionsByTrustStoreCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListDistributionsByTrustStoreCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ListDistributionsByTrustStoreCommandInput,
|
|
24
|
+
ListDistributionsByTrustStoreCommandOutput,
|
|
25
|
+
CloudFrontClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: ListDistributionsByTrustStoreCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ListDistributionsByTrustStoreCommandInput,
|
|
33
|
+
ListDistributionsByTrustStoreCommandOutput,
|
|
34
|
+
CloudFrontClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ListDistributionsByTrustStoreCommand extends ListDistributionsByTrustStoreCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ListDistributionsByTrustStoreRequest;
|
|
44
|
+
output: ListDistributionsByTrustStoreResult;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ListDistributionsByTrustStoreCommandInput;
|
|
48
|
+
output: ListDistributionsByTrustStoreCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
CloudFrontClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../CloudFrontClient";
|
|
8
|
+
import {
|
|
9
|
+
ListTrustStoresRequest,
|
|
10
|
+
ListTrustStoresResult,
|
|
11
|
+
} from "../models/models_1";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListTrustStoresCommandInput extends ListTrustStoresRequest {}
|
|
15
|
+
export interface ListTrustStoresCommandOutput
|
|
16
|
+
extends ListTrustStoresResult,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const ListTrustStoresCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: ListTrustStoresCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
ListTrustStoresCommandInput,
|
|
23
|
+
ListTrustStoresCommandOutput,
|
|
24
|
+
CloudFrontClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
...[input]: [] | [ListTrustStoresCommandInput]
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
ListTrustStoresCommandInput,
|
|
32
|
+
ListTrustStoresCommandOutput,
|
|
33
|
+
CloudFrontClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class ListTrustStoresCommand extends ListTrustStoresCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: ListTrustStoresRequest;
|
|
43
|
+
output: ListTrustStoresResult;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: ListTrustStoresCommandInput;
|
|
47
|
+
output: ListTrustStoresCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
CloudFrontClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../CloudFrontClient";
|
|
8
|
+
import {
|
|
9
|
+
PublishConnectionFunctionRequest,
|
|
10
|
+
PublishConnectionFunctionResult,
|
|
11
|
+
} from "../models/models_1";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface PublishConnectionFunctionCommandInput
|
|
15
|
+
extends PublishConnectionFunctionRequest {}
|
|
16
|
+
export interface PublishConnectionFunctionCommandOutput
|
|
17
|
+
extends PublishConnectionFunctionResult,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const PublishConnectionFunctionCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: PublishConnectionFunctionCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
PublishConnectionFunctionCommandInput,
|
|
24
|
+
PublishConnectionFunctionCommandOutput,
|
|
25
|
+
CloudFrontClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: PublishConnectionFunctionCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
PublishConnectionFunctionCommandInput,
|
|
33
|
+
PublishConnectionFunctionCommandOutput,
|
|
34
|
+
CloudFrontClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class PublishConnectionFunctionCommand extends PublishConnectionFunctionCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: PublishConnectionFunctionRequest;
|
|
44
|
+
output: PublishConnectionFunctionResult;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: PublishConnectionFunctionCommandInput;
|
|
48
|
+
output: PublishConnectionFunctionCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
CloudFrontClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../CloudFrontClient";
|
|
8
|
+
import {
|
|
9
|
+
TestConnectionFunctionRequest,
|
|
10
|
+
TestConnectionFunctionResult,
|
|
11
|
+
} from "../models/models_1";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface TestConnectionFunctionCommandInput
|
|
15
|
+
extends TestConnectionFunctionRequest {}
|
|
16
|
+
export interface TestConnectionFunctionCommandOutput
|
|
17
|
+
extends TestConnectionFunctionResult,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const TestConnectionFunctionCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: TestConnectionFunctionCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
TestConnectionFunctionCommandInput,
|
|
24
|
+
TestConnectionFunctionCommandOutput,
|
|
25
|
+
CloudFrontClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: TestConnectionFunctionCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
TestConnectionFunctionCommandInput,
|
|
33
|
+
TestConnectionFunctionCommandOutput,
|
|
34
|
+
CloudFrontClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class TestConnectionFunctionCommand extends TestConnectionFunctionCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: TestConnectionFunctionRequest;
|
|
44
|
+
output: TestConnectionFunctionResult;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: TestConnectionFunctionCommandInput;
|
|
48
|
+
output: TestConnectionFunctionCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
CloudFrontClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../CloudFrontClient";
|
|
8
|
+
import {
|
|
9
|
+
UpdateConnectionFunctionRequest,
|
|
10
|
+
UpdateConnectionFunctionResult,
|
|
11
|
+
} from "../models/models_1";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface UpdateConnectionFunctionCommandInput
|
|
15
|
+
extends UpdateConnectionFunctionRequest {}
|
|
16
|
+
export interface UpdateConnectionFunctionCommandOutput
|
|
17
|
+
extends UpdateConnectionFunctionResult,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const UpdateConnectionFunctionCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: UpdateConnectionFunctionCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
UpdateConnectionFunctionCommandInput,
|
|
24
|
+
UpdateConnectionFunctionCommandOutput,
|
|
25
|
+
CloudFrontClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: UpdateConnectionFunctionCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
UpdateConnectionFunctionCommandInput,
|
|
33
|
+
UpdateConnectionFunctionCommandOutput,
|
|
34
|
+
CloudFrontClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class UpdateConnectionFunctionCommand extends UpdateConnectionFunctionCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: UpdateConnectionFunctionRequest;
|
|
44
|
+
output: UpdateConnectionFunctionResult;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: UpdateConnectionFunctionCommandInput;
|
|
48
|
+
output: UpdateConnectionFunctionCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
CloudFrontClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../CloudFrontClient";
|
|
8
|
+
import {
|
|
9
|
+
UpdateTrustStoreRequest,
|
|
10
|
+
UpdateTrustStoreResult,
|
|
11
|
+
} from "../models/models_1";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface UpdateTrustStoreCommandInput extends UpdateTrustStoreRequest {}
|
|
15
|
+
export interface UpdateTrustStoreCommandOutput
|
|
16
|
+
extends UpdateTrustStoreResult,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const UpdateTrustStoreCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: UpdateTrustStoreCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
UpdateTrustStoreCommandInput,
|
|
23
|
+
UpdateTrustStoreCommandOutput,
|
|
24
|
+
CloudFrontClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
input: UpdateTrustStoreCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
UpdateTrustStoreCommandInput,
|
|
32
|
+
UpdateTrustStoreCommandOutput,
|
|
33
|
+
CloudFrontClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class UpdateTrustStoreCommand extends UpdateTrustStoreCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: UpdateTrustStoreRequest;
|
|
43
|
+
output: UpdateTrustStoreResult;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: UpdateTrustStoreCommandInput;
|
|
47
|
+
output: UpdateTrustStoreCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -5,6 +5,7 @@ export * from "./CopyDistributionCommand";
|
|
|
5
5
|
export * from "./CreateAnycastIpListCommand";
|
|
6
6
|
export * from "./CreateCachePolicyCommand";
|
|
7
7
|
export * from "./CreateCloudFrontOriginAccessIdentityCommand";
|
|
8
|
+
export * from "./CreateConnectionFunctionCommand";
|
|
8
9
|
export * from "./CreateConnectionGroupCommand";
|
|
9
10
|
export * from "./CreateContinuousDeploymentPolicyCommand";
|
|
10
11
|
export * from "./CreateDistributionCommand";
|
|
@@ -25,10 +26,12 @@ export * from "./CreateRealtimeLogConfigCommand";
|
|
|
25
26
|
export * from "./CreateResponseHeadersPolicyCommand";
|
|
26
27
|
export * from "./CreateStreamingDistributionCommand";
|
|
27
28
|
export * from "./CreateStreamingDistributionWithTagsCommand";
|
|
29
|
+
export * from "./CreateTrustStoreCommand";
|
|
28
30
|
export * from "./CreateVpcOriginCommand";
|
|
29
31
|
export * from "./DeleteAnycastIpListCommand";
|
|
30
32
|
export * from "./DeleteCachePolicyCommand";
|
|
31
33
|
export * from "./DeleteCloudFrontOriginAccessIdentityCommand";
|
|
34
|
+
export * from "./DeleteConnectionFunctionCommand";
|
|
32
35
|
export * from "./DeleteConnectionGroupCommand";
|
|
33
36
|
export * from "./DeleteContinuousDeploymentPolicyCommand";
|
|
34
37
|
export * from "./DeleteDistributionCommand";
|
|
@@ -46,7 +49,9 @@ export * from "./DeleteRealtimeLogConfigCommand";
|
|
|
46
49
|
export * from "./DeleteResourcePolicyCommand";
|
|
47
50
|
export * from "./DeleteResponseHeadersPolicyCommand";
|
|
48
51
|
export * from "./DeleteStreamingDistributionCommand";
|
|
52
|
+
export * from "./DeleteTrustStoreCommand";
|
|
49
53
|
export * from "./DeleteVpcOriginCommand";
|
|
54
|
+
export * from "./DescribeConnectionFunctionCommand";
|
|
50
55
|
export * from "./DescribeFunctionCommand";
|
|
51
56
|
export * from "./DescribeKeyValueStoreCommand";
|
|
52
57
|
export * from "./DisassociateDistributionTenantWebACLCommand";
|
|
@@ -56,6 +61,7 @@ export * from "./GetCachePolicyCommand";
|
|
|
56
61
|
export * from "./GetCachePolicyConfigCommand";
|
|
57
62
|
export * from "./GetCloudFrontOriginAccessIdentityCommand";
|
|
58
63
|
export * from "./GetCloudFrontOriginAccessIdentityConfigCommand";
|
|
64
|
+
export * from "./GetConnectionFunctionCommand";
|
|
59
65
|
export * from "./GetConnectionGroupByRoutingEndpointCommand";
|
|
60
66
|
export * from "./GetConnectionGroupCommand";
|
|
61
67
|
export * from "./GetContinuousDeploymentPolicyCommand";
|
|
@@ -87,24 +93,28 @@ export * from "./GetResponseHeadersPolicyCommand";
|
|
|
87
93
|
export * from "./GetResponseHeadersPolicyConfigCommand";
|
|
88
94
|
export * from "./GetStreamingDistributionCommand";
|
|
89
95
|
export * from "./GetStreamingDistributionConfigCommand";
|
|
96
|
+
export * from "./GetTrustStoreCommand";
|
|
90
97
|
export * from "./GetVpcOriginCommand";
|
|
91
98
|
export * from "./ListAnycastIpListsCommand";
|
|
92
99
|
export * from "./ListCachePoliciesCommand";
|
|
93
100
|
export * from "./ListCloudFrontOriginAccessIdentitiesCommand";
|
|
94
101
|
export * from "./ListConflictingAliasesCommand";
|
|
102
|
+
export * from "./ListConnectionFunctionsCommand";
|
|
95
103
|
export * from "./ListConnectionGroupsCommand";
|
|
96
104
|
export * from "./ListContinuousDeploymentPoliciesCommand";
|
|
97
105
|
export * from "./ListDistributionsByAnycastIpListIdCommand";
|
|
98
|
-
export * from "./ListDistributionTenantsCommand";
|
|
99
106
|
export * from "./ListDistributionsByCachePolicyIdCommand";
|
|
100
|
-
export * from "./
|
|
107
|
+
export * from "./ListDistributionsByConnectionFunctionCommand";
|
|
108
|
+
export * from "./ListDistributionTenantsCommand";
|
|
101
109
|
export * from "./ListDistributionsByConnectionModeCommand";
|
|
110
|
+
export * from "./ListDistributionTenantsByCustomizationCommand";
|
|
102
111
|
export * from "./ListDistributionsByKeyGroupCommand";
|
|
103
112
|
export * from "./ListDistributionsByOriginRequestPolicyIdCommand";
|
|
104
113
|
export * from "./ListDistributionsByOwnedResourceCommand";
|
|
105
114
|
export * from "./ListDistributionsByRealtimeLogConfigCommand";
|
|
106
|
-
export * from "./ListDistributionsByResponseHeadersPolicyIdCommand";
|
|
107
115
|
export * from "./ListDistributionsCommand";
|
|
116
|
+
export * from "./ListDistributionsByResponseHeadersPolicyIdCommand";
|
|
117
|
+
export * from "./ListDistributionsByTrustStoreCommand";
|
|
108
118
|
export * from "./ListDistributionsByVpcOriginIdCommand";
|
|
109
119
|
export * from "./ListDistributionsByWebACLIdCommand";
|
|
110
120
|
export * from "./ListDomainConflictsCommand";
|
|
@@ -122,15 +132,19 @@ export * from "./ListRealtimeLogConfigsCommand";
|
|
|
122
132
|
export * from "./ListResponseHeadersPoliciesCommand";
|
|
123
133
|
export * from "./ListStreamingDistributionsCommand";
|
|
124
134
|
export * from "./ListTagsForResourceCommand";
|
|
135
|
+
export * from "./ListTrustStoresCommand";
|
|
125
136
|
export * from "./ListVpcOriginsCommand";
|
|
137
|
+
export * from "./PublishConnectionFunctionCommand";
|
|
126
138
|
export * from "./PublishFunctionCommand";
|
|
127
139
|
export * from "./PutResourcePolicyCommand";
|
|
128
140
|
export * from "./TagResourceCommand";
|
|
141
|
+
export * from "./TestConnectionFunctionCommand";
|
|
129
142
|
export * from "./TestFunctionCommand";
|
|
130
143
|
export * from "./UntagResourceCommand";
|
|
131
144
|
export * from "./UpdateAnycastIpListCommand";
|
|
132
145
|
export * from "./UpdateCachePolicyCommand";
|
|
133
146
|
export * from "./UpdateCloudFrontOriginAccessIdentityCommand";
|
|
147
|
+
export * from "./UpdateConnectionFunctionCommand";
|
|
134
148
|
export * from "./UpdateConnectionGroupCommand";
|
|
135
149
|
export * from "./UpdateContinuousDeploymentPolicyCommand";
|
|
136
150
|
export * from "./UpdateDistributionCommand";
|
|
@@ -148,5 +162,6 @@ export * from "./UpdatePublicKeyCommand";
|
|
|
148
162
|
export * from "./UpdateRealtimeLogConfigCommand";
|
|
149
163
|
export * from "./UpdateResponseHeadersPolicyCommand";
|
|
150
164
|
export * from "./UpdateStreamingDistributionCommand";
|
|
165
|
+
export * from "./UpdateTrustStoreCommand";
|
|
151
166
|
export * from "./UpdateVpcOriginCommand";
|
|
152
167
|
export * from "./VerifyDnsConfigurationCommand";
|