@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.
Files changed (118) hide show
  1. package/README.md +120 -0
  2. package/dist-cjs/index.js +1018 -69
  3. package/dist-es/CloudFront.js +30 -0
  4. package/dist-es/commands/CreateConnectionFunctionCommand.js +16 -0
  5. package/dist-es/commands/CreateTrustStoreCommand.js +16 -0
  6. package/dist-es/commands/DeleteConnectionFunctionCommand.js +16 -0
  7. package/dist-es/commands/DeleteTrustStoreCommand.js +16 -0
  8. package/dist-es/commands/DescribeConnectionFunctionCommand.js +16 -0
  9. package/dist-es/commands/GetConnectionFunctionCommand.js +16 -0
  10. package/dist-es/commands/GetTrustStoreCommand.js +16 -0
  11. package/dist-es/commands/ListConnectionFunctionsCommand.js +16 -0
  12. package/dist-es/commands/ListDistributionsByConnectionFunctionCommand.js +16 -0
  13. package/dist-es/commands/ListDistributionsByTrustStoreCommand.js +16 -0
  14. package/dist-es/commands/ListTrustStoresCommand.js +16 -0
  15. package/dist-es/commands/PublishConnectionFunctionCommand.js +16 -0
  16. package/dist-es/commands/TestConnectionFunctionCommand.js +16 -0
  17. package/dist-es/commands/UpdateConnectionFunctionCommand.js +16 -0
  18. package/dist-es/commands/UpdateTrustStoreCommand.js +16 -0
  19. package/dist-es/commands/index.js +18 -3
  20. package/dist-es/models/enums.js +31 -8
  21. package/dist-es/models/errors.js +14 -14
  22. package/dist-es/pagination/ListConnectionFunctionsPaginator.js +4 -0
  23. package/dist-es/pagination/ListDistributionsByConnectionFunctionPaginator.js +4 -0
  24. package/dist-es/pagination/ListDistributionsByTrustStorePaginator.js +4 -0
  25. package/dist-es/pagination/ListTrustStoresPaginator.js +4 -0
  26. package/dist-es/pagination/index.js +4 -0
  27. package/dist-es/schemas/schemas_0.js +735 -34
  28. package/dist-types/CloudFront.d.ts +107 -0
  29. package/dist-types/CloudFrontClient.d.ts +17 -2
  30. package/dist-types/commands/CopyDistributionCommand.d.ts +11 -0
  31. package/dist-types/commands/CreateAnycastIpListCommand.d.ts +19 -0
  32. package/dist-types/commands/CreateConnectionFunctionCommand.d.ts +138 -0
  33. package/dist-types/commands/CreateDistributionCommand.d.ts +22 -0
  34. package/dist-types/commands/CreateDistributionWithTagsCommand.d.ts +22 -0
  35. package/dist-types/commands/CreateTrustStoreCommand.d.ts +117 -0
  36. package/dist-types/commands/DeleteConnectionFunctionCommand.d.ts +94 -0
  37. package/dist-types/commands/DeleteTrustStoreCommand.d.ts +91 -0
  38. package/dist-types/commands/DescribeConnectionFunctionCommand.d.ts +108 -0
  39. package/dist-types/commands/GetAnycastIpListCommand.d.ts +11 -0
  40. package/dist-types/commands/GetConnectionFunctionCommand.d.ts +93 -0
  41. package/dist-types/commands/GetDistributionCommand.d.ts +11 -0
  42. package/dist-types/commands/GetDistributionConfigCommand.d.ts +11 -0
  43. package/dist-types/commands/GetManagedCertificateDetailsCommand.d.ts +2 -1
  44. package/dist-types/commands/GetMonitoringSubscriptionCommand.d.ts +1 -1
  45. package/dist-types/commands/GetOriginAccessControlCommand.d.ts +1 -1
  46. package/dist-types/commands/GetOriginAccessControlConfigCommand.d.ts +1 -1
  47. package/dist-types/commands/GetOriginRequestPolicyCommand.d.ts +1 -1
  48. package/dist-types/commands/GetOriginRequestPolicyConfigCommand.d.ts +1 -1
  49. package/dist-types/commands/GetPublicKeyCommand.d.ts +1 -1
  50. package/dist-types/commands/GetPublicKeyConfigCommand.d.ts +1 -1
  51. package/dist-types/commands/GetRealtimeLogConfigCommand.d.ts +1 -1
  52. package/dist-types/commands/GetTrustStoreCommand.d.ts +92 -0
  53. package/dist-types/commands/ListAnycastIpListsCommand.d.ts +11 -0
  54. package/dist-types/commands/ListConnectionFunctionsCommand.d.ts +108 -0
  55. package/dist-types/commands/ListDistributionsByAnycastIpListIdCommand.d.ts +11 -0
  56. package/dist-types/commands/ListDistributionsByConnectionFunctionCommand.d.ts +412 -0
  57. package/dist-types/commands/ListDistributionsByConnectionModeCommand.d.ts +11 -0
  58. package/dist-types/commands/ListDistributionsByRealtimeLogConfigCommand.d.ts +11 -0
  59. package/dist-types/commands/ListDistributionsByTrustStoreCommand.d.ts +412 -0
  60. package/dist-types/commands/ListDistributionsByWebACLIdCommand.d.ts +11 -0
  61. package/dist-types/commands/ListDistributionsCommand.d.ts +11 -0
  62. package/dist-types/commands/ListTrustStoresCommand.d.ts +96 -0
  63. package/dist-types/commands/PublishConnectionFunctionCommand.d.ts +113 -0
  64. package/dist-types/commands/TestConnectionFunctionCommand.d.ts +123 -0
  65. package/dist-types/commands/UpdateAnycastIpListCommand.d.ts +11 -0
  66. package/dist-types/commands/UpdateConnectionFunctionCommand.d.ts +130 -0
  67. package/dist-types/commands/UpdateDistributionCommand.d.ts +22 -0
  68. package/dist-types/commands/UpdateDistributionWithStagingConfigCommand.d.ts +11 -0
  69. package/dist-types/commands/UpdateTrustStoreCommand.d.ts +107 -0
  70. package/dist-types/commands/index.d.ts +18 -3
  71. package/dist-types/models/enums.d.ts +71 -24
  72. package/dist-types/models/errors.d.ts +13 -13
  73. package/dist-types/models/models_0.d.ts +498 -314
  74. package/dist-types/models/models_1.d.ts +627 -3
  75. package/dist-types/pagination/ListConnectionFunctionsPaginator.d.ts +7 -0
  76. package/dist-types/pagination/ListDistributionsByConnectionFunctionPaginator.d.ts +7 -0
  77. package/dist-types/pagination/ListDistributionsByTrustStorePaginator.d.ts +7 -0
  78. package/dist-types/pagination/ListTrustStoresPaginator.d.ts +7 -0
  79. package/dist-types/pagination/index.d.ts +4 -0
  80. package/dist-types/schemas/schemas_0.d.ts +57 -0
  81. package/dist-types/ts3.4/CloudFront.d.ts +263 -0
  82. package/dist-types/ts3.4/CloudFrontClient.d.ts +90 -0
  83. package/dist-types/ts3.4/commands/CreateConnectionFunctionCommand.d.ts +51 -0
  84. package/dist-types/ts3.4/commands/CreateTrustStoreCommand.d.ts +50 -0
  85. package/dist-types/ts3.4/commands/DeleteConnectionFunctionCommand.d.ts +47 -0
  86. package/dist-types/ts3.4/commands/DeleteTrustStoreCommand.d.ts +45 -0
  87. package/dist-types/ts3.4/commands/DescribeConnectionFunctionCommand.d.ts +51 -0
  88. package/dist-types/ts3.4/commands/GetConnectionFunctionCommand.d.ts +58 -0
  89. package/dist-types/ts3.4/commands/GetManagedCertificateDetailsCommand.d.ts +2 -4
  90. package/dist-types/ts3.4/commands/GetMonitoringSubscriptionCommand.d.ts +1 -1
  91. package/dist-types/ts3.4/commands/GetOriginAccessControlCommand.d.ts +1 -1
  92. package/dist-types/ts3.4/commands/GetOriginAccessControlConfigCommand.d.ts +1 -1
  93. package/dist-types/ts3.4/commands/GetOriginRequestPolicyCommand.d.ts +1 -1
  94. package/dist-types/ts3.4/commands/GetOriginRequestPolicyConfigCommand.d.ts +1 -1
  95. package/dist-types/ts3.4/commands/GetPublicKeyCommand.d.ts +1 -1
  96. package/dist-types/ts3.4/commands/GetPublicKeyConfigCommand.d.ts +1 -1
  97. package/dist-types/ts3.4/commands/GetRealtimeLogConfigCommand.d.ts +1 -1
  98. package/dist-types/ts3.4/commands/GetTrustStoreCommand.d.ts +47 -0
  99. package/dist-types/ts3.4/commands/ListConnectionFunctionsCommand.d.ts +51 -0
  100. package/dist-types/ts3.4/commands/ListDistributionsByConnectionFunctionCommand.d.ts +51 -0
  101. package/dist-types/ts3.4/commands/ListDistributionsByTrustStoreCommand.d.ts +51 -0
  102. package/dist-types/ts3.4/commands/ListTrustStoresCommand.d.ts +50 -0
  103. package/dist-types/ts3.4/commands/PublishConnectionFunctionCommand.d.ts +51 -0
  104. package/dist-types/ts3.4/commands/TestConnectionFunctionCommand.d.ts +51 -0
  105. package/dist-types/ts3.4/commands/UpdateConnectionFunctionCommand.d.ts +51 -0
  106. package/dist-types/ts3.4/commands/UpdateTrustStoreCommand.d.ts +50 -0
  107. package/dist-types/ts3.4/commands/index.d.ts +18 -3
  108. package/dist-types/ts3.4/models/enums.d.ts +40 -11
  109. package/dist-types/ts3.4/models/errors.d.ts +8 -8
  110. package/dist-types/ts3.4/models/models_0.d.ts +131 -82
  111. package/dist-types/ts3.4/models/models_1.d.ts +172 -0
  112. package/dist-types/ts3.4/pagination/ListConnectionFunctionsPaginator.d.ts +11 -0
  113. package/dist-types/ts3.4/pagination/ListDistributionsByConnectionFunctionPaginator.d.ts +11 -0
  114. package/dist-types/ts3.4/pagination/ListDistributionsByTrustStorePaginator.d.ts +11 -0
  115. package/dist-types/ts3.4/pagination/ListTrustStoresPaginator.d.ts +11 -0
  116. package/dist-types/ts3.4/pagination/index.d.ts +4 -0
  117. package/dist-types/ts3.4/schemas/schemas_0.d.ts +57 -0
  118. package/package.json +2 -2
@@ -33,6 +33,22 @@ export declare const IpAddressType: {
33
33
  readonly Ipv6: "ipv6";
34
34
  };
35
35
  export type IpAddressType = (typeof IpAddressType)[keyof typeof IpAddressType];
36
+ export declare const IpamCidrStatus: {
37
+ readonly Advertised: "advertised";
38
+ readonly Advertising: "advertising";
39
+ readonly Deprovisioned: "deprovisioned";
40
+ readonly Deprovisioning: "deprovisioning";
41
+ readonly FailedAdvertise: "failed-advertise";
42
+ readonly FailedDeprovision: "failed-deprovision";
43
+ readonly FailedProvision: "failed-provision";
44
+ readonly FailedWithdraw: "failed-withdraw";
45
+ readonly Provisioned: "provisioned";
46
+ readonly Provisioning: "provisioning";
47
+ readonly Withdrawing: "withdrawing";
48
+ readonly Withdrawn: "withdrawn";
49
+ };
50
+ export type IpamCidrStatus =
51
+ (typeof IpamCidrStatus)[keyof typeof IpamCidrStatus];
36
52
  export declare const ItemSelection: {
37
53
  readonly all: "all";
38
54
  readonly none: "none";
@@ -161,6 +177,23 @@ export declare const SSLSupportMethod: {
161
177
  };
162
178
  export type SSLSupportMethod =
163
179
  (typeof SSLSupportMethod)[keyof typeof SSLSupportMethod];
180
+ export declare const ViewerMtlsMode: {
181
+ readonly Optional: "optional";
182
+ readonly Required: "required";
183
+ };
184
+ export type ViewerMtlsMode =
185
+ (typeof ViewerMtlsMode)[keyof typeof ViewerMtlsMode];
186
+ export declare const FunctionRuntime: {
187
+ readonly cloudfront_js_1_0: "cloudfront-js-1.0";
188
+ readonly cloudfront_js_2_0: "cloudfront-js-2.0";
189
+ };
190
+ export type FunctionRuntime =
191
+ (typeof FunctionRuntime)[keyof typeof FunctionRuntime];
192
+ export declare const FunctionStage: {
193
+ readonly DEVELOPMENT: "DEVELOPMENT";
194
+ readonly LIVE: "LIVE";
195
+ };
196
+ export type FunctionStage = (typeof FunctionStage)[keyof typeof FunctionStage];
164
197
  export declare const ContinuousDeploymentPolicyType: {
165
198
  readonly SingleHeader: "SingleHeader";
166
199
  readonly SingleWeight: "SingleWeight";
@@ -188,17 +221,6 @@ export declare const Format: {
188
221
  readonly URLEncoded: "URLEncoded";
189
222
  };
190
223
  export type Format = (typeof Format)[keyof typeof Format];
191
- export declare const FunctionRuntime: {
192
- readonly cloudfront_js_1_0: "cloudfront-js-1.0";
193
- readonly cloudfront_js_2_0: "cloudfront-js-2.0";
194
- };
195
- export type FunctionRuntime =
196
- (typeof FunctionRuntime)[keyof typeof FunctionRuntime];
197
- export declare const FunctionStage: {
198
- readonly DEVELOPMENT: "DEVELOPMENT";
199
- readonly LIVE: "LIVE";
200
- };
201
- export type FunctionStage = (typeof FunctionStage)[keyof typeof FunctionStage];
202
224
  export declare const ImportSourceType: {
203
225
  readonly S3: "S3";
204
226
  };
@@ -273,6 +295,13 @@ export declare const ReferrerPolicyList: {
273
295
  };
274
296
  export type ReferrerPolicyList =
275
297
  (typeof ReferrerPolicyList)[keyof typeof ReferrerPolicyList];
298
+ export declare const TrustStoreStatus: {
299
+ readonly Active: "active";
300
+ readonly Failed: "failed";
301
+ readonly Pending: "pending";
302
+ };
303
+ export type TrustStoreStatus =
304
+ (typeof TrustStoreStatus)[keyof typeof TrustStoreStatus];
276
305
  export declare const ManagedCertificateStatus: {
277
306
  readonly Expired: "expired";
278
307
  readonly Failed: "failed";
@@ -680,6 +680,14 @@ export declare class TooManyCloudFrontOriginAccessIdentities extends __BaseExcep
680
680
  >
681
681
  );
682
682
  }
683
+ export declare class EntitySizeLimitExceeded extends __BaseException {
684
+ readonly name: "EntitySizeLimitExceeded";
685
+ readonly $fault: "client";
686
+ Message?: string | undefined;
687
+ constructor(
688
+ opts: __ExceptionOptionType<EntitySizeLimitExceeded, __BaseException>
689
+ );
690
+ }
683
691
  export declare class ContinuousDeploymentPolicyAlreadyExists extends __BaseException {
684
692
  readonly name: "ContinuousDeploymentPolicyAlreadyExists";
685
693
  readonly $fault: "client";
@@ -936,14 +944,6 @@ export declare class TooManyPublicKeysInKeyGroup extends __BaseException {
936
944
  opts: __ExceptionOptionType<TooManyPublicKeysInKeyGroup, __BaseException>
937
945
  );
938
946
  }
939
- export declare class EntitySizeLimitExceeded extends __BaseException {
940
- readonly name: "EntitySizeLimitExceeded";
941
- readonly $fault: "client";
942
- Message?: string | undefined;
943
- constructor(
944
- opts: __ExceptionOptionType<EntitySizeLimitExceeded, __BaseException>
945
- );
946
- }
947
947
  export declare class MonitoringSubscriptionAlreadyExists extends __BaseException {
948
948
  readonly name: "MonitoringSubscriptionAlreadyExists";
949
949
  readonly $fault: "client";
@@ -19,8 +19,8 @@ import {
19
19
  ICPRecordalStatus,
20
20
  ImportSourceType,
21
21
  IpAddressType,
22
+ IpamCidrStatus,
22
23
  ItemSelection,
23
- ManagedCertificateStatus,
24
24
  Method,
25
25
  MinimumProtocolVersion,
26
26
  OriginAccessControlOriginTypes,
@@ -37,7 +37,9 @@ import {
37
37
  ResponseHeadersPolicyAccessControlAllowMethodsValues,
38
38
  SslProtocol,
39
39
  SSLSupportMethod,
40
+ TrustStoreStatus,
40
41
  ValidationTokenHost,
42
+ ViewerMtlsMode,
41
43
  ViewerProtocolPolicy,
42
44
  } from "./enums";
43
45
  export interface KeyPairIds {
@@ -79,12 +81,23 @@ export interface AllowedMethods {
79
81
  Items: Method[] | undefined;
80
82
  CachedMethods?: CachedMethods | undefined;
81
83
  }
84
+ export interface IpamCidrConfig {
85
+ Cidr: string | undefined;
86
+ IpamPoolArn: string | undefined;
87
+ AnycastIp?: string | undefined;
88
+ Status?: IpamCidrStatus | undefined;
89
+ }
90
+ export interface IpamConfig {
91
+ Quantity: number | undefined;
92
+ IpamCidrConfigs: IpamCidrConfig[] | undefined;
93
+ }
82
94
  export interface AnycastIpList {
83
95
  Id: string | undefined;
84
96
  Name: string | undefined;
85
97
  Status: string | undefined;
86
98
  Arn: string | undefined;
87
99
  IpAddressType?: IpAddressType | undefined;
100
+ IpamConfig?: IpamConfig | undefined;
88
101
  AnycastIps: string[] | undefined;
89
102
  IpCount: number | undefined;
90
103
  LastModifiedTime: Date | undefined;
@@ -98,6 +111,7 @@ export interface AnycastIpListSummary {
98
111
  LastModifiedTime: Date | undefined;
99
112
  IpAddressType?: IpAddressType | undefined;
100
113
  ETag?: string | undefined;
114
+ IpamConfig?: IpamConfig | undefined;
101
115
  }
102
116
  export interface AnycastIpListCollection {
103
117
  Items?: AnycastIpListSummary[] | undefined;
@@ -131,6 +145,31 @@ export interface AssociateDistributionWebACLResult {
131
145
  WebACLArn?: string | undefined;
132
146
  ETag?: string | undefined;
133
147
  }
148
+ export interface CaCertificatesBundleS3Location {
149
+ Bucket: string | undefined;
150
+ Key: string | undefined;
151
+ Region: string | undefined;
152
+ Version?: string | undefined;
153
+ }
154
+ export type CaCertificatesBundleSource =
155
+ | CaCertificatesBundleSource.CaCertificatesBundleS3LocationMember
156
+ | CaCertificatesBundleSource.$UnknownMember;
157
+ export declare namespace CaCertificatesBundleSource {
158
+ interface CaCertificatesBundleS3LocationMember {
159
+ CaCertificatesBundleS3Location: CaCertificatesBundleS3Location;
160
+ $unknown?: never;
161
+ }
162
+ interface $UnknownMember {
163
+ CaCertificatesBundleS3Location?: never;
164
+ $unknown: [string, any];
165
+ }
166
+ interface Visitor<T> {
167
+ CaCertificatesBundleS3Location: (
168
+ value: CaCertificatesBundleS3Location
169
+ ) => T;
170
+ _: (name: string, value: any) => T;
171
+ }
172
+ }
134
173
  export interface CookieNames {
135
174
  Quantity: number | undefined;
136
175
  Items?: string[] | undefined;
@@ -267,6 +306,9 @@ export interface CopyDistributionRequest {
267
306
  CallerReference: string | undefined;
268
307
  Enabled?: boolean | undefined;
269
308
  }
309
+ export interface ConnectionFunctionAssociation {
310
+ Id: string | undefined;
311
+ }
270
312
  export interface CustomErrorResponse {
271
313
  ErrorCode: number | undefined;
272
314
  ResponsePagePath?: string | undefined;
@@ -413,6 +455,15 @@ export interface ViewerCertificate {
413
455
  Certificate?: string | undefined;
414
456
  CertificateSource?: CertificateSource | undefined;
415
457
  }
458
+ export interface TrustStoreConfig {
459
+ TrustStoreId: string | undefined;
460
+ AdvertiseTrustStoreCaNames?: boolean | undefined;
461
+ IgnoreCertificateExpiry?: boolean | undefined;
462
+ }
463
+ export interface ViewerMtlsConfig {
464
+ Mode?: ViewerMtlsMode | undefined;
465
+ TrustStoreConfig?: TrustStoreConfig | undefined;
466
+ }
416
467
  export interface DistributionConfig {
417
468
  CallerReference: string | undefined;
418
469
  Aliases?: Aliases | undefined;
@@ -436,6 +487,8 @@ export interface DistributionConfig {
436
487
  AnycastIpListId?: string | undefined;
437
488
  TenantConfig?: TenantConfig | undefined;
438
489
  ConnectionMode?: ConnectionMode | undefined;
490
+ ViewerMtlsConfig?: ViewerMtlsConfig | undefined;
491
+ ConnectionFunctionAssociation?: ConnectionFunctionAssociation | undefined;
439
492
  }
440
493
  export interface Distribution {
441
494
  Id: string | undefined;
@@ -466,6 +519,7 @@ export interface CreateAnycastIpListRequest {
466
519
  IpCount: number | undefined;
467
520
  Tags?: Tags | undefined;
468
521
  IpAddressType?: IpAddressType | undefined;
522
+ IpamCidrConfigs?: IpamCidrConfig[] | undefined;
469
523
  }
470
524
  export interface CreateAnycastIpListResult {
471
525
  AnycastIpList?: AnycastIpList | undefined;
@@ -500,6 +554,39 @@ export interface CreateCloudFrontOriginAccessIdentityResult {
500
554
  Location?: string | undefined;
501
555
  ETag?: string | undefined;
502
556
  }
557
+ export interface KeyValueStoreAssociation {
558
+ KeyValueStoreARN: string | undefined;
559
+ }
560
+ export interface KeyValueStoreAssociations {
561
+ Quantity: number | undefined;
562
+ Items?: KeyValueStoreAssociation[] | undefined;
563
+ }
564
+ export interface FunctionConfig {
565
+ Comment: string | undefined;
566
+ Runtime: FunctionRuntime | undefined;
567
+ KeyValueStoreAssociations?: KeyValueStoreAssociations | undefined;
568
+ }
569
+ export interface CreateConnectionFunctionRequest {
570
+ Name: string | undefined;
571
+ ConnectionFunctionConfig: FunctionConfig | undefined;
572
+ ConnectionFunctionCode: Uint8Array | undefined;
573
+ Tags?: Tags | undefined;
574
+ }
575
+ export interface ConnectionFunctionSummary {
576
+ Name: string | undefined;
577
+ Id: string | undefined;
578
+ ConnectionFunctionConfig: FunctionConfig | undefined;
579
+ ConnectionFunctionArn: string | undefined;
580
+ Status: string | undefined;
581
+ Stage: FunctionStage | undefined;
582
+ CreatedTime: Date | undefined;
583
+ LastModifiedTime: Date | undefined;
584
+ }
585
+ export interface CreateConnectionFunctionResult {
586
+ ConnectionFunctionSummary?: ConnectionFunctionSummary | undefined;
587
+ Location?: string | undefined;
588
+ ETag?: string | undefined;
589
+ }
503
590
  export interface CreateConnectionGroupRequest {
504
591
  Name: string | undefined;
505
592
  Ipv6Enabled?: boolean | undefined;
@@ -729,18 +816,6 @@ export interface CreateFieldLevelEncryptionProfileResult {
729
816
  Location?: string | undefined;
730
817
  ETag?: string | undefined;
731
818
  }
732
- export interface KeyValueStoreAssociation {
733
- KeyValueStoreARN: string | undefined;
734
- }
735
- export interface KeyValueStoreAssociations {
736
- Quantity: number | undefined;
737
- Items?: KeyValueStoreAssociation[] | undefined;
738
- }
739
- export interface FunctionConfig {
740
- Comment: string | undefined;
741
- Runtime: FunctionRuntime | undefined;
742
- KeyValueStoreAssociations?: KeyValueStoreAssociations | undefined;
743
- }
744
819
  export interface CreateFunctionRequest {
745
820
  Name: string | undefined;
746
821
  FunctionConfig: FunctionConfig | undefined;
@@ -1112,6 +1187,24 @@ export interface CreateStreamingDistributionWithTagsResult {
1112
1187
  Location?: string | undefined;
1113
1188
  ETag?: string | undefined;
1114
1189
  }
1190
+ export interface CreateTrustStoreRequest {
1191
+ Name: string | undefined;
1192
+ CaCertificatesBundleSource: CaCertificatesBundleSource | undefined;
1193
+ Tags?: Tags | undefined;
1194
+ }
1195
+ export interface TrustStore {
1196
+ Id?: string | undefined;
1197
+ Arn?: string | undefined;
1198
+ Name?: string | undefined;
1199
+ Status?: TrustStoreStatus | undefined;
1200
+ NumberOfCaCertificates?: number | undefined;
1201
+ LastModifiedTime?: Date | undefined;
1202
+ Reason?: string | undefined;
1203
+ }
1204
+ export interface CreateTrustStoreResult {
1205
+ TrustStore?: TrustStore | undefined;
1206
+ ETag?: string | undefined;
1207
+ }
1115
1208
  export interface VpcOriginEndpointConfig {
1116
1209
  Name: string | undefined;
1117
1210
  Arn: string | undefined;
@@ -1150,6 +1243,10 @@ export interface DeleteCloudFrontOriginAccessIdentityRequest {
1150
1243
  Id: string | undefined;
1151
1244
  IfMatch?: string | undefined;
1152
1245
  }
1246
+ export interface DeleteConnectionFunctionRequest {
1247
+ Id: string | undefined;
1248
+ IfMatch: string | undefined;
1249
+ }
1153
1250
  export interface DeleteConnectionGroupRequest {
1154
1251
  Id: string | undefined;
1155
1252
  IfMatch: string | undefined;
@@ -1217,6 +1314,10 @@ export interface DeleteStreamingDistributionRequest {
1217
1314
  Id: string | undefined;
1218
1315
  IfMatch?: string | undefined;
1219
1316
  }
1317
+ export interface DeleteTrustStoreRequest {
1318
+ Id: string | undefined;
1319
+ IfMatch: string | undefined;
1320
+ }
1220
1321
  export interface DeleteVpcOriginRequest {
1221
1322
  Id: string | undefined;
1222
1323
  IfMatch: string | undefined;
@@ -1225,6 +1326,14 @@ export interface DeleteVpcOriginResult {
1225
1326
  VpcOrigin?: VpcOrigin | undefined;
1226
1327
  ETag?: string | undefined;
1227
1328
  }
1329
+ export interface DescribeConnectionFunctionRequest {
1330
+ Identifier: string | undefined;
1331
+ Stage?: FunctionStage | undefined;
1332
+ }
1333
+ export interface DescribeConnectionFunctionResult {
1334
+ ConnectionFunctionSummary?: ConnectionFunctionSummary | undefined;
1335
+ ETag?: string | undefined;
1336
+ }
1228
1337
  export interface DescribeFunctionRequest {
1229
1338
  Name: string | undefined;
1230
1339
  Stage?: FunctionStage | undefined;
@@ -1293,6 +1402,15 @@ export interface GetCloudFrontOriginAccessIdentityConfigResult {
1293
1402
  | undefined;
1294
1403
  ETag?: string | undefined;
1295
1404
  }
1405
+ export interface GetConnectionFunctionRequest {
1406
+ Identifier: string | undefined;
1407
+ Stage?: FunctionStage | undefined;
1408
+ }
1409
+ export interface GetConnectionFunctionResult {
1410
+ ConnectionFunctionCode?: Uint8Array | undefined;
1411
+ ETag?: string | undefined;
1412
+ ContentType?: string | undefined;
1413
+ }
1296
1414
  export interface GetConnectionGroupRequest {
1297
1415
  Identifier: string | undefined;
1298
1416
  }
@@ -1421,72 +1539,3 @@ export interface GetKeyGroupConfigResult {
1421
1539
  export interface GetManagedCertificateDetailsRequest {
1422
1540
  Identifier: string | undefined;
1423
1541
  }
1424
- export interface ValidationTokenDetail {
1425
- Domain: string | undefined;
1426
- RedirectTo?: string | undefined;
1427
- RedirectFrom?: string | undefined;
1428
- }
1429
- export interface ManagedCertificateDetails {
1430
- CertificateArn?: string | undefined;
1431
- CertificateStatus?: ManagedCertificateStatus | undefined;
1432
- ValidationTokenHost?: ValidationTokenHost | undefined;
1433
- ValidationTokenDetails?: ValidationTokenDetail[] | undefined;
1434
- }
1435
- export interface GetManagedCertificateDetailsResult {
1436
- ManagedCertificateDetails?: ManagedCertificateDetails | undefined;
1437
- }
1438
- export interface GetMonitoringSubscriptionRequest {
1439
- DistributionId: string | undefined;
1440
- }
1441
- export interface GetMonitoringSubscriptionResult {
1442
- MonitoringSubscription?: MonitoringSubscription | undefined;
1443
- }
1444
- export interface GetOriginAccessControlRequest {
1445
- Id: string | undefined;
1446
- }
1447
- export interface GetOriginAccessControlResult {
1448
- OriginAccessControl?: OriginAccessControl | undefined;
1449
- ETag?: string | undefined;
1450
- }
1451
- export interface GetOriginAccessControlConfigRequest {
1452
- Id: string | undefined;
1453
- }
1454
- export interface GetOriginAccessControlConfigResult {
1455
- OriginAccessControlConfig?: OriginAccessControlConfig | undefined;
1456
- ETag?: string | undefined;
1457
- }
1458
- export interface GetOriginRequestPolicyRequest {
1459
- Id: string | undefined;
1460
- }
1461
- export interface GetOriginRequestPolicyResult {
1462
- OriginRequestPolicy?: OriginRequestPolicy | undefined;
1463
- ETag?: string | undefined;
1464
- }
1465
- export interface GetOriginRequestPolicyConfigRequest {
1466
- Id: string | undefined;
1467
- }
1468
- export interface GetOriginRequestPolicyConfigResult {
1469
- OriginRequestPolicyConfig?: OriginRequestPolicyConfig | undefined;
1470
- ETag?: string | undefined;
1471
- }
1472
- export interface GetPublicKeyRequest {
1473
- Id: string | undefined;
1474
- }
1475
- export interface GetPublicKeyResult {
1476
- PublicKey?: PublicKey | undefined;
1477
- ETag?: string | undefined;
1478
- }
1479
- export interface GetPublicKeyConfigRequest {
1480
- Id: string | undefined;
1481
- }
1482
- export interface GetPublicKeyConfigResult {
1483
- PublicKeyConfig?: PublicKeyConfig | undefined;
1484
- ETag?: string | undefined;
1485
- }
1486
- export interface GetRealtimeLogConfigRequest {
1487
- Name?: string | undefined;
1488
- ARN?: string | undefined;
1489
- }
1490
- export interface GetRealtimeLogConfigResult {
1491
- RealtimeLogConfig?: RealtimeLogConfig | undefined;
1492
- }