@aws-sdk/client-cloudfront 3.301.0 → 3.303.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.
@@ -2775,11 +2775,16 @@ export interface ListOriginAccessControlsResult {
2775
2775
  }
2776
2776
  /**
2777
2777
  * @public
2778
+ * @enum
2778
2779
  */
2779
- export declare enum OriginRequestPolicyType {
2780
- custom = "custom",
2781
- managed = "managed"
2782
- }
2780
+ export declare const OriginRequestPolicyType: {
2781
+ readonly custom: "custom";
2782
+ readonly managed: "managed";
2783
+ };
2784
+ /**
2785
+ * @public
2786
+ */
2787
+ export type OriginRequestPolicyType = (typeof OriginRequestPolicyType)[keyof typeof OriginRequestPolicyType];
2783
2788
  /**
2784
2789
  * @public
2785
2790
  */
@@ -2999,11 +3004,16 @@ export interface ListRealtimeLogConfigsResult {
2999
3004
  }
3000
3005
  /**
3001
3006
  * @public
3007
+ * @enum
3002
3008
  */
3003
- export declare enum ResponseHeadersPolicyType {
3004
- custom = "custom",
3005
- managed = "managed"
3006
- }
3009
+ export declare const ResponseHeadersPolicyType: {
3010
+ readonly custom: "custom";
3011
+ readonly managed: "managed";
3012
+ };
3013
+ /**
3014
+ * @public
3015
+ */
3016
+ export type ResponseHeadersPolicyType = (typeof ResponseHeadersPolicyType)[keyof typeof ResponseHeadersPolicyType];
3007
3017
  /**
3008
3018
  * @public
3009
3019
  */
@@ -1,15 +1,17 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
2
  import { CloudFrontServiceException as __BaseException } from "./CloudFrontServiceException";
3
- export declare enum ResponseHeadersPolicyAccessControlAllowMethodsValues {
4
- ALL = "ALL",
5
- DELETE = "DELETE",
6
- GET = "GET",
7
- HEAD = "HEAD",
8
- OPTIONS = "OPTIONS",
9
- PATCH = "PATCH",
10
- POST = "POST",
11
- PUT = "PUT",
12
- }
3
+ export declare const ResponseHeadersPolicyAccessControlAllowMethodsValues: {
4
+ readonly ALL: "ALL";
5
+ readonly DELETE: "DELETE";
6
+ readonly GET: "GET";
7
+ readonly HEAD: "HEAD";
8
+ readonly OPTIONS: "OPTIONS";
9
+ readonly PATCH: "PATCH";
10
+ readonly POST: "POST";
11
+ readonly PUT: "PUT";
12
+ };
13
+ export type ResponseHeadersPolicyAccessControlAllowMethodsValues =
14
+ (typeof ResponseHeadersPolicyAccessControlAllowMethodsValues)[keyof typeof ResponseHeadersPolicyAccessControlAllowMethodsValues];
13
15
  export declare class AccessDenied extends __BaseException {
14
16
  readonly name: "AccessDenied";
15
17
  readonly $fault: "client";
@@ -42,24 +44,27 @@ export interface Aliases {
42
44
  Quantity: number | undefined;
43
45
  Items?: string[];
44
46
  }
45
- export declare enum ICPRecordalStatus {
46
- APPROVED = "APPROVED",
47
- PENDING = "PENDING",
48
- SUSPENDED = "SUSPENDED",
49
- }
47
+ export declare const ICPRecordalStatus: {
48
+ readonly APPROVED: "APPROVED";
49
+ readonly PENDING: "PENDING";
50
+ readonly SUSPENDED: "SUSPENDED";
51
+ };
52
+ export type ICPRecordalStatus =
53
+ (typeof ICPRecordalStatus)[keyof typeof ICPRecordalStatus];
50
54
  export interface AliasICPRecordal {
51
55
  CNAME?: string;
52
56
  ICPRecordalStatus?: ICPRecordalStatus | string;
53
57
  }
54
- export declare enum Method {
55
- DELETE = "DELETE",
56
- GET = "GET",
57
- HEAD = "HEAD",
58
- OPTIONS = "OPTIONS",
59
- PATCH = "PATCH",
60
- POST = "POST",
61
- PUT = "PUT",
62
- }
58
+ export declare const Method: {
59
+ readonly DELETE: "DELETE";
60
+ readonly GET: "GET";
61
+ readonly HEAD: "HEAD";
62
+ readonly OPTIONS: "OPTIONS";
63
+ readonly PATCH: "PATCH";
64
+ readonly POST: "POST";
65
+ readonly PUT: "PUT";
66
+ };
67
+ export type Method = (typeof Method)[keyof typeof Method];
63
68
  export interface CachedMethods {
64
69
  Quantity: number | undefined;
65
70
  Items: (Method | string)[] | undefined;
@@ -105,11 +110,12 @@ export declare class BatchTooLarge extends __BaseException {
105
110
  Message?: string;
106
111
  constructor(opts: __ExceptionOptionType<BatchTooLarge, __BaseException>);
107
112
  }
108
- export declare enum ItemSelection {
109
- all = "all",
110
- none = "none",
111
- whitelist = "whitelist",
112
- }
113
+ export declare const ItemSelection: {
114
+ readonly all: "all";
115
+ readonly none: "none";
116
+ readonly whitelist: "whitelist";
117
+ };
118
+ export type ItemSelection = (typeof ItemSelection)[keyof typeof ItemSelection];
113
119
  export interface CookieNames {
114
120
  Quantity: number | undefined;
115
121
  Items?: string[];
@@ -132,12 +138,13 @@ export interface ForwardedValues {
132
138
  Headers?: Headers;
133
139
  QueryStringCacheKeys?: QueryStringCacheKeys;
134
140
  }
135
- export declare enum EventType {
136
- origin_request = "origin-request",
137
- origin_response = "origin-response",
138
- viewer_request = "viewer-request",
139
- viewer_response = "viewer-response",
140
- }
141
+ export declare const EventType: {
142
+ readonly origin_request: "origin-request";
143
+ readonly origin_response: "origin-response";
144
+ readonly viewer_request: "viewer-request";
145
+ readonly viewer_response: "viewer-response";
146
+ };
147
+ export type EventType = (typeof EventType)[keyof typeof EventType];
141
148
  export interface FunctionAssociation {
142
149
  FunctionARN: string | undefined;
143
150
  EventType: EventType | string | undefined;
@@ -165,11 +172,13 @@ export interface TrustedSigners {
165
172
  Quantity: number | undefined;
166
173
  Items?: string[];
167
174
  }
168
- export declare enum ViewerProtocolPolicy {
169
- allow_all = "allow-all",
170
- https_only = "https-only",
171
- redirect_to_https = "redirect-to-https",
172
- }
175
+ export declare const ViewerProtocolPolicy: {
176
+ readonly allow_all: "allow-all";
177
+ readonly https_only: "https-only";
178
+ readonly redirect_to_https: "redirect-to-https";
179
+ };
180
+ export type ViewerProtocolPolicy =
181
+ (typeof ViewerProtocolPolicy)[keyof typeof ViewerProtocolPolicy];
173
182
  export interface CacheBehavior {
174
183
  PathPattern: string | undefined;
175
184
  TargetOriginId: string | undefined;
@@ -195,30 +204,36 @@ export interface CacheBehaviors {
195
204
  Quantity: number | undefined;
196
205
  Items?: CacheBehavior[];
197
206
  }
198
- export declare enum CachePolicyCookieBehavior {
199
- all = "all",
200
- allExcept = "allExcept",
201
- none = "none",
202
- whitelist = "whitelist",
203
- }
207
+ export declare const CachePolicyCookieBehavior: {
208
+ readonly all: "all";
209
+ readonly allExcept: "allExcept";
210
+ readonly none: "none";
211
+ readonly whitelist: "whitelist";
212
+ };
213
+ export type CachePolicyCookieBehavior =
214
+ (typeof CachePolicyCookieBehavior)[keyof typeof CachePolicyCookieBehavior];
204
215
  export interface CachePolicyCookiesConfig {
205
216
  CookieBehavior: CachePolicyCookieBehavior | string | undefined;
206
217
  Cookies?: CookieNames;
207
218
  }
208
- export declare enum CachePolicyHeaderBehavior {
209
- none = "none",
210
- whitelist = "whitelist",
211
- }
219
+ export declare const CachePolicyHeaderBehavior: {
220
+ readonly none: "none";
221
+ readonly whitelist: "whitelist";
222
+ };
223
+ export type CachePolicyHeaderBehavior =
224
+ (typeof CachePolicyHeaderBehavior)[keyof typeof CachePolicyHeaderBehavior];
212
225
  export interface CachePolicyHeadersConfig {
213
226
  HeaderBehavior: CachePolicyHeaderBehavior | string | undefined;
214
227
  Headers?: Headers;
215
228
  }
216
- export declare enum CachePolicyQueryStringBehavior {
217
- all = "all",
218
- allExcept = "allExcept",
219
- none = "none",
220
- whitelist = "whitelist",
221
- }
229
+ export declare const CachePolicyQueryStringBehavior: {
230
+ readonly all: "all";
231
+ readonly allExcept: "allExcept";
232
+ readonly none: "none";
233
+ readonly whitelist: "whitelist";
234
+ };
235
+ export type CachePolicyQueryStringBehavior =
236
+ (typeof CachePolicyQueryStringBehavior)[keyof typeof CachePolicyQueryStringBehavior];
222
237
  export interface QueryStringNames {
223
238
  Quantity: number | undefined;
224
239
  Items?: string[];
@@ -261,10 +276,12 @@ export declare class CachePolicyInUse extends __BaseException {
261
276
  Message?: string;
262
277
  constructor(opts: __ExceptionOptionType<CachePolicyInUse, __BaseException>);
263
278
  }
264
- export declare enum CachePolicyType {
265
- custom = "custom",
266
- managed = "managed",
267
- }
279
+ export declare const CachePolicyType: {
280
+ readonly custom: "custom";
281
+ readonly managed: "managed";
282
+ };
283
+ export type CachePolicyType =
284
+ (typeof CachePolicyType)[keyof typeof CachePolicyType];
268
285
  export interface CachePolicySummary {
269
286
  Type: CachePolicyType | string | undefined;
270
287
  CachePolicy: CachePolicy | undefined;
@@ -286,11 +303,13 @@ export declare class CannotChangeImmutablePublicKeyFields extends __BaseExceptio
286
303
  >
287
304
  );
288
305
  }
289
- export declare enum CertificateSource {
290
- acm = "acm",
291
- cloudfront = "cloudfront",
292
- iam = "iam",
293
- }
306
+ export declare const CertificateSource: {
307
+ readonly acm: "acm";
308
+ readonly cloudfront: "cloudfront";
309
+ readonly iam: "iam";
310
+ };
311
+ export type CertificateSource =
312
+ (typeof CertificateSource)[keyof typeof CertificateSource];
294
313
  export declare class CNAMEAlreadyExists extends __BaseException {
295
314
  readonly name: "CNAMEAlreadyExists";
296
315
  readonly $fault: "client";
@@ -333,12 +352,13 @@ export interface DefaultCacheBehavior {
333
352
  DefaultTTL?: number;
334
353
  MaxTTL?: number;
335
354
  }
336
- export declare enum HttpVersion {
337
- http1_1 = "http1.1",
338
- http2 = "http2",
339
- http2and3 = "http2and3",
340
- http3 = "http3",
341
- }
355
+ export declare const HttpVersion: {
356
+ readonly http1_1: "http1.1";
357
+ readonly http2: "http2";
358
+ readonly http2and3: "http2and3";
359
+ readonly http3: "http3";
360
+ };
361
+ export type HttpVersion = (typeof HttpVersion)[keyof typeof HttpVersion];
342
362
  export interface LoggingConfig {
343
363
  Enabled: boolean | undefined;
344
364
  IncludeCookies: boolean | undefined;
@@ -376,17 +396,20 @@ export interface CustomHeaders {
376
396
  Quantity: number | undefined;
377
397
  Items?: OriginCustomHeader[];
378
398
  }
379
- export declare enum OriginProtocolPolicy {
380
- http_only = "http-only",
381
- https_only = "https-only",
382
- match_viewer = "match-viewer",
383
- }
384
- export declare enum SslProtocol {
385
- SSLv3 = "SSLv3",
386
- TLSv1 = "TLSv1",
387
- TLSv1_1 = "TLSv1.1",
388
- TLSv1_2 = "TLSv1.2",
389
- }
399
+ export declare const OriginProtocolPolicy: {
400
+ readonly http_only: "http-only";
401
+ readonly https_only: "https-only";
402
+ readonly match_viewer: "match-viewer";
403
+ };
404
+ export type OriginProtocolPolicy =
405
+ (typeof OriginProtocolPolicy)[keyof typeof OriginProtocolPolicy];
406
+ export declare const SslProtocol: {
407
+ readonly SSLv3: "SSLv3";
408
+ readonly TLSv1: "TLSv1";
409
+ readonly TLSv1_1: "TLSv1.1";
410
+ readonly TLSv1_2: "TLSv1.2";
411
+ };
412
+ export type SslProtocol = (typeof SslProtocol)[keyof typeof SslProtocol];
390
413
  export interface OriginSslProtocols {
391
414
  Quantity: number | undefined;
392
415
  Items: (SslProtocol | string)[] | undefined;
@@ -422,16 +445,19 @@ export interface Origins {
422
445
  Quantity: number | undefined;
423
446
  Items: Origin[] | undefined;
424
447
  }
425
- export declare enum PriceClass {
426
- PriceClass_100 = "PriceClass_100",
427
- PriceClass_200 = "PriceClass_200",
428
- PriceClass_All = "PriceClass_All",
429
- }
430
- export declare enum GeoRestrictionType {
431
- blacklist = "blacklist",
432
- none = "none",
433
- whitelist = "whitelist",
434
- }
448
+ export declare const PriceClass: {
449
+ readonly PriceClass_100: "PriceClass_100";
450
+ readonly PriceClass_200: "PriceClass_200";
451
+ readonly PriceClass_All: "PriceClass_All";
452
+ };
453
+ export type PriceClass = (typeof PriceClass)[keyof typeof PriceClass];
454
+ export declare const GeoRestrictionType: {
455
+ readonly blacklist: "blacklist";
456
+ readonly none: "none";
457
+ readonly whitelist: "whitelist";
458
+ };
459
+ export type GeoRestrictionType =
460
+ (typeof GeoRestrictionType)[keyof typeof GeoRestrictionType];
435
461
  export interface GeoRestriction {
436
462
  RestrictionType: GeoRestrictionType | string | undefined;
437
463
  Quantity: number | undefined;
@@ -440,20 +466,24 @@ export interface GeoRestriction {
440
466
  export interface Restrictions {
441
467
  GeoRestriction: GeoRestriction | undefined;
442
468
  }
443
- export declare enum MinimumProtocolVersion {
444
- SSLv3 = "SSLv3",
445
- TLSv1 = "TLSv1",
446
- TLSv1_1_2016 = "TLSv1.1_2016",
447
- TLSv1_2016 = "TLSv1_2016",
448
- TLSv1_2_2018 = "TLSv1.2_2018",
449
- TLSv1_2_2019 = "TLSv1.2_2019",
450
- TLSv1_2_2021 = "TLSv1.2_2021",
451
- }
452
- export declare enum SSLSupportMethod {
453
- sni_only = "sni-only",
454
- static_ip = "static-ip",
455
- vip = "vip",
456
- }
469
+ export declare const MinimumProtocolVersion: {
470
+ readonly SSLv3: "SSLv3";
471
+ readonly TLSv1: "TLSv1";
472
+ readonly TLSv1_1_2016: "TLSv1.1_2016";
473
+ readonly TLSv1_2016: "TLSv1_2016";
474
+ readonly TLSv1_2_2018: "TLSv1.2_2018";
475
+ readonly TLSv1_2_2019: "TLSv1.2_2019";
476
+ readonly TLSv1_2_2021: "TLSv1.2_2021";
477
+ };
478
+ export type MinimumProtocolVersion =
479
+ (typeof MinimumProtocolVersion)[keyof typeof MinimumProtocolVersion];
480
+ export declare const SSLSupportMethod: {
481
+ readonly sni_only: "sni-only";
482
+ readonly static_ip: "static-ip";
483
+ readonly vip: "vip";
484
+ };
485
+ export type SSLSupportMethod =
486
+ (typeof SSLSupportMethod)[keyof typeof SSLSupportMethod];
457
487
  export interface ViewerCertificate {
458
488
  CloudFrontDefaultCertificate?: boolean;
459
489
  IAMCertificateId?: string;
@@ -1103,10 +1133,12 @@ export interface ContinuousDeploymentSingleWeightConfig {
1103
1133
  Weight: number | undefined;
1104
1134
  SessionStickinessConfig?: SessionStickinessConfig;
1105
1135
  }
1106
- export declare enum ContinuousDeploymentPolicyType {
1107
- SingleHeader = "SingleHeader",
1108
- SingleWeight = "SingleWeight",
1109
- }
1136
+ export declare const ContinuousDeploymentPolicyType: {
1137
+ readonly SingleHeader: "SingleHeader";
1138
+ readonly SingleWeight: "SingleWeight";
1139
+ };
1140
+ export type ContinuousDeploymentPolicyType =
1141
+ (typeof ContinuousDeploymentPolicyType)[keyof typeof ContinuousDeploymentPolicyType];
1110
1142
  export interface TrafficConfig {
1111
1143
  SingleWeightConfig?: ContinuousDeploymentSingleWeightConfig;
1112
1144
  SingleHeaderConfig?: ContinuousDeploymentSingleHeaderConfig;
@@ -1241,9 +1273,10 @@ export declare class InvalidTagging extends __BaseException {
1241
1273
  Message?: string;
1242
1274
  constructor(opts: __ExceptionOptionType<InvalidTagging, __BaseException>);
1243
1275
  }
1244
- export declare enum Format {
1245
- URLEncoded = "URLEncoded",
1246
- }
1276
+ export declare const Format: {
1277
+ readonly URLEncoded: "URLEncoded";
1278
+ };
1279
+ export type Format = (typeof Format)[keyof typeof Format];
1247
1280
  export interface ContentTypeProfile {
1248
1281
  Format: Format | string | undefined;
1249
1282
  ProfileId?: string;
@@ -1448,9 +1481,11 @@ export declare class TooManyFieldLevelEncryptionProfiles extends __BaseException
1448
1481
  >
1449
1482
  );
1450
1483
  }
1451
- export declare enum FunctionRuntime {
1452
- cloudfront_js_1_0 = "cloudfront-js-1.0",
1453
- }
1484
+ export declare const FunctionRuntime: {
1485
+ readonly cloudfront_js_1_0: "cloudfront-js-1.0";
1486
+ };
1487
+ export type FunctionRuntime =
1488
+ (typeof FunctionRuntime)[keyof typeof FunctionRuntime];
1454
1489
  export interface FunctionConfig {
1455
1490
  Comment: string | undefined;
1456
1491
  Runtime: FunctionRuntime | string | undefined;
@@ -1460,10 +1495,11 @@ export interface CreateFunctionRequest {
1460
1495
  FunctionConfig: FunctionConfig | undefined;
1461
1496
  FunctionCode: Uint8Array | undefined;
1462
1497
  }
1463
- export declare enum FunctionStage {
1464
- DEVELOPMENT = "DEVELOPMENT",
1465
- LIVE = "LIVE",
1466
- }
1498
+ export declare const FunctionStage: {
1499
+ readonly DEVELOPMENT: "DEVELOPMENT";
1500
+ readonly LIVE: "LIVE";
1501
+ };
1502
+ export type FunctionStage = (typeof FunctionStage)[keyof typeof FunctionStage];
1467
1503
  export interface FunctionMetadata {
1468
1504
  FunctionARN: string | undefined;
1469
1505
  Stage?: FunctionStage | string;
@@ -1581,10 +1617,12 @@ export declare class TooManyPublicKeysInKeyGroup extends __BaseException {
1581
1617
  opts: __ExceptionOptionType<TooManyPublicKeysInKeyGroup, __BaseException>
1582
1618
  );
1583
1619
  }
1584
- export declare enum RealtimeMetricsSubscriptionStatus {
1585
- Disabled = "Disabled",
1586
- Enabled = "Enabled",
1587
- }
1620
+ export declare const RealtimeMetricsSubscriptionStatus: {
1621
+ readonly Disabled: "Disabled";
1622
+ readonly Enabled: "Enabled";
1623
+ };
1624
+ export type RealtimeMetricsSubscriptionStatus =
1625
+ (typeof RealtimeMetricsSubscriptionStatus)[keyof typeof RealtimeMetricsSubscriptionStatus];
1588
1626
  export interface RealtimeMetricsSubscriptionConfig {
1589
1627
  RealtimeMetricsSubscriptionStatus:
1590
1628
  | RealtimeMetricsSubscriptionStatus
@@ -1612,18 +1650,24 @@ export declare class MonitoringSubscriptionAlreadyExists extends __BaseException
1612
1650
  >
1613
1651
  );
1614
1652
  }
1615
- export declare enum OriginAccessControlOriginTypes {
1616
- mediastore = "mediastore",
1617
- s3 = "s3",
1618
- }
1619
- export declare enum OriginAccessControlSigningBehaviors {
1620
- always = "always",
1621
- never = "never",
1622
- no_override = "no-override",
1623
- }
1624
- export declare enum OriginAccessControlSigningProtocols {
1625
- sigv4 = "sigv4",
1626
- }
1653
+ export declare const OriginAccessControlOriginTypes: {
1654
+ readonly mediastore: "mediastore";
1655
+ readonly s3: "s3";
1656
+ };
1657
+ export type OriginAccessControlOriginTypes =
1658
+ (typeof OriginAccessControlOriginTypes)[keyof typeof OriginAccessControlOriginTypes];
1659
+ export declare const OriginAccessControlSigningBehaviors: {
1660
+ readonly always: "always";
1661
+ readonly never: "never";
1662
+ readonly no_override: "no-override";
1663
+ };
1664
+ export type OriginAccessControlSigningBehaviors =
1665
+ (typeof OriginAccessControlSigningBehaviors)[keyof typeof OriginAccessControlSigningBehaviors];
1666
+ export declare const OriginAccessControlSigningProtocols: {
1667
+ readonly sigv4: "sigv4";
1668
+ };
1669
+ export type OriginAccessControlSigningProtocols =
1670
+ (typeof OriginAccessControlSigningProtocols)[keyof typeof OriginAccessControlSigningProtocols];
1627
1671
  export interface OriginAccessControlConfig {
1628
1672
  Name: string | undefined;
1629
1673
  Description?: string;
@@ -1665,33 +1709,39 @@ export declare class TooManyOriginAccessControls extends __BaseException {
1665
1709
  opts: __ExceptionOptionType<TooManyOriginAccessControls, __BaseException>
1666
1710
  );
1667
1711
  }
1668
- export declare enum OriginRequestPolicyCookieBehavior {
1669
- all = "all",
1670
- allExcept = "allExcept",
1671
- none = "none",
1672
- whitelist = "whitelist",
1673
- }
1712
+ export declare const OriginRequestPolicyCookieBehavior: {
1713
+ readonly all: "all";
1714
+ readonly allExcept: "allExcept";
1715
+ readonly none: "none";
1716
+ readonly whitelist: "whitelist";
1717
+ };
1718
+ export type OriginRequestPolicyCookieBehavior =
1719
+ (typeof OriginRequestPolicyCookieBehavior)[keyof typeof OriginRequestPolicyCookieBehavior];
1674
1720
  export interface OriginRequestPolicyCookiesConfig {
1675
1721
  CookieBehavior: OriginRequestPolicyCookieBehavior | string | undefined;
1676
1722
  Cookies?: CookieNames;
1677
1723
  }
1678
- export declare enum OriginRequestPolicyHeaderBehavior {
1679
- allExcept = "allExcept",
1680
- allViewer = "allViewer",
1681
- allViewerAndWhitelistCloudFront = "allViewerAndWhitelistCloudFront",
1682
- none = "none",
1683
- whitelist = "whitelist",
1684
- }
1724
+ export declare const OriginRequestPolicyHeaderBehavior: {
1725
+ readonly allExcept: "allExcept";
1726
+ readonly allViewer: "allViewer";
1727
+ readonly allViewerAndWhitelistCloudFront: "allViewerAndWhitelistCloudFront";
1728
+ readonly none: "none";
1729
+ readonly whitelist: "whitelist";
1730
+ };
1731
+ export type OriginRequestPolicyHeaderBehavior =
1732
+ (typeof OriginRequestPolicyHeaderBehavior)[keyof typeof OriginRequestPolicyHeaderBehavior];
1685
1733
  export interface OriginRequestPolicyHeadersConfig {
1686
1734
  HeaderBehavior: OriginRequestPolicyHeaderBehavior | string | undefined;
1687
1735
  Headers?: Headers;
1688
1736
  }
1689
- export declare enum OriginRequestPolicyQueryStringBehavior {
1690
- all = "all",
1691
- allExcept = "allExcept",
1692
- none = "none",
1693
- whitelist = "whitelist",
1694
- }
1737
+ export declare const OriginRequestPolicyQueryStringBehavior: {
1738
+ readonly all: "all";
1739
+ readonly allExcept: "allExcept";
1740
+ readonly none: "none";
1741
+ readonly whitelist: "whitelist";
1742
+ };
1743
+ export type OriginRequestPolicyQueryStringBehavior =
1744
+ (typeof OriginRequestPolicyQueryStringBehavior)[keyof typeof OriginRequestPolicyQueryStringBehavior];
1695
1745
  export interface OriginRequestPolicyQueryStringsConfig {
1696
1746
  QueryStringBehavior:
1697
1747
  | OriginRequestPolicyQueryStringBehavior
@@ -1900,24 +1950,28 @@ export interface ResponseHeadersPolicyContentSecurityPolicy {
1900
1950
  export interface ResponseHeadersPolicyContentTypeOptions {
1901
1951
  Override: boolean | undefined;
1902
1952
  }
1903
- export declare enum FrameOptionsList {
1904
- DENY = "DENY",
1905
- SAMEORIGIN = "SAMEORIGIN",
1906
- }
1953
+ export declare const FrameOptionsList: {
1954
+ readonly DENY: "DENY";
1955
+ readonly SAMEORIGIN: "SAMEORIGIN";
1956
+ };
1957
+ export type FrameOptionsList =
1958
+ (typeof FrameOptionsList)[keyof typeof FrameOptionsList];
1907
1959
  export interface ResponseHeadersPolicyFrameOptions {
1908
1960
  Override: boolean | undefined;
1909
1961
  FrameOption: FrameOptionsList | string | undefined;
1910
1962
  }
1911
- export declare enum ReferrerPolicyList {
1912
- no_referrer = "no-referrer",
1913
- no_referrer_when_downgrade = "no-referrer-when-downgrade",
1914
- origin = "origin",
1915
- origin_when_cross_origin = "origin-when-cross-origin",
1916
- same_origin = "same-origin",
1917
- strict_origin = "strict-origin",
1918
- strict_origin_when_cross_origin = "strict-origin-when-cross-origin",
1919
- unsafe_url = "unsafe-url",
1920
- }
1963
+ export declare const ReferrerPolicyList: {
1964
+ readonly no_referrer: "no-referrer";
1965
+ readonly no_referrer_when_downgrade: "no-referrer-when-downgrade";
1966
+ readonly origin: "origin";
1967
+ readonly origin_when_cross_origin: "origin-when-cross-origin";
1968
+ readonly same_origin: "same-origin";
1969
+ readonly strict_origin: "strict-origin";
1970
+ readonly strict_origin_when_cross_origin: "strict-origin-when-cross-origin";
1971
+ readonly unsafe_url: "unsafe-url";
1972
+ };
1973
+ export type ReferrerPolicyList =
1974
+ (typeof ReferrerPolicyList)[keyof typeof ReferrerPolicyList];
1921
1975
  export interface ResponseHeadersPolicyReferrerPolicy {
1922
1976
  Override: boolean | undefined;
1923
1977
  ReferrerPolicy: ReferrerPolicyList | string | undefined;
@@ -894,10 +894,12 @@ export interface OriginAccessControlList {
894
894
  export interface ListOriginAccessControlsResult {
895
895
  OriginAccessControlList?: OriginAccessControlList;
896
896
  }
897
- export declare enum OriginRequestPolicyType {
898
- custom = "custom",
899
- managed = "managed",
900
- }
897
+ export declare const OriginRequestPolicyType: {
898
+ readonly custom: "custom";
899
+ readonly managed: "managed";
900
+ };
901
+ export type OriginRequestPolicyType =
902
+ (typeof OriginRequestPolicyType)[keyof typeof OriginRequestPolicyType];
901
903
  export interface ListOriginRequestPoliciesRequest {
902
904
  Type?: OriginRequestPolicyType | string;
903
905
  Marker?: string;
@@ -950,10 +952,12 @@ export interface RealtimeLogConfigs {
950
952
  export interface ListRealtimeLogConfigsResult {
951
953
  RealtimeLogConfigs?: RealtimeLogConfigs;
952
954
  }
953
- export declare enum ResponseHeadersPolicyType {
954
- custom = "custom",
955
- managed = "managed",
956
- }
955
+ export declare const ResponseHeadersPolicyType: {
956
+ readonly custom: "custom";
957
+ readonly managed: "managed";
958
+ };
959
+ export type ResponseHeadersPolicyType =
960
+ (typeof ResponseHeadersPolicyType)[keyof typeof ResponseHeadersPolicyType];
957
961
  export interface ListResponseHeadersPoliciesRequest {
958
962
  Type?: ResponseHeadersPolicyType | string;
959
963
  Marker?: string;