@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
|
@@ -6,24 +6,30 @@ import {
|
|
|
6
6
|
FunctionStage,
|
|
7
7
|
HttpVersion,
|
|
8
8
|
IpAddressType,
|
|
9
|
+
ManagedCertificateStatus,
|
|
9
10
|
OriginAccessControlOriginTypes,
|
|
10
11
|
OriginAccessControlSigningBehaviors,
|
|
11
12
|
OriginAccessControlSigningProtocols,
|
|
12
13
|
OriginRequestPolicyType,
|
|
13
14
|
PriceClass,
|
|
14
15
|
ResponseHeadersPolicyType,
|
|
16
|
+
TrustStoreStatus,
|
|
17
|
+
ValidationTokenHost,
|
|
15
18
|
} from "./enums";
|
|
16
19
|
import {
|
|
17
20
|
Aliases,
|
|
18
21
|
AliasICPRecordal,
|
|
19
22
|
AnycastIpList,
|
|
20
23
|
AnycastIpListCollection,
|
|
24
|
+
CaCertificatesBundleSource,
|
|
21
25
|
CacheBehaviors,
|
|
22
26
|
CachePolicy,
|
|
23
27
|
CachePolicyConfig,
|
|
24
28
|
CachePolicyList,
|
|
25
29
|
CloudFrontOriginAccessIdentity,
|
|
26
30
|
CloudFrontOriginAccessIdentityConfig,
|
|
31
|
+
ConnectionFunctionAssociation,
|
|
32
|
+
ConnectionFunctionSummary,
|
|
27
33
|
ConnectionGroup,
|
|
28
34
|
ContentTypeProfileConfig,
|
|
29
35
|
ContinuousDeploymentPolicy,
|
|
@@ -48,6 +54,7 @@ import {
|
|
|
48
54
|
KeyGroupConfig,
|
|
49
55
|
KeyValueStore,
|
|
50
56
|
ManagedCertificateRequest,
|
|
57
|
+
MonitoringSubscription,
|
|
51
58
|
OriginAccessControl,
|
|
52
59
|
OriginAccessControlConfig,
|
|
53
60
|
OriginGroups,
|
|
@@ -67,10 +74,81 @@ import {
|
|
|
67
74
|
StreamingDistributionConfig,
|
|
68
75
|
Tags,
|
|
69
76
|
TrustedSigners,
|
|
77
|
+
TrustStore,
|
|
70
78
|
ViewerCertificate,
|
|
79
|
+
ViewerMtlsConfig,
|
|
71
80
|
VpcOrigin,
|
|
72
81
|
VpcOriginEndpointConfig,
|
|
73
82
|
} from "./models_0";
|
|
83
|
+
export interface ValidationTokenDetail {
|
|
84
|
+
Domain: string | undefined;
|
|
85
|
+
RedirectTo?: string | undefined;
|
|
86
|
+
RedirectFrom?: string | undefined;
|
|
87
|
+
}
|
|
88
|
+
export interface ManagedCertificateDetails {
|
|
89
|
+
CertificateArn?: string | undefined;
|
|
90
|
+
CertificateStatus?: ManagedCertificateStatus | undefined;
|
|
91
|
+
ValidationTokenHost?: ValidationTokenHost | undefined;
|
|
92
|
+
ValidationTokenDetails?: ValidationTokenDetail[] | undefined;
|
|
93
|
+
}
|
|
94
|
+
export interface GetManagedCertificateDetailsResult {
|
|
95
|
+
ManagedCertificateDetails?: ManagedCertificateDetails | undefined;
|
|
96
|
+
}
|
|
97
|
+
export interface GetMonitoringSubscriptionRequest {
|
|
98
|
+
DistributionId: string | undefined;
|
|
99
|
+
}
|
|
100
|
+
export interface GetMonitoringSubscriptionResult {
|
|
101
|
+
MonitoringSubscription?: MonitoringSubscription | undefined;
|
|
102
|
+
}
|
|
103
|
+
export interface GetOriginAccessControlRequest {
|
|
104
|
+
Id: string | undefined;
|
|
105
|
+
}
|
|
106
|
+
export interface GetOriginAccessControlResult {
|
|
107
|
+
OriginAccessControl?: OriginAccessControl | undefined;
|
|
108
|
+
ETag?: string | undefined;
|
|
109
|
+
}
|
|
110
|
+
export interface GetOriginAccessControlConfigRequest {
|
|
111
|
+
Id: string | undefined;
|
|
112
|
+
}
|
|
113
|
+
export interface GetOriginAccessControlConfigResult {
|
|
114
|
+
OriginAccessControlConfig?: OriginAccessControlConfig | undefined;
|
|
115
|
+
ETag?: string | undefined;
|
|
116
|
+
}
|
|
117
|
+
export interface GetOriginRequestPolicyRequest {
|
|
118
|
+
Id: string | undefined;
|
|
119
|
+
}
|
|
120
|
+
export interface GetOriginRequestPolicyResult {
|
|
121
|
+
OriginRequestPolicy?: OriginRequestPolicy | undefined;
|
|
122
|
+
ETag?: string | undefined;
|
|
123
|
+
}
|
|
124
|
+
export interface GetOriginRequestPolicyConfigRequest {
|
|
125
|
+
Id: string | undefined;
|
|
126
|
+
}
|
|
127
|
+
export interface GetOriginRequestPolicyConfigResult {
|
|
128
|
+
OriginRequestPolicyConfig?: OriginRequestPolicyConfig | undefined;
|
|
129
|
+
ETag?: string | undefined;
|
|
130
|
+
}
|
|
131
|
+
export interface GetPublicKeyRequest {
|
|
132
|
+
Id: string | undefined;
|
|
133
|
+
}
|
|
134
|
+
export interface GetPublicKeyResult {
|
|
135
|
+
PublicKey?: PublicKey | undefined;
|
|
136
|
+
ETag?: string | undefined;
|
|
137
|
+
}
|
|
138
|
+
export interface GetPublicKeyConfigRequest {
|
|
139
|
+
Id: string | undefined;
|
|
140
|
+
}
|
|
141
|
+
export interface GetPublicKeyConfigResult {
|
|
142
|
+
PublicKeyConfig?: PublicKeyConfig | undefined;
|
|
143
|
+
ETag?: string | undefined;
|
|
144
|
+
}
|
|
145
|
+
export interface GetRealtimeLogConfigRequest {
|
|
146
|
+
Name?: string | undefined;
|
|
147
|
+
ARN?: string | undefined;
|
|
148
|
+
}
|
|
149
|
+
export interface GetRealtimeLogConfigResult {
|
|
150
|
+
RealtimeLogConfig?: RealtimeLogConfig | undefined;
|
|
151
|
+
}
|
|
74
152
|
export interface GetResourcePolicyRequest {
|
|
75
153
|
ResourceArn: string | undefined;
|
|
76
154
|
}
|
|
@@ -106,6 +184,13 @@ export interface GetStreamingDistributionConfigResult {
|
|
|
106
184
|
StreamingDistributionConfig?: StreamingDistributionConfig | undefined;
|
|
107
185
|
ETag?: string | undefined;
|
|
108
186
|
}
|
|
187
|
+
export interface GetTrustStoreRequest {
|
|
188
|
+
Identifier: string | undefined;
|
|
189
|
+
}
|
|
190
|
+
export interface GetTrustStoreResult {
|
|
191
|
+
TrustStore?: TrustStore | undefined;
|
|
192
|
+
ETag?: string | undefined;
|
|
193
|
+
}
|
|
109
194
|
export interface GetVpcOriginRequest {
|
|
110
195
|
Id: string | undefined;
|
|
111
196
|
}
|
|
@@ -170,6 +255,15 @@ export interface ConflictingAliasesList {
|
|
|
170
255
|
export interface ListConflictingAliasesResult {
|
|
171
256
|
ConflictingAliasesList?: ConflictingAliasesList | undefined;
|
|
172
257
|
}
|
|
258
|
+
export interface ListConnectionFunctionsRequest {
|
|
259
|
+
Marker?: string | undefined;
|
|
260
|
+
MaxItems?: number | undefined;
|
|
261
|
+
Stage?: FunctionStage | undefined;
|
|
262
|
+
}
|
|
263
|
+
export interface ListConnectionFunctionsResult {
|
|
264
|
+
NextMarker?: string | undefined;
|
|
265
|
+
ConnectionFunctions?: ConnectionFunctionSummary[] | undefined;
|
|
266
|
+
}
|
|
173
267
|
export interface ConnectionGroupAssociationFilter {
|
|
174
268
|
AnycastIpListId?: string | undefined;
|
|
175
269
|
}
|
|
@@ -240,6 +334,8 @@ export interface DistributionSummary {
|
|
|
240
334
|
Staging: boolean | undefined;
|
|
241
335
|
ConnectionMode?: ConnectionMode | undefined;
|
|
242
336
|
AnycastIpListId?: string | undefined;
|
|
337
|
+
ViewerMtlsConfig?: ViewerMtlsConfig | undefined;
|
|
338
|
+
ConnectionFunctionAssociation?: ConnectionFunctionAssociation | undefined;
|
|
243
339
|
}
|
|
244
340
|
export interface DistributionList {
|
|
245
341
|
Marker: string | undefined;
|
|
@@ -276,6 +372,14 @@ export interface DistributionIdList {
|
|
|
276
372
|
export interface ListDistributionsByCachePolicyIdResult {
|
|
277
373
|
DistributionIdList?: DistributionIdList | undefined;
|
|
278
374
|
}
|
|
375
|
+
export interface ListDistributionsByConnectionFunctionRequest {
|
|
376
|
+
Marker?: string | undefined;
|
|
377
|
+
MaxItems?: number | undefined;
|
|
378
|
+
ConnectionFunctionIdentifier: string | undefined;
|
|
379
|
+
}
|
|
380
|
+
export interface ListDistributionsByConnectionFunctionResult {
|
|
381
|
+
DistributionList?: DistributionList | undefined;
|
|
382
|
+
}
|
|
279
383
|
export interface ListDistributionsByConnectionModeRequest {
|
|
280
384
|
Marker?: string | undefined;
|
|
281
385
|
MaxItems?: number | undefined;
|
|
@@ -337,6 +441,14 @@ export interface ListDistributionsByResponseHeadersPolicyIdRequest {
|
|
|
337
441
|
export interface ListDistributionsByResponseHeadersPolicyIdResult {
|
|
338
442
|
DistributionIdList?: DistributionIdList | undefined;
|
|
339
443
|
}
|
|
444
|
+
export interface ListDistributionsByTrustStoreRequest {
|
|
445
|
+
TrustStoreIdentifier: string | undefined;
|
|
446
|
+
Marker?: string | undefined;
|
|
447
|
+
MaxItems?: number | undefined;
|
|
448
|
+
}
|
|
449
|
+
export interface ListDistributionsByTrustStoreResult {
|
|
450
|
+
DistributionList?: DistributionList | undefined;
|
|
451
|
+
}
|
|
340
452
|
export interface ListDistributionsByVpcOriginIdRequest {
|
|
341
453
|
Marker?: string | undefined;
|
|
342
454
|
MaxItems?: number | undefined;
|
|
@@ -650,6 +762,24 @@ export interface ListTagsForResourceRequest {
|
|
|
650
762
|
export interface ListTagsForResourceResult {
|
|
651
763
|
Tags: Tags | undefined;
|
|
652
764
|
}
|
|
765
|
+
export interface ListTrustStoresRequest {
|
|
766
|
+
Marker?: string | undefined;
|
|
767
|
+
MaxItems?: number | undefined;
|
|
768
|
+
}
|
|
769
|
+
export interface TrustStoreSummary {
|
|
770
|
+
Id: string | undefined;
|
|
771
|
+
Arn: string | undefined;
|
|
772
|
+
Name: string | undefined;
|
|
773
|
+
Status: TrustStoreStatus | undefined;
|
|
774
|
+
NumberOfCaCertificates: number | undefined;
|
|
775
|
+
LastModifiedTime: Date | undefined;
|
|
776
|
+
Reason?: string | undefined;
|
|
777
|
+
ETag: string | undefined;
|
|
778
|
+
}
|
|
779
|
+
export interface ListTrustStoresResult {
|
|
780
|
+
NextMarker?: string | undefined;
|
|
781
|
+
TrustStoreList?: TrustStoreSummary[] | undefined;
|
|
782
|
+
}
|
|
653
783
|
export interface ListVpcOriginsRequest {
|
|
654
784
|
Marker?: string | undefined;
|
|
655
785
|
MaxItems?: number | undefined;
|
|
@@ -675,6 +805,13 @@ export interface VpcOriginList {
|
|
|
675
805
|
export interface ListVpcOriginsResult {
|
|
676
806
|
VpcOriginList?: VpcOriginList | undefined;
|
|
677
807
|
}
|
|
808
|
+
export interface PublishConnectionFunctionRequest {
|
|
809
|
+
Id: string | undefined;
|
|
810
|
+
IfMatch: string | undefined;
|
|
811
|
+
}
|
|
812
|
+
export interface PublishConnectionFunctionResult {
|
|
813
|
+
ConnectionFunctionSummary?: ConnectionFunctionSummary | undefined;
|
|
814
|
+
}
|
|
678
815
|
export interface PublishFunctionRequest {
|
|
679
816
|
Name: string | undefined;
|
|
680
817
|
IfMatch: string | undefined;
|
|
@@ -693,6 +830,22 @@ export interface TagResourceRequest {
|
|
|
693
830
|
Resource: string | undefined;
|
|
694
831
|
Tags: Tags | undefined;
|
|
695
832
|
}
|
|
833
|
+
export interface TestConnectionFunctionRequest {
|
|
834
|
+
Id: string | undefined;
|
|
835
|
+
IfMatch: string | undefined;
|
|
836
|
+
Stage?: FunctionStage | undefined;
|
|
837
|
+
ConnectionObject: Uint8Array | undefined;
|
|
838
|
+
}
|
|
839
|
+
export interface ConnectionFunctionTestResult {
|
|
840
|
+
ConnectionFunctionSummary?: ConnectionFunctionSummary | undefined;
|
|
841
|
+
ComputeUtilization?: string | undefined;
|
|
842
|
+
ConnectionFunctionExecutionLogs?: string[] | undefined;
|
|
843
|
+
ConnectionFunctionErrorMessage?: string | undefined;
|
|
844
|
+
ConnectionFunctionOutput?: string | undefined;
|
|
845
|
+
}
|
|
846
|
+
export interface TestConnectionFunctionResult {
|
|
847
|
+
ConnectionFunctionTestResult?: ConnectionFunctionTestResult | undefined;
|
|
848
|
+
}
|
|
696
849
|
export interface TestFunctionRequest {
|
|
697
850
|
Name: string | undefined;
|
|
698
851
|
IfMatch: string | undefined;
|
|
@@ -745,6 +898,16 @@ export interface UpdateCloudFrontOriginAccessIdentityResult {
|
|
|
745
898
|
CloudFrontOriginAccessIdentity?: CloudFrontOriginAccessIdentity | undefined;
|
|
746
899
|
ETag?: string | undefined;
|
|
747
900
|
}
|
|
901
|
+
export interface UpdateConnectionFunctionRequest {
|
|
902
|
+
Id: string | undefined;
|
|
903
|
+
IfMatch: string | undefined;
|
|
904
|
+
ConnectionFunctionConfig: FunctionConfig | undefined;
|
|
905
|
+
ConnectionFunctionCode: Uint8Array | undefined;
|
|
906
|
+
}
|
|
907
|
+
export interface UpdateConnectionFunctionResult {
|
|
908
|
+
ConnectionFunctionSummary?: ConnectionFunctionSummary | undefined;
|
|
909
|
+
ETag?: string | undefined;
|
|
910
|
+
}
|
|
748
911
|
export interface UpdateConnectionGroupRequest {
|
|
749
912
|
Id: string | undefined;
|
|
750
913
|
Ipv6Enabled?: boolean | undefined;
|
|
@@ -913,6 +1076,15 @@ export interface UpdateStreamingDistributionResult {
|
|
|
913
1076
|
StreamingDistribution?: StreamingDistribution | undefined;
|
|
914
1077
|
ETag?: string | undefined;
|
|
915
1078
|
}
|
|
1079
|
+
export interface UpdateTrustStoreRequest {
|
|
1080
|
+
Id: string | undefined;
|
|
1081
|
+
CaCertificatesBundleSource: CaCertificatesBundleSource | undefined;
|
|
1082
|
+
IfMatch: string | undefined;
|
|
1083
|
+
}
|
|
1084
|
+
export interface UpdateTrustStoreResult {
|
|
1085
|
+
TrustStore?: TrustStore | undefined;
|
|
1086
|
+
ETag?: string | undefined;
|
|
1087
|
+
}
|
|
916
1088
|
export interface UpdateVpcOriginRequest {
|
|
917
1089
|
VpcOriginEndpointConfig: VpcOriginEndpointConfig | undefined;
|
|
918
1090
|
Id: string | undefined;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListConnectionFunctionsCommandInput,
|
|
4
|
+
ListConnectionFunctionsCommandOutput,
|
|
5
|
+
} from "../commands/ListConnectionFunctionsCommand";
|
|
6
|
+
import { CloudFrontPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListConnectionFunctions: (
|
|
8
|
+
config: CloudFrontPaginationConfiguration,
|
|
9
|
+
input: ListConnectionFunctionsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListConnectionFunctionsCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListDistributionsByConnectionFunctionCommandInput,
|
|
4
|
+
ListDistributionsByConnectionFunctionCommandOutput,
|
|
5
|
+
} from "../commands/ListDistributionsByConnectionFunctionCommand";
|
|
6
|
+
import { CloudFrontPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListDistributionsByConnectionFunction: (
|
|
8
|
+
config: CloudFrontPaginationConfiguration,
|
|
9
|
+
input: ListDistributionsByConnectionFunctionCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListDistributionsByConnectionFunctionCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListDistributionsByTrustStoreCommandInput,
|
|
4
|
+
ListDistributionsByTrustStoreCommandOutput,
|
|
5
|
+
} from "../commands/ListDistributionsByTrustStoreCommand";
|
|
6
|
+
import { CloudFrontPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListDistributionsByTrustStore: (
|
|
8
|
+
config: CloudFrontPaginationConfiguration,
|
|
9
|
+
input: ListDistributionsByTrustStoreCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListDistributionsByTrustStoreCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListTrustStoresCommandInput,
|
|
4
|
+
ListTrustStoresCommandOutput,
|
|
5
|
+
} from "../commands/ListTrustStoresCommand";
|
|
6
|
+
import { CloudFrontPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListTrustStores: (
|
|
8
|
+
config: CloudFrontPaginationConfiguration,
|
|
9
|
+
input: ListTrustStoresCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListTrustStoresCommandOutput>;
|
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
export * from "./Interfaces";
|
|
2
2
|
export * from "./ListCloudFrontOriginAccessIdentitiesPaginator";
|
|
3
|
+
export * from "./ListConnectionFunctionsPaginator";
|
|
3
4
|
export * from "./ListConnectionGroupsPaginator";
|
|
4
5
|
export * from "./ListDistributionTenantsByCustomizationPaginator";
|
|
5
6
|
export * from "./ListDistributionTenantsPaginator";
|
|
7
|
+
export * from "./ListDistributionsByConnectionFunctionPaginator";
|
|
6
8
|
export * from "./ListDistributionsByConnectionModePaginator";
|
|
9
|
+
export * from "./ListDistributionsByTrustStorePaginator";
|
|
7
10
|
export * from "./ListDistributionsPaginator";
|
|
8
11
|
export * from "./ListDomainConflictsPaginator";
|
|
9
12
|
export * from "./ListInvalidationsForDistributionTenantPaginator";
|
|
@@ -12,3 +15,4 @@ export * from "./ListKeyValueStoresPaginator";
|
|
|
12
15
|
export * from "./ListOriginAccessControlsPaginator";
|
|
13
16
|
export * from "./ListPublicKeysPaginator";
|
|
14
17
|
export * from "./ListStreamingDistributionsPaginator";
|
|
18
|
+
export * from "./ListTrustStoresPaginator";
|
|
@@ -24,6 +24,7 @@ export declare var AssociateDistributionTenantWebACLResult: StaticStructureSchem
|
|
|
24
24
|
export declare var AssociateDistributionWebACLRequest: StaticStructureSchema;
|
|
25
25
|
export declare var AssociateDistributionWebACLResult: StaticStructureSchema;
|
|
26
26
|
export declare var BatchTooLarge: StaticErrorSchema;
|
|
27
|
+
export declare var CaCertificatesBundleS3Location: StaticStructureSchema;
|
|
27
28
|
export declare var CacheBehavior: StaticStructureSchema;
|
|
28
29
|
export declare var CacheBehaviors: StaticStructureSchema;
|
|
29
30
|
export declare var CachedMethods: StaticStructureSchema;
|
|
@@ -49,6 +50,9 @@ export declare var CloudFrontOriginAccessIdentitySummary: StaticStructureSchema;
|
|
|
49
50
|
export declare var CNAMEAlreadyExists: StaticErrorSchema;
|
|
50
51
|
export declare var ConflictingAlias: StaticStructureSchema;
|
|
51
52
|
export declare var ConflictingAliasesList: StaticStructureSchema;
|
|
53
|
+
export declare var ConnectionFunctionAssociation: StaticStructureSchema;
|
|
54
|
+
export declare var ConnectionFunctionSummary: StaticStructureSchema;
|
|
55
|
+
export declare var ConnectionFunctionTestResult: StaticStructureSchema;
|
|
52
56
|
export declare var ConnectionGroup: StaticStructureSchema;
|
|
53
57
|
export declare var ConnectionGroupAssociationFilter: StaticStructureSchema;
|
|
54
58
|
export declare var ConnectionGroupSummary: StaticStructureSchema;
|
|
@@ -73,6 +77,8 @@ export declare var CreateCachePolicyRequest: StaticStructureSchema;
|
|
|
73
77
|
export declare var CreateCachePolicyResult: StaticStructureSchema;
|
|
74
78
|
export declare var CreateCloudFrontOriginAccessIdentityRequest: StaticStructureSchema;
|
|
75
79
|
export declare var CreateCloudFrontOriginAccessIdentityResult: StaticStructureSchema;
|
|
80
|
+
export declare var CreateConnectionFunctionRequest: StaticStructureSchema;
|
|
81
|
+
export declare var CreateConnectionFunctionResult: StaticStructureSchema;
|
|
76
82
|
export declare var CreateConnectionGroupRequest: StaticStructureSchema;
|
|
77
83
|
export declare var CreateConnectionGroupResult: StaticStructureSchema;
|
|
78
84
|
export declare var CreateContinuousDeploymentPolicyRequest: StaticStructureSchema;
|
|
@@ -113,6 +119,8 @@ export declare var CreateStreamingDistributionRequest: StaticStructureSchema;
|
|
|
113
119
|
export declare var CreateStreamingDistributionResult: StaticStructureSchema;
|
|
114
120
|
export declare var CreateStreamingDistributionWithTagsRequest: StaticStructureSchema;
|
|
115
121
|
export declare var CreateStreamingDistributionWithTagsResult: StaticStructureSchema;
|
|
122
|
+
export declare var CreateTrustStoreRequest: StaticStructureSchema;
|
|
123
|
+
export declare var CreateTrustStoreResult: StaticStructureSchema;
|
|
116
124
|
export declare var CreateVpcOriginRequest: StaticStructureSchema;
|
|
117
125
|
export declare var CreateVpcOriginResult: StaticStructureSchema;
|
|
118
126
|
export declare var CustomErrorResponse: StaticStructureSchema;
|
|
@@ -124,6 +132,7 @@ export declare var DefaultCacheBehavior: StaticStructureSchema;
|
|
|
124
132
|
export declare var DeleteAnycastIpListRequest: StaticStructureSchema;
|
|
125
133
|
export declare var DeleteCachePolicyRequest: StaticStructureSchema;
|
|
126
134
|
export declare var DeleteCloudFrontOriginAccessIdentityRequest: StaticStructureSchema;
|
|
135
|
+
export declare var DeleteConnectionFunctionRequest: StaticStructureSchema;
|
|
127
136
|
export declare var DeleteConnectionGroupRequest: StaticStructureSchema;
|
|
128
137
|
export declare var DeleteContinuousDeploymentPolicyRequest: StaticStructureSchema;
|
|
129
138
|
export declare var DeleteDistributionRequest: StaticStructureSchema;
|
|
@@ -142,8 +151,11 @@ export declare var DeleteRealtimeLogConfigRequest: StaticStructureSchema;
|
|
|
142
151
|
export declare var DeleteResourcePolicyRequest: StaticStructureSchema;
|
|
143
152
|
export declare var DeleteResponseHeadersPolicyRequest: StaticStructureSchema;
|
|
144
153
|
export declare var DeleteStreamingDistributionRequest: StaticStructureSchema;
|
|
154
|
+
export declare var DeleteTrustStoreRequest: StaticStructureSchema;
|
|
145
155
|
export declare var DeleteVpcOriginRequest: StaticStructureSchema;
|
|
146
156
|
export declare var DeleteVpcOriginResult: StaticStructureSchema;
|
|
157
|
+
export declare var DescribeConnectionFunctionRequest: StaticStructureSchema;
|
|
158
|
+
export declare var DescribeConnectionFunctionResult: StaticStructureSchema;
|
|
147
159
|
export declare var DescribeFunctionRequest: StaticStructureSchema;
|
|
148
160
|
export declare var DescribeFunctionResult: StaticStructureSchema;
|
|
149
161
|
export declare var DescribeKeyValueStoreRequest: StaticStructureSchema;
|
|
@@ -213,6 +225,8 @@ export declare var GetCloudFrontOriginAccessIdentityConfigRequest: StaticStructu
|
|
|
213
225
|
export declare var GetCloudFrontOriginAccessIdentityConfigResult: StaticStructureSchema;
|
|
214
226
|
export declare var GetCloudFrontOriginAccessIdentityRequest: StaticStructureSchema;
|
|
215
227
|
export declare var GetCloudFrontOriginAccessIdentityResult: StaticStructureSchema;
|
|
228
|
+
export declare var GetConnectionFunctionRequest: StaticStructureSchema;
|
|
229
|
+
export declare var GetConnectionFunctionResult: StaticStructureSchema;
|
|
216
230
|
export declare var GetConnectionGroupByRoutingEndpointRequest: StaticStructureSchema;
|
|
217
231
|
export declare var GetConnectionGroupByRoutingEndpointResult: StaticStructureSchema;
|
|
218
232
|
export declare var GetConnectionGroupRequest: StaticStructureSchema;
|
|
@@ -275,6 +289,8 @@ export declare var GetStreamingDistributionConfigRequest: StaticStructureSchema;
|
|
|
275
289
|
export declare var GetStreamingDistributionConfigResult: StaticStructureSchema;
|
|
276
290
|
export declare var GetStreamingDistributionRequest: StaticStructureSchema;
|
|
277
291
|
export declare var GetStreamingDistributionResult: StaticStructureSchema;
|
|
292
|
+
export declare var GetTrustStoreRequest: StaticStructureSchema;
|
|
293
|
+
export declare var GetTrustStoreResult: StaticStructureSchema;
|
|
278
294
|
export declare var GetVpcOriginRequest: StaticStructureSchema;
|
|
279
295
|
export declare var GetVpcOriginResult: StaticStructureSchema;
|
|
280
296
|
export declare var GrpcConfig: StaticStructureSchema;
|
|
@@ -316,6 +332,8 @@ export declare var InvalidTagging: StaticErrorSchema;
|
|
|
316
332
|
export declare var InvalidTTLOrder: StaticErrorSchema;
|
|
317
333
|
export declare var InvalidViewerCertificate: StaticErrorSchema;
|
|
318
334
|
export declare var InvalidWebACLId: StaticErrorSchema;
|
|
335
|
+
export declare var IpamCidrConfig: StaticStructureSchema;
|
|
336
|
+
export declare var IpamConfig: StaticStructureSchema;
|
|
319
337
|
export declare var KeyGroup: StaticStructureSchema;
|
|
320
338
|
export declare var KeyGroupAlreadyExists: StaticErrorSchema;
|
|
321
339
|
export declare var KeyGroupConfig: StaticStructureSchema;
|
|
@@ -338,6 +356,8 @@ export declare var ListCloudFrontOriginAccessIdentitiesRequest: StaticStructureS
|
|
|
338
356
|
export declare var ListCloudFrontOriginAccessIdentitiesResult: StaticStructureSchema;
|
|
339
357
|
export declare var ListConflictingAliasesRequest: StaticStructureSchema;
|
|
340
358
|
export declare var ListConflictingAliasesResult: StaticStructureSchema;
|
|
359
|
+
export declare var ListConnectionFunctionsRequest: StaticStructureSchema;
|
|
360
|
+
export declare var ListConnectionFunctionsResult: StaticStructureSchema;
|
|
341
361
|
export declare var ListConnectionGroupsRequest: StaticStructureSchema;
|
|
342
362
|
export declare var ListConnectionGroupsResult: StaticStructureSchema;
|
|
343
363
|
export declare var ListContinuousDeploymentPoliciesRequest: StaticStructureSchema;
|
|
@@ -346,6 +366,8 @@ export declare var ListDistributionsByAnycastIpListIdRequest: StaticStructureSch
|
|
|
346
366
|
export declare var ListDistributionsByAnycastIpListIdResult: StaticStructureSchema;
|
|
347
367
|
export declare var ListDistributionsByCachePolicyIdRequest: StaticStructureSchema;
|
|
348
368
|
export declare var ListDistributionsByCachePolicyIdResult: StaticStructureSchema;
|
|
369
|
+
export declare var ListDistributionsByConnectionFunctionRequest: StaticStructureSchema;
|
|
370
|
+
export declare var ListDistributionsByConnectionFunctionResult: StaticStructureSchema;
|
|
349
371
|
export declare var ListDistributionsByConnectionModeRequest: StaticStructureSchema;
|
|
350
372
|
export declare var ListDistributionsByConnectionModeResult: StaticStructureSchema;
|
|
351
373
|
export declare var ListDistributionsByKeyGroupRequest: StaticStructureSchema;
|
|
@@ -358,6 +380,8 @@ export declare var ListDistributionsByRealtimeLogConfigRequest: StaticStructureS
|
|
|
358
380
|
export declare var ListDistributionsByRealtimeLogConfigResult: StaticStructureSchema;
|
|
359
381
|
export declare var ListDistributionsByResponseHeadersPolicyIdRequest: StaticStructureSchema;
|
|
360
382
|
export declare var ListDistributionsByResponseHeadersPolicyIdResult: StaticStructureSchema;
|
|
383
|
+
export declare var ListDistributionsByTrustStoreRequest: StaticStructureSchema;
|
|
384
|
+
export declare var ListDistributionsByTrustStoreResult: StaticStructureSchema;
|
|
361
385
|
export declare var ListDistributionsByVpcOriginIdRequest: StaticStructureSchema;
|
|
362
386
|
export declare var ListDistributionsByVpcOriginIdResult: StaticStructureSchema;
|
|
363
387
|
export declare var ListDistributionsByWebACLIdRequest: StaticStructureSchema;
|
|
@@ -398,6 +422,8 @@ export declare var ListStreamingDistributionsRequest: StaticStructureSchema;
|
|
|
398
422
|
export declare var ListStreamingDistributionsResult: StaticStructureSchema;
|
|
399
423
|
export declare var ListTagsForResourceRequest: StaticStructureSchema;
|
|
400
424
|
export declare var ListTagsForResourceResult: StaticStructureSchema;
|
|
425
|
+
export declare var ListTrustStoresRequest: StaticStructureSchema;
|
|
426
|
+
export declare var ListTrustStoresResult: StaticStructureSchema;
|
|
401
427
|
export declare var ListVpcOriginsRequest: StaticStructureSchema;
|
|
402
428
|
export declare var ListVpcOriginsResult: StaticStructureSchema;
|
|
403
429
|
export declare var LoggingConfig: StaticStructureSchema;
|
|
@@ -460,6 +486,8 @@ export declare var PublicKeyConfig: StaticStructureSchema;
|
|
|
460
486
|
export declare var PublicKeyInUse: StaticErrorSchema;
|
|
461
487
|
export declare var PublicKeyList: StaticStructureSchema;
|
|
462
488
|
export declare var PublicKeySummary: StaticStructureSchema;
|
|
489
|
+
export declare var PublishConnectionFunctionRequest: StaticStructureSchema;
|
|
490
|
+
export declare var PublishConnectionFunctionResult: StaticStructureSchema;
|
|
463
491
|
export declare var PublishFunctionRequest: StaticStructureSchema;
|
|
464
492
|
export declare var PublishFunctionResult: StaticStructureSchema;
|
|
465
493
|
export declare var PutResourcePolicyRequest: StaticStructureSchema;
|
|
@@ -523,6 +551,8 @@ export declare var TagKeys: StaticStructureSchema;
|
|
|
523
551
|
export declare var TagResourceRequest: StaticStructureSchema;
|
|
524
552
|
export declare var Tags: StaticStructureSchema;
|
|
525
553
|
export declare var TenantConfig: StaticStructureSchema;
|
|
554
|
+
export declare var TestConnectionFunctionRequest: StaticStructureSchema;
|
|
555
|
+
export declare var TestConnectionFunctionResult: StaticStructureSchema;
|
|
526
556
|
export declare var TestFunctionFailed: StaticErrorSchema;
|
|
527
557
|
export declare var TestFunctionRequest: StaticStructureSchema;
|
|
528
558
|
export declare var TestFunctionResult: StaticStructureSchema;
|
|
@@ -584,6 +614,9 @@ export declare var TrustedKeyGroupDoesNotExist: StaticErrorSchema;
|
|
|
584
614
|
export declare var TrustedKeyGroups: StaticStructureSchema;
|
|
585
615
|
export declare var TrustedSignerDoesNotExist: StaticErrorSchema;
|
|
586
616
|
export declare var TrustedSigners: StaticStructureSchema;
|
|
617
|
+
export declare var TrustStore: StaticStructureSchema;
|
|
618
|
+
export declare var TrustStoreConfig: StaticStructureSchema;
|
|
619
|
+
export declare var TrustStoreSummary: StaticStructureSchema;
|
|
587
620
|
export declare var UnsupportedOperation: StaticErrorSchema;
|
|
588
621
|
export declare var UntagResourceRequest: StaticStructureSchema;
|
|
589
622
|
export declare var UpdateAnycastIpListRequest: StaticStructureSchema;
|
|
@@ -592,6 +625,8 @@ export declare var UpdateCachePolicyRequest: StaticStructureSchema;
|
|
|
592
625
|
export declare var UpdateCachePolicyResult: StaticStructureSchema;
|
|
593
626
|
export declare var UpdateCloudFrontOriginAccessIdentityRequest: StaticStructureSchema;
|
|
594
627
|
export declare var UpdateCloudFrontOriginAccessIdentityResult: StaticStructureSchema;
|
|
628
|
+
export declare var UpdateConnectionFunctionRequest: StaticStructureSchema;
|
|
629
|
+
export declare var UpdateConnectionFunctionResult: StaticStructureSchema;
|
|
595
630
|
export declare var UpdateConnectionGroupRequest: StaticStructureSchema;
|
|
596
631
|
export declare var UpdateConnectionGroupResult: StaticStructureSchema;
|
|
597
632
|
export declare var UpdateContinuousDeploymentPolicyRequest: StaticStructureSchema;
|
|
@@ -626,12 +661,15 @@ export declare var UpdateResponseHeadersPolicyRequest: StaticStructureSchema;
|
|
|
626
661
|
export declare var UpdateResponseHeadersPolicyResult: StaticStructureSchema;
|
|
627
662
|
export declare var UpdateStreamingDistributionRequest: StaticStructureSchema;
|
|
628
663
|
export declare var UpdateStreamingDistributionResult: StaticStructureSchema;
|
|
664
|
+
export declare var UpdateTrustStoreRequest: StaticStructureSchema;
|
|
665
|
+
export declare var UpdateTrustStoreResult: StaticStructureSchema;
|
|
629
666
|
export declare var UpdateVpcOriginRequest: StaticStructureSchema;
|
|
630
667
|
export declare var UpdateVpcOriginResult: StaticStructureSchema;
|
|
631
668
|
export declare var ValidationTokenDetail: StaticStructureSchema;
|
|
632
669
|
export declare var VerifyDnsConfigurationRequest: StaticStructureSchema;
|
|
633
670
|
export declare var VerifyDnsConfigurationResult: StaticStructureSchema;
|
|
634
671
|
export declare var ViewerCertificate: StaticStructureSchema;
|
|
672
|
+
export declare var ViewerMtlsConfig: StaticStructureSchema;
|
|
635
673
|
export declare var VpcOrigin: StaticStructureSchema;
|
|
636
674
|
export declare var VpcOriginConfig: StaticStructureSchema;
|
|
637
675
|
export declare var VpcOriginEndpointConfig: StaticStructureSchema;
|
|
@@ -653,6 +691,7 @@ export declare var CacheBehaviorList: StaticListSchema;
|
|
|
653
691
|
export declare var CachePolicySummaryList: StaticListSchema;
|
|
654
692
|
export declare var CloudFrontOriginAccessIdentitySummaryList: StaticListSchema;
|
|
655
693
|
export declare var ConflictingAliases: StaticListSchema;
|
|
694
|
+
export declare var ConnectionFunctionSummaryList: StaticListSchema;
|
|
656
695
|
export declare var ConnectionGroupSummaryList: StaticListSchema;
|
|
657
696
|
export declare var ContentTypeProfileList: StaticListSchema;
|
|
658
697
|
export declare var ContinuousDeploymentPolicySummaryList: StaticListSchema;
|
|
@@ -677,6 +716,7 @@ export declare var FunctionExecutionLogList: StaticListSchema;
|
|
|
677
716
|
export declare var FunctionSummaryList: StaticListSchema;
|
|
678
717
|
export declare var HeaderList: StaticListSchema;
|
|
679
718
|
export declare var InvalidationSummaryList: StaticListSchema;
|
|
719
|
+
export declare var IpamCidrConfigList: StaticListSchema;
|
|
680
720
|
export declare var KeyGroupSummaryList: StaticListSchema;
|
|
681
721
|
export declare var KeyPairIdList: StaticListSchema;
|
|
682
722
|
export declare var KeyValueStoreAssociationList: StaticListSchema;
|
|
@@ -711,8 +751,10 @@ export declare var StreamingDistributionSummaryList: StaticListSchema;
|
|
|
711
751
|
export declare var TagKeyList: StaticListSchema;
|
|
712
752
|
export declare var TagList: StaticListSchema;
|
|
713
753
|
export declare var TrustedKeyGroupIdList: StaticListSchema;
|
|
754
|
+
export declare var TrustStoreList: StaticListSchema;
|
|
714
755
|
export declare var ValidationTokenDetailList: StaticListSchema;
|
|
715
756
|
export declare var VpcOriginSummaryList: StaticListSchema;
|
|
757
|
+
export declare var CaCertificatesBundleSource: StaticStructureSchema;
|
|
716
758
|
export declare var AssociateAlias: StaticOperationSchema;
|
|
717
759
|
export declare var AssociateDistributionTenantWebACL: StaticOperationSchema;
|
|
718
760
|
export declare var AssociateDistributionWebACL: StaticOperationSchema;
|
|
@@ -720,6 +762,7 @@ export declare var CopyDistribution: StaticOperationSchema;
|
|
|
720
762
|
export declare var CreateAnycastIpList: StaticOperationSchema;
|
|
721
763
|
export declare var CreateCachePolicy: StaticOperationSchema;
|
|
722
764
|
export declare var CreateCloudFrontOriginAccessIdentity: StaticOperationSchema;
|
|
765
|
+
export declare var CreateConnectionFunction: StaticOperationSchema;
|
|
723
766
|
export declare var CreateConnectionGroup: StaticOperationSchema;
|
|
724
767
|
export declare var CreateContinuousDeploymentPolicy: StaticOperationSchema;
|
|
725
768
|
export declare var CreateDistribution: StaticOperationSchema;
|
|
@@ -740,10 +783,12 @@ export declare var CreateRealtimeLogConfig: StaticOperationSchema;
|
|
|
740
783
|
export declare var CreateResponseHeadersPolicy: StaticOperationSchema;
|
|
741
784
|
export declare var CreateStreamingDistribution: StaticOperationSchema;
|
|
742
785
|
export declare var CreateStreamingDistributionWithTags: StaticOperationSchema;
|
|
786
|
+
export declare var CreateTrustStore: StaticOperationSchema;
|
|
743
787
|
export declare var CreateVpcOrigin: StaticOperationSchema;
|
|
744
788
|
export declare var DeleteAnycastIpList: StaticOperationSchema;
|
|
745
789
|
export declare var DeleteCachePolicy: StaticOperationSchema;
|
|
746
790
|
export declare var DeleteCloudFrontOriginAccessIdentity: StaticOperationSchema;
|
|
791
|
+
export declare var DeleteConnectionFunction: StaticOperationSchema;
|
|
747
792
|
export declare var DeleteConnectionGroup: StaticOperationSchema;
|
|
748
793
|
export declare var DeleteContinuousDeploymentPolicy: StaticOperationSchema;
|
|
749
794
|
export declare var DeleteDistribution: StaticOperationSchema;
|
|
@@ -761,7 +806,9 @@ export declare var DeleteRealtimeLogConfig: StaticOperationSchema;
|
|
|
761
806
|
export declare var DeleteResourcePolicy: StaticOperationSchema;
|
|
762
807
|
export declare var DeleteResponseHeadersPolicy: StaticOperationSchema;
|
|
763
808
|
export declare var DeleteStreamingDistribution: StaticOperationSchema;
|
|
809
|
+
export declare var DeleteTrustStore: StaticOperationSchema;
|
|
764
810
|
export declare var DeleteVpcOrigin: StaticOperationSchema;
|
|
811
|
+
export declare var DescribeConnectionFunction: StaticOperationSchema;
|
|
765
812
|
export declare var DescribeFunction: StaticOperationSchema;
|
|
766
813
|
export declare var DescribeKeyValueStore: StaticOperationSchema;
|
|
767
814
|
export declare var DisassociateDistributionTenantWebACL: StaticOperationSchema;
|
|
@@ -771,6 +818,7 @@ export declare var GetCachePolicy: StaticOperationSchema;
|
|
|
771
818
|
export declare var GetCachePolicyConfig: StaticOperationSchema;
|
|
772
819
|
export declare var GetCloudFrontOriginAccessIdentity: StaticOperationSchema;
|
|
773
820
|
export declare var GetCloudFrontOriginAccessIdentityConfig: StaticOperationSchema;
|
|
821
|
+
export declare var GetConnectionFunction: StaticOperationSchema;
|
|
774
822
|
export declare var GetConnectionGroup: StaticOperationSchema;
|
|
775
823
|
export declare var GetConnectionGroupByRoutingEndpoint: StaticOperationSchema;
|
|
776
824
|
export declare var GetContinuousDeploymentPolicy: StaticOperationSchema;
|
|
@@ -802,22 +850,26 @@ export declare var GetResponseHeadersPolicy: StaticOperationSchema;
|
|
|
802
850
|
export declare var GetResponseHeadersPolicyConfig: StaticOperationSchema;
|
|
803
851
|
export declare var GetStreamingDistribution: StaticOperationSchema;
|
|
804
852
|
export declare var GetStreamingDistributionConfig: StaticOperationSchema;
|
|
853
|
+
export declare var GetTrustStore: StaticOperationSchema;
|
|
805
854
|
export declare var GetVpcOrigin: StaticOperationSchema;
|
|
806
855
|
export declare var ListAnycastIpLists: StaticOperationSchema;
|
|
807
856
|
export declare var ListCachePolicies: StaticOperationSchema;
|
|
808
857
|
export declare var ListCloudFrontOriginAccessIdentities: StaticOperationSchema;
|
|
809
858
|
export declare var ListConflictingAliases: StaticOperationSchema;
|
|
859
|
+
export declare var ListConnectionFunctions: StaticOperationSchema;
|
|
810
860
|
export declare var ListConnectionGroups: StaticOperationSchema;
|
|
811
861
|
export declare var ListContinuousDeploymentPolicies: StaticOperationSchema;
|
|
812
862
|
export declare var ListDistributions: StaticOperationSchema;
|
|
813
863
|
export declare var ListDistributionsByAnycastIpListId: StaticOperationSchema;
|
|
814
864
|
export declare var ListDistributionsByCachePolicyId: StaticOperationSchema;
|
|
865
|
+
export declare var ListDistributionsByConnectionFunction: StaticOperationSchema;
|
|
815
866
|
export declare var ListDistributionsByConnectionMode: StaticOperationSchema;
|
|
816
867
|
export declare var ListDistributionsByKeyGroup: StaticOperationSchema;
|
|
817
868
|
export declare var ListDistributionsByOriginRequestPolicyId: StaticOperationSchema;
|
|
818
869
|
export declare var ListDistributionsByOwnedResource: StaticOperationSchema;
|
|
819
870
|
export declare var ListDistributionsByRealtimeLogConfig: StaticOperationSchema;
|
|
820
871
|
export declare var ListDistributionsByResponseHeadersPolicyId: StaticOperationSchema;
|
|
872
|
+
export declare var ListDistributionsByTrustStore: StaticOperationSchema;
|
|
821
873
|
export declare var ListDistributionsByVpcOriginId: StaticOperationSchema;
|
|
822
874
|
export declare var ListDistributionsByWebACLId: StaticOperationSchema;
|
|
823
875
|
export declare var ListDistributionTenants: StaticOperationSchema;
|
|
@@ -837,15 +889,19 @@ export declare var ListRealtimeLogConfigs: StaticOperationSchema;
|
|
|
837
889
|
export declare var ListResponseHeadersPolicies: StaticOperationSchema;
|
|
838
890
|
export declare var ListStreamingDistributions: StaticOperationSchema;
|
|
839
891
|
export declare var ListTagsForResource: StaticOperationSchema;
|
|
892
|
+
export declare var ListTrustStores: StaticOperationSchema;
|
|
840
893
|
export declare var ListVpcOrigins: StaticOperationSchema;
|
|
894
|
+
export declare var PublishConnectionFunction: StaticOperationSchema;
|
|
841
895
|
export declare var PublishFunction: StaticOperationSchema;
|
|
842
896
|
export declare var PutResourcePolicy: StaticOperationSchema;
|
|
843
897
|
export declare var TagResource: StaticOperationSchema;
|
|
898
|
+
export declare var TestConnectionFunction: StaticOperationSchema;
|
|
844
899
|
export declare var TestFunction: StaticOperationSchema;
|
|
845
900
|
export declare var UntagResource: StaticOperationSchema;
|
|
846
901
|
export declare var UpdateAnycastIpList: StaticOperationSchema;
|
|
847
902
|
export declare var UpdateCachePolicy: StaticOperationSchema;
|
|
848
903
|
export declare var UpdateCloudFrontOriginAccessIdentity: StaticOperationSchema;
|
|
904
|
+
export declare var UpdateConnectionFunction: StaticOperationSchema;
|
|
849
905
|
export declare var UpdateConnectionGroup: StaticOperationSchema;
|
|
850
906
|
export declare var UpdateContinuousDeploymentPolicy: StaticOperationSchema;
|
|
851
907
|
export declare var UpdateDistribution: StaticOperationSchema;
|
|
@@ -863,5 +919,6 @@ export declare var UpdatePublicKey: StaticOperationSchema;
|
|
|
863
919
|
export declare var UpdateRealtimeLogConfig: StaticOperationSchema;
|
|
864
920
|
export declare var UpdateResponseHeadersPolicy: StaticOperationSchema;
|
|
865
921
|
export declare var UpdateStreamingDistribution: StaticOperationSchema;
|
|
922
|
+
export declare var UpdateTrustStore: StaticOperationSchema;
|
|
866
923
|
export declare var UpdateVpcOrigin: StaticOperationSchema;
|
|
867
924
|
export declare var VerifyDnsConfiguration: StaticOperationSchema;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-cloudfront",
|
|
3
3
|
"description": "AWS SDK for JavaScript Cloudfront Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.939.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-cloudfront",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
23
|
"@aws-sdk/core": "3.936.0",
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.939.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.936.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.936.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.936.0",
|