@aws-sdk/client-cloudfront 3.797.0 → 3.799.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 (204) hide show
  1. package/README.md +200 -0
  2. package/dist-cjs/index.js +2696 -655
  3. package/dist-cjs/runtimeConfig.js +1 -0
  4. package/dist-es/CloudFront.js +50 -0
  5. package/dist-es/commands/AssociateDistributionTenantWebACLCommand.js +22 -0
  6. package/dist-es/commands/AssociateDistributionWebACLCommand.js +22 -0
  7. package/dist-es/commands/CreateConnectionGroupCommand.js +22 -0
  8. package/dist-es/commands/CreateDistributionTenantCommand.js +22 -0
  9. package/dist-es/commands/CreateInvalidationForDistributionTenantCommand.js +22 -0
  10. package/dist-es/commands/DeleteConnectionGroupCommand.js +22 -0
  11. package/dist-es/commands/DeleteDistributionTenantCommand.js +22 -0
  12. package/dist-es/commands/DisassociateDistributionTenantWebACLCommand.js +22 -0
  13. package/dist-es/commands/DisassociateDistributionWebACLCommand.js +22 -0
  14. package/dist-es/commands/GetConnectionGroupByRoutingEndpointCommand.js +22 -0
  15. package/dist-es/commands/GetConnectionGroupCommand.js +22 -0
  16. package/dist-es/commands/GetDistributionTenantByDomainCommand.js +22 -0
  17. package/dist-es/commands/GetDistributionTenantCommand.js +22 -0
  18. package/dist-es/commands/GetInvalidationForDistributionTenantCommand.js +22 -0
  19. package/dist-es/commands/GetManagedCertificateDetailsCommand.js +22 -0
  20. package/dist-es/commands/ListConnectionGroupsCommand.js +22 -0
  21. package/dist-es/commands/ListDistributionTenantsByCustomizationCommand.js +22 -0
  22. package/dist-es/commands/ListDistributionTenantsCommand.js +22 -0
  23. package/dist-es/commands/ListDistributionsByConnectionModeCommand.js +23 -0
  24. package/dist-es/commands/ListDomainConflictsCommand.js +22 -0
  25. package/dist-es/commands/ListInvalidationsForDistributionTenantCommand.js +22 -0
  26. package/dist-es/commands/TestFunctionCommand.js +1 -1
  27. package/dist-es/commands/UpdateConnectionGroupCommand.js +22 -0
  28. package/dist-es/commands/UpdateDistributionCommand.js +1 -1
  29. package/dist-es/commands/UpdateDistributionTenantCommand.js +22 -0
  30. package/dist-es/commands/UpdateDistributionWithStagingConfigCommand.js +1 -1
  31. package/dist-es/commands/UpdateDomainAssociationCommand.js +22 -0
  32. package/dist-es/commands/UpdateFunctionCommand.js +1 -1
  33. package/dist-es/commands/VerifyDnsConfigurationCommand.js +22 -0
  34. package/dist-es/commands/index.js +26 -1
  35. package/dist-es/models/index.js +1 -0
  36. package/dist-es/models/models_0.js +77 -201
  37. package/dist-es/models/models_1.js +203 -58
  38. package/dist-es/models/models_2.js +52 -0
  39. package/dist-es/pagination/ListConnectionGroupsPaginator.js +4 -0
  40. package/dist-es/pagination/ListDistributionTenantsByCustomizationPaginator.js +4 -0
  41. package/dist-es/pagination/ListDistributionTenantsPaginator.js +4 -0
  42. package/dist-es/pagination/ListDistributionsByConnectionModePaginator.js +4 -0
  43. package/dist-es/pagination/ListDomainConflictsPaginator.js +4 -0
  44. package/dist-es/pagination/ListInvalidationsForDistributionTenantPaginator.js +4 -0
  45. package/dist-es/pagination/index.js +6 -0
  46. package/dist-es/protocols/Aws_restXml.js +1907 -460
  47. package/dist-es/runtimeConfig.js +2 -1
  48. package/dist-es/waiters/index.js +1 -0
  49. package/dist-es/waiters/waitForInvalidationForDistributionTenantCompleted.js +31 -0
  50. package/dist-types/CloudFront.d.ts +178 -0
  51. package/dist-types/CloudFrontClient.d.ts +27 -2
  52. package/dist-types/commands/AssociateDistributionTenantWebACLCommand.d.ts +92 -0
  53. package/dist-types/commands/AssociateDistributionWebACLCommand.d.ts +92 -0
  54. package/dist-types/commands/CopyDistributionCommand.d.ts +16 -1
  55. package/dist-types/commands/CreateConnectionGroupCommand.d.ts +123 -0
  56. package/dist-types/commands/CreateDistributionCommand.d.ts +35 -2
  57. package/dist-types/commands/CreateDistributionTenantCommand.d.ts +185 -0
  58. package/dist-types/commands/CreateDistributionWithTagsCommand.d.ts +32 -2
  59. package/dist-types/commands/CreateInvalidationForDistributionTenantCommand.d.ts +119 -0
  60. package/dist-types/commands/CreateOriginRequestPolicyCommand.d.ts +1 -1
  61. package/dist-types/commands/CreatePublicKeyCommand.d.ts +1 -1
  62. package/dist-types/commands/CreateRealtimeLogConfigCommand.d.ts +1 -1
  63. package/dist-types/commands/CreateStreamingDistributionCommand.d.ts +2 -2
  64. package/dist-types/commands/CreateStreamingDistributionWithTagsCommand.d.ts +2 -2
  65. package/dist-types/commands/DeleteConnectionGroupCommand.d.ts +90 -0
  66. package/dist-types/commands/DeleteDistributionCommand.d.ts +3 -0
  67. package/dist-types/commands/DeleteDistributionTenantCommand.d.ts +88 -0
  68. package/dist-types/commands/DisassociateDistributionTenantWebACLCommand.d.ts +90 -0
  69. package/dist-types/commands/DisassociateDistributionWebACLCommand.d.ts +90 -0
  70. package/dist-types/commands/GetConnectionGroupByRoutingEndpointCommand.d.ts +99 -0
  71. package/dist-types/commands/GetConnectionGroupCommand.d.ts +99 -0
  72. package/dist-types/commands/GetDistributionCommand.d.ts +16 -1
  73. package/dist-types/commands/GetDistributionConfigCommand.d.ts +16 -1
  74. package/dist-types/commands/GetDistributionTenantByDomainCommand.d.ts +124 -0
  75. package/dist-types/commands/GetDistributionTenantCommand.d.ts +124 -0
  76. package/dist-types/commands/GetInvalidationForDistributionTenantCommand.d.ts +95 -0
  77. package/dist-types/commands/GetManagedCertificateDetailsCommand.d.ts +89 -0
  78. package/dist-types/commands/GetStreamingDistributionCommand.d.ts +1 -1
  79. package/dist-types/commands/GetStreamingDistributionConfigCommand.d.ts +1 -1
  80. package/dist-types/commands/ListConnectionGroupsCommand.d.ts +100 -0
  81. package/dist-types/commands/ListDistributionTenantsByCustomizationCommand.d.ts +120 -0
  82. package/dist-types/commands/ListDistributionTenantsCommand.d.ts +121 -0
  83. package/dist-types/commands/ListDistributionsByAnycastIpListIdCommand.d.ts +3 -1
  84. package/dist-types/commands/ListDistributionsByConnectionModeCommand.d.ts +392 -0
  85. package/dist-types/commands/ListDistributionsByRealtimeLogConfigCommand.d.ts +3 -1
  86. package/dist-types/commands/ListDistributionsByWebACLIdCommand.d.ts +3 -1
  87. package/dist-types/commands/ListDistributionsCommand.d.ts +3 -1
  88. package/dist-types/commands/ListDomainConflictsCommand.d.ts +96 -0
  89. package/dist-types/commands/ListInvalidationsForDistributionTenantCommand.d.ts +96 -0
  90. package/dist-types/commands/ListStreamingDistributionsCommand.d.ts +3 -2
  91. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
  92. package/dist-types/commands/ListVpcOriginsCommand.d.ts +1 -1
  93. package/dist-types/commands/PublishFunctionCommand.d.ts +1 -1
  94. package/dist-types/commands/TagResourceCommand.d.ts +1 -1
  95. package/dist-types/commands/TestFunctionCommand.d.ts +1 -1
  96. package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
  97. package/dist-types/commands/UpdateCachePolicyCommand.d.ts +1 -1
  98. package/dist-types/commands/UpdateCloudFrontOriginAccessIdentityCommand.d.ts +1 -1
  99. package/dist-types/commands/UpdateConnectionGroupCommand.d.ts +123 -0
  100. package/dist-types/commands/UpdateContinuousDeploymentPolicyCommand.d.ts +1 -1
  101. package/dist-types/commands/UpdateDistributionCommand.d.ts +33 -3
  102. package/dist-types/commands/UpdateDistributionTenantCommand.d.ts +182 -0
  103. package/dist-types/commands/UpdateDistributionWithStagingConfigCommand.d.ts +17 -2
  104. package/dist-types/commands/UpdateDomainAssociationCommand.d.ts +98 -0
  105. package/dist-types/commands/UpdateFieldLevelEncryptionConfigCommand.d.ts +1 -1
  106. package/dist-types/commands/UpdateFieldLevelEncryptionProfileCommand.d.ts +1 -1
  107. package/dist-types/commands/UpdateFunctionCommand.d.ts +1 -1
  108. package/dist-types/commands/UpdateKeyGroupCommand.d.ts +1 -1
  109. package/dist-types/commands/UpdateKeyValueStoreCommand.d.ts +1 -1
  110. package/dist-types/commands/UpdateOriginAccessControlCommand.d.ts +1 -1
  111. package/dist-types/commands/UpdateOriginRequestPolicyCommand.d.ts +1 -1
  112. package/dist-types/commands/UpdatePublicKeyCommand.d.ts +1 -1
  113. package/dist-types/commands/UpdateRealtimeLogConfigCommand.d.ts +1 -1
  114. package/dist-types/commands/UpdateResponseHeadersPolicyCommand.d.ts +1 -1
  115. package/dist-types/commands/UpdateStreamingDistributionCommand.d.ts +3 -3
  116. package/dist-types/commands/UpdateVpcOriginCommand.d.ts +1 -1
  117. package/dist-types/commands/VerifyDnsConfigurationCommand.d.ts +88 -0
  118. package/dist-types/commands/index.d.ts +26 -1
  119. package/dist-types/models/index.d.ts +1 -0
  120. package/dist-types/models/models_0.d.ts +830 -869
  121. package/dist-types/models/models_1.d.ts +2571 -2123
  122. package/dist-types/models/models_2.d.ts +1244 -0
  123. package/dist-types/pagination/ListConnectionGroupsPaginator.d.ts +7 -0
  124. package/dist-types/pagination/ListDistributionTenantsByCustomizationPaginator.d.ts +7 -0
  125. package/dist-types/pagination/ListDistributionTenantsPaginator.d.ts +7 -0
  126. package/dist-types/pagination/ListDistributionsByConnectionModePaginator.d.ts +7 -0
  127. package/dist-types/pagination/ListDomainConflictsPaginator.d.ts +7 -0
  128. package/dist-types/pagination/ListInvalidationsForDistributionTenantPaginator.d.ts +7 -0
  129. package/dist-types/pagination/index.d.ts +6 -0
  130. package/dist-types/protocols/Aws_restXml.d.ts +225 -0
  131. package/dist-types/runtimeConfig.d.ts +1 -1
  132. package/dist-types/ts3.4/CloudFront.d.ts +476 -0
  133. package/dist-types/ts3.4/CloudFrontClient.d.ts +152 -2
  134. package/dist-types/ts3.4/commands/AssociateDistributionTenantWebACLCommand.d.ts +51 -0
  135. package/dist-types/ts3.4/commands/AssociateDistributionWebACLCommand.d.ts +51 -0
  136. package/dist-types/ts3.4/commands/CreateConnectionGroupCommand.d.ts +51 -0
  137. package/dist-types/ts3.4/commands/CreateDistributionTenantCommand.d.ts +51 -0
  138. package/dist-types/ts3.4/commands/CreateInvalidationForDistributionTenantCommand.d.ts +51 -0
  139. package/dist-types/ts3.4/commands/CreateOriginRequestPolicyCommand.d.ts +1 -1
  140. package/dist-types/ts3.4/commands/CreatePublicKeyCommand.d.ts +1 -1
  141. package/dist-types/ts3.4/commands/CreateRealtimeLogConfigCommand.d.ts +1 -1
  142. package/dist-types/ts3.4/commands/DeleteConnectionGroupCommand.d.ts +46 -0
  143. package/dist-types/ts3.4/commands/DeleteDistributionTenantCommand.d.ts +47 -0
  144. package/dist-types/ts3.4/commands/DisassociateDistributionTenantWebACLCommand.d.ts +51 -0
  145. package/dist-types/ts3.4/commands/DisassociateDistributionWebACLCommand.d.ts +51 -0
  146. package/dist-types/ts3.4/commands/GetConnectionGroupByRoutingEndpointCommand.d.ts +51 -0
  147. package/dist-types/ts3.4/commands/GetConnectionGroupCommand.d.ts +51 -0
  148. package/dist-types/ts3.4/commands/GetDistributionTenantByDomainCommand.d.ts +51 -0
  149. package/dist-types/ts3.4/commands/GetDistributionTenantCommand.d.ts +51 -0
  150. package/dist-types/ts3.4/commands/GetInvalidationForDistributionTenantCommand.d.ts +51 -0
  151. package/dist-types/ts3.4/commands/GetManagedCertificateDetailsCommand.d.ts +51 -0
  152. package/dist-types/ts3.4/commands/ListConnectionGroupsCommand.d.ts +51 -0
  153. package/dist-types/ts3.4/commands/ListDistributionTenantsByCustomizationCommand.d.ts +51 -0
  154. package/dist-types/ts3.4/commands/ListDistributionTenantsCommand.d.ts +51 -0
  155. package/dist-types/ts3.4/commands/ListDistributionsByConnectionModeCommand.d.ts +51 -0
  156. package/dist-types/ts3.4/commands/ListDomainConflictsCommand.d.ts +51 -0
  157. package/dist-types/ts3.4/commands/ListInvalidationsForDistributionTenantCommand.d.ts +51 -0
  158. package/dist-types/ts3.4/commands/ListStreamingDistributionsCommand.d.ts +2 -4
  159. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +1 -1
  160. package/dist-types/ts3.4/commands/ListVpcOriginsCommand.d.ts +1 -1
  161. package/dist-types/ts3.4/commands/PublishFunctionCommand.d.ts +1 -1
  162. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +1 -1
  163. package/dist-types/ts3.4/commands/TestFunctionCommand.d.ts +1 -1
  164. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +1 -1
  165. package/dist-types/ts3.4/commands/UpdateCachePolicyCommand.d.ts +1 -1
  166. package/dist-types/ts3.4/commands/UpdateCloudFrontOriginAccessIdentityCommand.d.ts +1 -1
  167. package/dist-types/ts3.4/commands/UpdateConnectionGroupCommand.d.ts +51 -0
  168. package/dist-types/ts3.4/commands/UpdateContinuousDeploymentPolicyCommand.d.ts +1 -1
  169. package/dist-types/ts3.4/commands/UpdateDistributionCommand.d.ts +1 -1
  170. package/dist-types/ts3.4/commands/UpdateDistributionTenantCommand.d.ts +51 -0
  171. package/dist-types/ts3.4/commands/UpdateDistributionWithStagingConfigCommand.d.ts +1 -1
  172. package/dist-types/ts3.4/commands/UpdateDomainAssociationCommand.d.ts +51 -0
  173. package/dist-types/ts3.4/commands/UpdateFieldLevelEncryptionConfigCommand.d.ts +1 -1
  174. package/dist-types/ts3.4/commands/UpdateFieldLevelEncryptionProfileCommand.d.ts +1 -1
  175. package/dist-types/ts3.4/commands/UpdateFunctionCommand.d.ts +1 -1
  176. package/dist-types/ts3.4/commands/UpdateKeyGroupCommand.d.ts +1 -1
  177. package/dist-types/ts3.4/commands/UpdateKeyValueStoreCommand.d.ts +1 -1
  178. package/dist-types/ts3.4/commands/UpdateOriginAccessControlCommand.d.ts +1 -1
  179. package/dist-types/ts3.4/commands/UpdateOriginRequestPolicyCommand.d.ts +1 -1
  180. package/dist-types/ts3.4/commands/UpdatePublicKeyCommand.d.ts +1 -1
  181. package/dist-types/ts3.4/commands/UpdateRealtimeLogConfigCommand.d.ts +1 -1
  182. package/dist-types/ts3.4/commands/UpdateResponseHeadersPolicyCommand.d.ts +1 -1
  183. package/dist-types/ts3.4/commands/UpdateStreamingDistributionCommand.d.ts +1 -1
  184. package/dist-types/ts3.4/commands/UpdateVpcOriginCommand.d.ts +1 -1
  185. package/dist-types/ts3.4/commands/VerifyDnsConfigurationCommand.d.ts +51 -0
  186. package/dist-types/ts3.4/commands/index.d.ts +26 -1
  187. package/dist-types/ts3.4/models/index.d.ts +1 -0
  188. package/dist-types/ts3.4/models/models_0.d.ts +190 -214
  189. package/dist-types/ts3.4/models/models_1.d.ts +413 -275
  190. package/dist-types/ts3.4/models/models_2.d.ts +363 -0
  191. package/dist-types/ts3.4/pagination/ListConnectionGroupsPaginator.d.ts +11 -0
  192. package/dist-types/ts3.4/pagination/ListDistributionTenantsByCustomizationPaginator.d.ts +11 -0
  193. package/dist-types/ts3.4/pagination/ListDistributionTenantsPaginator.d.ts +11 -0
  194. package/dist-types/ts3.4/pagination/ListDistributionsByConnectionModePaginator.d.ts +11 -0
  195. package/dist-types/ts3.4/pagination/ListDomainConflictsPaginator.d.ts +11 -0
  196. package/dist-types/ts3.4/pagination/ListInvalidationsForDistributionTenantPaginator.d.ts +11 -0
  197. package/dist-types/ts3.4/pagination/index.d.ts +6 -0
  198. package/dist-types/ts3.4/protocols/Aws_restXml.d.ts +300 -0
  199. package/dist-types/ts3.4/runtimeConfig.d.ts +1 -4
  200. package/dist-types/ts3.4/waiters/index.d.ts +1 -0
  201. package/dist-types/ts3.4/waiters/waitForInvalidationForDistributionTenantCompleted.d.ts +11 -0
  202. package/dist-types/waiters/index.d.ts +1 -0
  203. package/dist-types/waiters/waitForInvalidationForDistributionTenantCompleted.d.ts +14 -0
  204. package/package.json +11 -11
@@ -0,0 +1,1244 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { CloudFrontServiceException as __BaseException } from "./CloudFrontServiceException";
3
+ import { CachePolicy, CachePolicyConfig, CloudFrontOriginAccessIdentity, CloudFrontOriginAccessIdentityConfig, ConnectionGroup, ContinuousDeploymentPolicy, ContinuousDeploymentPolicyConfig, Customizations, Distribution, DistributionConfig, DistributionTenant, DomainItem, FieldLevelEncryption, FieldLevelEncryptionConfig, FieldLevelEncryptionProfile, FieldLevelEncryptionProfileConfig, FunctionConfig, FunctionStage, FunctionSummary, KeyGroup, KeyGroupConfig, KeyValueStore, ManagedCertificateRequest, OriginAccessControl, OriginAccessControlConfig, Parameter, Tags } from "./models_0";
4
+ import { DistributionResourceId, EndPoint, OriginRequestPolicy, OriginRequestPolicyConfig, PublicKey, PublicKeyConfig, RealtimeLogConfig, ResponseHeadersPolicy, ResponseHeadersPolicyConfig, StreamingDistribution, StreamingDistributionConfig, StreamingDistributionSummary, VpcOrigin, VpcOriginEndpointConfig } from "./models_1";
5
+ /**
6
+ * <p>A streaming distribution list.</p>
7
+ * @public
8
+ */
9
+ export interface StreamingDistributionList {
10
+ /**
11
+ * <p>The value you provided for the <code>Marker</code> request parameter.</p>
12
+ * @public
13
+ */
14
+ Marker: string | undefined;
15
+ /**
16
+ * <p>If <code>IsTruncated</code> is <code>true</code>, this element is present and contains
17
+ * the value you can use for the <code>Marker</code> request parameter to continue listing
18
+ * your RTMP distributions where they left off.</p>
19
+ * @public
20
+ */
21
+ NextMarker?: string | undefined;
22
+ /**
23
+ * <p>The value you provided for the <code>MaxItems</code> request parameter.</p>
24
+ * @public
25
+ */
26
+ MaxItems: number | undefined;
27
+ /**
28
+ * <p>A flag that indicates whether more streaming distributions remain to be listed. If
29
+ * your results were truncated, you can make a follow-up pagination request using the
30
+ * <code>Marker</code> request parameter to retrieve more distributions in the list.
31
+ * </p>
32
+ * @public
33
+ */
34
+ IsTruncated: boolean | undefined;
35
+ /**
36
+ * <p>The number of streaming distributions that were created by the current Amazon Web Services account.
37
+ * </p>
38
+ * @public
39
+ */
40
+ Quantity: number | undefined;
41
+ /**
42
+ * <p>A complex type that contains one <code>StreamingDistributionSummary</code> element for
43
+ * each distribution that was created by the current Amazon Web Services account.</p>
44
+ * @public
45
+ */
46
+ Items?: StreamingDistributionSummary[] | undefined;
47
+ }
48
+ /**
49
+ * <p>The returned result of the corresponding request.</p>
50
+ * @public
51
+ */
52
+ export interface ListStreamingDistributionsResult {
53
+ /**
54
+ * <p>The <code>StreamingDistributionList</code> type.</p>
55
+ * @public
56
+ */
57
+ StreamingDistributionList?: StreamingDistributionList | undefined;
58
+ }
59
+ /**
60
+ * <p>The request to list tags for a CloudFront resource.</p>
61
+ * @public
62
+ */
63
+ export interface ListTagsForResourceRequest {
64
+ /**
65
+ * <p>An ARN of a CloudFront resource.</p>
66
+ * @public
67
+ */
68
+ Resource: string | undefined;
69
+ }
70
+ /**
71
+ * <p>The returned result of the corresponding request.</p>
72
+ * @public
73
+ */
74
+ export interface ListTagsForResourceResult {
75
+ /**
76
+ * <p>A complex type that contains zero or more <code>Tag</code> elements.</p>
77
+ * @public
78
+ */
79
+ Tags: Tags | undefined;
80
+ }
81
+ /**
82
+ * @public
83
+ */
84
+ export interface ListVpcOriginsRequest {
85
+ /**
86
+ * <p>The marker associated with the VPC origins list.</p>
87
+ * @public
88
+ */
89
+ Marker?: string | undefined;
90
+ /**
91
+ * <p>The maximum number of items included in the list.</p>
92
+ * @public
93
+ */
94
+ MaxItems?: number | undefined;
95
+ }
96
+ /**
97
+ * <p>A summary of the CloudFront VPC origin.</p>
98
+ * @public
99
+ */
100
+ export interface VpcOriginSummary {
101
+ /**
102
+ * <p>The VPC origin summary ID.</p>
103
+ * @public
104
+ */
105
+ Id: string | undefined;
106
+ /**
107
+ * <p>The VPC origin summary name.</p>
108
+ * @public
109
+ */
110
+ Name: string | undefined;
111
+ /**
112
+ * <p>The VPC origin summary status.</p>
113
+ * @public
114
+ */
115
+ Status: string | undefined;
116
+ /**
117
+ * <p>The VPC origin summary created time.</p>
118
+ * @public
119
+ */
120
+ CreatedTime: Date | undefined;
121
+ /**
122
+ * <p>The VPC origin summary last modified time.</p>
123
+ * @public
124
+ */
125
+ LastModifiedTime: Date | undefined;
126
+ /**
127
+ * <p>The VPC origin summary ARN.</p>
128
+ * @public
129
+ */
130
+ Arn: string | undefined;
131
+ /**
132
+ * <p>The VPC origin summary origin endpoint ARN.</p>
133
+ * @public
134
+ */
135
+ OriginEndpointArn: string | undefined;
136
+ }
137
+ /**
138
+ * <p>A list of CloudFront VPC origins.</p>
139
+ * @public
140
+ */
141
+ export interface VpcOriginList {
142
+ /**
143
+ * <p>The marker associated with the VPC origins list.</p>
144
+ * @public
145
+ */
146
+ Marker: string | undefined;
147
+ /**
148
+ * <p>The next marker associated with the VPC origins list.</p>
149
+ * @public
150
+ */
151
+ NextMarker?: string | undefined;
152
+ /**
153
+ * <p>The maximum number of items included in the list.</p>
154
+ * @public
155
+ */
156
+ MaxItems: number | undefined;
157
+ /**
158
+ * <p>A flag that indicates whether more VPC origins remain to be listed. If
159
+ * your results were truncated, you can make a follow-up pagination request using the
160
+ * <code>Marker</code> request parameter to retrieve more VPC origins in the
161
+ * list.</p>
162
+ * @public
163
+ */
164
+ IsTruncated: boolean | undefined;
165
+ /**
166
+ * <p>The number of VPC origins in the list.</p>
167
+ * @public
168
+ */
169
+ Quantity: number | undefined;
170
+ /**
171
+ * <p>The items of the VPC origins list.</p>
172
+ * @public
173
+ */
174
+ Items?: VpcOriginSummary[] | undefined;
175
+ }
176
+ /**
177
+ * @public
178
+ */
179
+ export interface ListVpcOriginsResult {
180
+ /**
181
+ * <p>List of VPC origins.</p>
182
+ * @public
183
+ */
184
+ VpcOriginList?: VpcOriginList | undefined;
185
+ }
186
+ /**
187
+ * @public
188
+ */
189
+ export interface PublishFunctionRequest {
190
+ /**
191
+ * <p>The name of the function that you are publishing.</p>
192
+ * @public
193
+ */
194
+ Name: string | undefined;
195
+ /**
196
+ * <p>The current version (<code>ETag</code> value) of the function that you are publishing,
197
+ * which you can get using <code>DescribeFunction</code>.</p>
198
+ * @public
199
+ */
200
+ IfMatch: string | undefined;
201
+ }
202
+ /**
203
+ * @public
204
+ */
205
+ export interface PublishFunctionResult {
206
+ /**
207
+ * <p>Contains configuration information and metadata about a CloudFront function.</p>
208
+ * @public
209
+ */
210
+ FunctionSummary?: FunctionSummary | undefined;
211
+ }
212
+ /**
213
+ * <p>The request to add tags to a CloudFront resource.</p>
214
+ * @public
215
+ */
216
+ export interface TagResourceRequest {
217
+ /**
218
+ * <p>An ARN of a CloudFront resource.</p>
219
+ * @public
220
+ */
221
+ Resource: string | undefined;
222
+ /**
223
+ * <p>A complex type that contains zero or more <code>Tag</code> elements.</p>
224
+ * @public
225
+ */
226
+ Tags: Tags | undefined;
227
+ }
228
+ /**
229
+ * <p>The CloudFront function failed.</p>
230
+ * @public
231
+ */
232
+ export declare class TestFunctionFailed extends __BaseException {
233
+ readonly name: "TestFunctionFailed";
234
+ readonly $fault: "server";
235
+ Message?: string | undefined;
236
+ /**
237
+ * @internal
238
+ */
239
+ constructor(opts: __ExceptionOptionType<TestFunctionFailed, __BaseException>);
240
+ }
241
+ /**
242
+ * @public
243
+ */
244
+ export interface TestFunctionRequest {
245
+ /**
246
+ * <p>The name of the function that you are testing.</p>
247
+ * @public
248
+ */
249
+ Name: string | undefined;
250
+ /**
251
+ * <p>The current version (<code>ETag</code> value) of the function that you are testing,
252
+ * which you can get using <code>DescribeFunction</code>.</p>
253
+ * @public
254
+ */
255
+ IfMatch: string | undefined;
256
+ /**
257
+ * <p>The stage of the function that you are testing, either <code>DEVELOPMENT</code> or
258
+ * <code>LIVE</code>.</p>
259
+ * @public
260
+ */
261
+ Stage?: FunctionStage | undefined;
262
+ /**
263
+ * <p>The event object to test the function with. For more information about the structure
264
+ * of the event object, see <a href="https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/managing-functions.html#test-function">Testing functions</a> in the <i>Amazon CloudFront Developer Guide</i>.</p>
265
+ * @public
266
+ */
267
+ EventObject: Uint8Array | undefined;
268
+ }
269
+ /**
270
+ * <p>Contains the result of testing a CloudFront function with <code>TestFunction</code>.</p>
271
+ * @public
272
+ */
273
+ export interface TestResult {
274
+ /**
275
+ * <p>Contains configuration information and metadata about the CloudFront function that was
276
+ * tested.</p>
277
+ * @public
278
+ */
279
+ FunctionSummary?: FunctionSummary | undefined;
280
+ /**
281
+ * <p>The amount of time that the function took to run as a percentage of the maximum
282
+ * allowed time. For example, a compute utilization of 35 means that the function completed
283
+ * in 35% of the maximum allowed time.</p>
284
+ * @public
285
+ */
286
+ ComputeUtilization?: string | undefined;
287
+ /**
288
+ * <p>Contains the log lines that the function wrote (if any) when running the test.</p>
289
+ * @public
290
+ */
291
+ FunctionExecutionLogs?: string[] | undefined;
292
+ /**
293
+ * <p>If the result of testing the function was an error, this field contains the error
294
+ * message.</p>
295
+ * @public
296
+ */
297
+ FunctionErrorMessage?: string | undefined;
298
+ /**
299
+ * <p>The event object returned by the function. For more information about the structure of
300
+ * the event object, see <a href="https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/functions-event-structure.html">Event
301
+ * object structure</a> in the <i>Amazon CloudFront Developer Guide</i>.</p>
302
+ * @public
303
+ */
304
+ FunctionOutput?: string | undefined;
305
+ }
306
+ /**
307
+ * @public
308
+ */
309
+ export interface TestFunctionResult {
310
+ /**
311
+ * <p>An object that represents the result of running the function with the provided event
312
+ * object.</p>
313
+ * @public
314
+ */
315
+ TestResult?: TestResult | undefined;
316
+ }
317
+ /**
318
+ * <p>A complex type that contains zero or more <code>Tag</code> elements.</p>
319
+ * @public
320
+ */
321
+ export interface TagKeys {
322
+ /**
323
+ * <p>A complex type that contains <code>Tag</code> key elements.</p>
324
+ * @public
325
+ */
326
+ Items?: string[] | undefined;
327
+ }
328
+ /**
329
+ * <p>The request to remove tags from a CloudFront resource.</p>
330
+ * @public
331
+ */
332
+ export interface UntagResourceRequest {
333
+ /**
334
+ * <p>An ARN of a CloudFront resource.</p>
335
+ * @public
336
+ */
337
+ Resource: string | undefined;
338
+ /**
339
+ * <p>A complex type that contains zero or more <code>Tag</code> key elements.</p>
340
+ * @public
341
+ */
342
+ TagKeys: TagKeys | undefined;
343
+ }
344
+ /**
345
+ * @public
346
+ */
347
+ export interface UpdateCachePolicyRequest {
348
+ /**
349
+ * <p>A cache policy configuration.</p>
350
+ * @public
351
+ */
352
+ CachePolicyConfig: CachePolicyConfig | undefined;
353
+ /**
354
+ * <p>The unique identifier for the cache policy that you are updating. The identifier is
355
+ * returned in a cache behavior's <code>CachePolicyId</code> field in the response to
356
+ * <code>GetDistributionConfig</code>.</p>
357
+ * @public
358
+ */
359
+ Id: string | undefined;
360
+ /**
361
+ * <p>The version of the cache policy that you are updating. The version is returned in the
362
+ * cache policy's <code>ETag</code> field in the response to
363
+ * <code>GetCachePolicyConfig</code>.</p>
364
+ * @public
365
+ */
366
+ IfMatch?: string | undefined;
367
+ }
368
+ /**
369
+ * @public
370
+ */
371
+ export interface UpdateCachePolicyResult {
372
+ /**
373
+ * <p>A cache policy.</p>
374
+ * @public
375
+ */
376
+ CachePolicy?: CachePolicy | undefined;
377
+ /**
378
+ * <p>The current version of the cache policy.</p>
379
+ * @public
380
+ */
381
+ ETag?: string | undefined;
382
+ }
383
+ /**
384
+ * <p>The request to update an origin access identity.</p>
385
+ * @public
386
+ */
387
+ export interface UpdateCloudFrontOriginAccessIdentityRequest {
388
+ /**
389
+ * <p>The identity's configuration information.</p>
390
+ * @public
391
+ */
392
+ CloudFrontOriginAccessIdentityConfig: CloudFrontOriginAccessIdentityConfig | undefined;
393
+ /**
394
+ * <p>The identity's id.</p>
395
+ * @public
396
+ */
397
+ Id: string | undefined;
398
+ /**
399
+ * <p>The value of the <code>ETag</code> header that you received when retrieving the
400
+ * identity's configuration. For example: <code>E2QWRUHAPOMQZL</code>.</p>
401
+ * @public
402
+ */
403
+ IfMatch?: string | undefined;
404
+ }
405
+ /**
406
+ * <p>The returned result of the corresponding request.</p>
407
+ * @public
408
+ */
409
+ export interface UpdateCloudFrontOriginAccessIdentityResult {
410
+ /**
411
+ * <p>The origin access identity's information.</p>
412
+ * @public
413
+ */
414
+ CloudFrontOriginAccessIdentity?: CloudFrontOriginAccessIdentity | undefined;
415
+ /**
416
+ * <p>The current version of the configuration. For example:
417
+ * <code>E2QWRUHAPOMQZL</code>.</p>
418
+ * @public
419
+ */
420
+ ETag?: string | undefined;
421
+ }
422
+ /**
423
+ * @public
424
+ */
425
+ export interface UpdateConnectionGroupRequest {
426
+ /**
427
+ * <p>The ID of the connection group.</p>
428
+ * @public
429
+ */
430
+ Id: string | undefined;
431
+ /**
432
+ * <p>Enable IPv6 for the connection group. For more information, see <a href="https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/distribution-web-values-specify.html#DownloadDistValuesEnableIPv6">Enable IPv6</a> in the
433
+ * <i>Amazon CloudFront Developer Guide</i>.</p>
434
+ * @public
435
+ */
436
+ Ipv6Enabled?: boolean | undefined;
437
+ /**
438
+ * <p>The value of the <code>ETag</code> header that you received when retrieving the connection group that you're updating.</p>
439
+ * @public
440
+ */
441
+ IfMatch: string | undefined;
442
+ /**
443
+ * <p>The ID of the Anycast static IP list.</p>
444
+ * @public
445
+ */
446
+ AnycastIpListId?: string | undefined;
447
+ /**
448
+ * <p>Whether the connection group is enabled.</p>
449
+ * @public
450
+ */
451
+ Enabled?: boolean | undefined;
452
+ }
453
+ /**
454
+ * @public
455
+ */
456
+ export interface UpdateConnectionGroupResult {
457
+ /**
458
+ * <p>The connection group that you updated.</p>
459
+ * @public
460
+ */
461
+ ConnectionGroup?: ConnectionGroup | undefined;
462
+ /**
463
+ * <p>The current version of the connection group.</p>
464
+ * @public
465
+ */
466
+ ETag?: string | undefined;
467
+ }
468
+ /**
469
+ * @public
470
+ */
471
+ export interface UpdateContinuousDeploymentPolicyRequest {
472
+ /**
473
+ * <p>The continuous deployment policy configuration.</p>
474
+ * @public
475
+ */
476
+ ContinuousDeploymentPolicyConfig: ContinuousDeploymentPolicyConfig | undefined;
477
+ /**
478
+ * <p>The identifier of the continuous deployment policy that you are updating.</p>
479
+ * @public
480
+ */
481
+ Id: string | undefined;
482
+ /**
483
+ * <p>The current version (<code>ETag</code> value) of the continuous deployment policy that
484
+ * you are updating.</p>
485
+ * @public
486
+ */
487
+ IfMatch?: string | undefined;
488
+ }
489
+ /**
490
+ * @public
491
+ */
492
+ export interface UpdateContinuousDeploymentPolicyResult {
493
+ /**
494
+ * <p>A continuous deployment policy.</p>
495
+ * @public
496
+ */
497
+ ContinuousDeploymentPolicy?: ContinuousDeploymentPolicy | undefined;
498
+ /**
499
+ * <p>The version identifier for the current version of the continuous deployment
500
+ * policy.</p>
501
+ * @public
502
+ */
503
+ ETag?: string | undefined;
504
+ }
505
+ /**
506
+ * <p>The request to update a distribution.</p>
507
+ * @public
508
+ */
509
+ export interface UpdateDistributionRequest {
510
+ /**
511
+ * <p>The distribution's configuration information.</p>
512
+ * @public
513
+ */
514
+ DistributionConfig: DistributionConfig | undefined;
515
+ /**
516
+ * <p>The distribution's id.</p>
517
+ * @public
518
+ */
519
+ Id: string | undefined;
520
+ /**
521
+ * <p>The value of the <code>ETag</code> header that you received when retrieving the
522
+ * distribution's configuration. For example: <code>E2QWRUHAPOMQZL</code>.</p>
523
+ * @public
524
+ */
525
+ IfMatch?: string | undefined;
526
+ }
527
+ /**
528
+ * <p>The returned result of the corresponding request.</p>
529
+ * @public
530
+ */
531
+ export interface UpdateDistributionResult {
532
+ /**
533
+ * <p>The distribution's information.</p>
534
+ * @public
535
+ */
536
+ Distribution?: Distribution | undefined;
537
+ /**
538
+ * <p>The current version of the configuration. For example:
539
+ * <code>E2QWRUHAPOMQZL</code>.</p>
540
+ * @public
541
+ */
542
+ ETag?: string | undefined;
543
+ }
544
+ /**
545
+ * @public
546
+ */
547
+ export interface UpdateDistributionTenantRequest {
548
+ /**
549
+ * <p>The ID of the distribution tenant.</p>
550
+ * @public
551
+ */
552
+ Id: string | undefined;
553
+ /**
554
+ * <p>The ID for the multi-tenant distribution.</p>
555
+ * @public
556
+ */
557
+ DistributionId?: string | undefined;
558
+ /**
559
+ * <p>The domains to update for the distribution tenant. A domain object can contain only a domain property. You must specify at least one domain. Each distribution tenant can have up to 5 domains.</p>
560
+ * @public
561
+ */
562
+ Domains?: DomainItem[] | undefined;
563
+ /**
564
+ * <p>Customizations for the distribution tenant. For each distribution tenant, you can specify the geographic restrictions, and the Amazon Resource Names (ARNs) for the ACM certificate and WAF web ACL. These are specific values that you can override or disable from the multi-tenant distribution that was used to create the distribution tenant.</p>
565
+ * @public
566
+ */
567
+ Customizations?: Customizations | undefined;
568
+ /**
569
+ * <p>A list of parameter values to add to the resource. A parameter is specified as a key-value pair. A valid parameter value must exist for any parameter that is marked as required in the multi-tenant distribution.</p>
570
+ * @public
571
+ */
572
+ Parameters?: Parameter[] | undefined;
573
+ /**
574
+ * <p>The ID of the target connection group.</p>
575
+ * @public
576
+ */
577
+ ConnectionGroupId?: string | undefined;
578
+ /**
579
+ * <p>The value of the <code>ETag</code> header that you received when retrieving the distribution tenant to update. This value is returned in the response of the <code>GetDistributionTenant</code> API operation.</p>
580
+ * @public
581
+ */
582
+ IfMatch: string | undefined;
583
+ /**
584
+ * <p>An object that contains the CloudFront managed ACM certificate request.</p>
585
+ * @public
586
+ */
587
+ ManagedCertificateRequest?: ManagedCertificateRequest | undefined;
588
+ /**
589
+ * <p>Indicates whether the distribution tenant should be updated to an enabled state. If you update the distribution tenant and it's not enabled, the distribution tenant won't serve traffic.</p>
590
+ * @public
591
+ */
592
+ Enabled?: boolean | undefined;
593
+ }
594
+ /**
595
+ * @public
596
+ */
597
+ export interface UpdateDistributionTenantResult {
598
+ /**
599
+ * <p>The distribution tenant that you're updating.</p>
600
+ * @public
601
+ */
602
+ DistributionTenant?: DistributionTenant | undefined;
603
+ /**
604
+ * <p>The current version of the distribution tenant.</p>
605
+ * @public
606
+ */
607
+ ETag?: string | undefined;
608
+ }
609
+ /**
610
+ * @public
611
+ */
612
+ export interface UpdateDistributionWithStagingConfigRequest {
613
+ /**
614
+ * <p>The identifier of the primary distribution to which you are copying a staging distribution's
615
+ * configuration.</p>
616
+ * @public
617
+ */
618
+ Id: string | undefined;
619
+ /**
620
+ * <p>The identifier of the staging distribution whose configuration you are copying to the primary distribution.</p>
621
+ * @public
622
+ */
623
+ StagingDistributionId?: string | undefined;
624
+ /**
625
+ * <p>The current versions (<code>ETag</code> values) of both primary and staging distributions.
626
+ * Provide these in the following format:</p>
627
+ * <p>
628
+ * <code>&lt;primary ETag&gt;, &lt;staging ETag&gt;</code>
629
+ * </p>
630
+ * @public
631
+ */
632
+ IfMatch?: string | undefined;
633
+ }
634
+ /**
635
+ * @public
636
+ */
637
+ export interface UpdateDistributionWithStagingConfigResult {
638
+ /**
639
+ * <p>A distribution tells CloudFront where you want content to be delivered from, and the details
640
+ * about how to track and manage content delivery.</p>
641
+ * @public
642
+ */
643
+ Distribution?: Distribution | undefined;
644
+ /**
645
+ * <p>The current version of the primary distribution (after it's updated).</p>
646
+ * @public
647
+ */
648
+ ETag?: string | undefined;
649
+ }
650
+ /**
651
+ * @public
652
+ */
653
+ export interface UpdateDomainAssociationRequest {
654
+ /**
655
+ * <p>The domain to update.</p>
656
+ * @public
657
+ */
658
+ Domain: string | undefined;
659
+ /**
660
+ * <p>The target distribution resource for the domain. You can specify either <code>DistributionId</code> or <code>DistributionTenantId</code>, but not both.</p>
661
+ * @public
662
+ */
663
+ TargetResource: DistributionResourceId | undefined;
664
+ /**
665
+ * <p>The value of the <code>ETag</code> identifier for the distribution or distribution tenant that will be associated with the domain.</p>
666
+ * @public
667
+ */
668
+ IfMatch?: string | undefined;
669
+ }
670
+ /**
671
+ * @public
672
+ */
673
+ export interface UpdateDomainAssociationResult {
674
+ /**
675
+ * <p>The domain that you're moving.</p>
676
+ * @public
677
+ */
678
+ Domain?: string | undefined;
679
+ /**
680
+ * <p>The intended destination for the domain.</p>
681
+ * @public
682
+ */
683
+ ResourceId?: string | undefined;
684
+ /**
685
+ * <p>The current version of the target distribution or distribution tenant that was associated with the domain.</p>
686
+ * @public
687
+ */
688
+ ETag?: string | undefined;
689
+ }
690
+ /**
691
+ * @public
692
+ */
693
+ export interface UpdateFieldLevelEncryptionConfigRequest {
694
+ /**
695
+ * <p>Request to update a field-level encryption configuration.</p>
696
+ * @public
697
+ */
698
+ FieldLevelEncryptionConfig: FieldLevelEncryptionConfig | undefined;
699
+ /**
700
+ * <p>The ID of the configuration you want to update.</p>
701
+ * @public
702
+ */
703
+ Id: string | undefined;
704
+ /**
705
+ * <p>The value of the <code>ETag</code> header that you received when retrieving the
706
+ * configuration identity to update. For example: <code>E2QWRUHAPOMQZL</code>.</p>
707
+ * @public
708
+ */
709
+ IfMatch?: string | undefined;
710
+ }
711
+ /**
712
+ * @public
713
+ */
714
+ export interface UpdateFieldLevelEncryptionConfigResult {
715
+ /**
716
+ * <p>Return the results of updating the configuration.</p>
717
+ * @public
718
+ */
719
+ FieldLevelEncryption?: FieldLevelEncryption | undefined;
720
+ /**
721
+ * <p>The value of the <code>ETag</code> header that you received when updating the
722
+ * configuration. For example: <code>E2QWRUHAPOMQZL</code>.</p>
723
+ * @public
724
+ */
725
+ ETag?: string | undefined;
726
+ }
727
+ /**
728
+ * @public
729
+ */
730
+ export interface UpdateFieldLevelEncryptionProfileRequest {
731
+ /**
732
+ * <p>Request to update a field-level encryption profile.</p>
733
+ * @public
734
+ */
735
+ FieldLevelEncryptionProfileConfig: FieldLevelEncryptionProfileConfig | undefined;
736
+ /**
737
+ * <p>The ID of the field-level encryption profile request.</p>
738
+ * @public
739
+ */
740
+ Id: string | undefined;
741
+ /**
742
+ * <p>The value of the <code>ETag</code> header that you received when retrieving the
743
+ * profile identity to update. For example: <code>E2QWRUHAPOMQZL</code>.</p>
744
+ * @public
745
+ */
746
+ IfMatch?: string | undefined;
747
+ }
748
+ /**
749
+ * @public
750
+ */
751
+ export interface UpdateFieldLevelEncryptionProfileResult {
752
+ /**
753
+ * <p>Return the results of updating the profile.</p>
754
+ * @public
755
+ */
756
+ FieldLevelEncryptionProfile?: FieldLevelEncryptionProfile | undefined;
757
+ /**
758
+ * <p>The result of the field-level encryption profile request.</p>
759
+ * @public
760
+ */
761
+ ETag?: string | undefined;
762
+ }
763
+ /**
764
+ * @public
765
+ */
766
+ export interface UpdateFunctionRequest {
767
+ /**
768
+ * <p>The name of the function that you are updating.</p>
769
+ * @public
770
+ */
771
+ Name: string | undefined;
772
+ /**
773
+ * <p>The current version (<code>ETag</code> value) of the function that you are updating,
774
+ * which you can get using <code>DescribeFunction</code>.</p>
775
+ * @public
776
+ */
777
+ IfMatch: string | undefined;
778
+ /**
779
+ * <p>Configuration information about the function.</p>
780
+ * @public
781
+ */
782
+ FunctionConfig: FunctionConfig | undefined;
783
+ /**
784
+ * <p>The function code. For more information about writing a CloudFront function, see <a href="https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/writing-function-code.html">Writing
785
+ * function code for CloudFront Functions</a> in the
786
+ * <i>Amazon CloudFront Developer Guide</i>.</p>
787
+ * @public
788
+ */
789
+ FunctionCode: Uint8Array | undefined;
790
+ }
791
+ /**
792
+ * @public
793
+ */
794
+ export interface UpdateFunctionResult {
795
+ /**
796
+ * <p>Contains configuration information and metadata about a CloudFront function.</p>
797
+ * @public
798
+ */
799
+ FunctionSummary?: FunctionSummary | undefined;
800
+ /**
801
+ * <p>The version identifier for the current version of the CloudFront function.</p>
802
+ * @public
803
+ */
804
+ ETag?: string | undefined;
805
+ }
806
+ /**
807
+ * @public
808
+ */
809
+ export interface UpdateKeyGroupRequest {
810
+ /**
811
+ * <p>The key group configuration.</p>
812
+ * @public
813
+ */
814
+ KeyGroupConfig: KeyGroupConfig | undefined;
815
+ /**
816
+ * <p>The identifier of the key group that you are updating.</p>
817
+ * @public
818
+ */
819
+ Id: string | undefined;
820
+ /**
821
+ * <p>The version of the key group that you are updating. The version is the key group's
822
+ * <code>ETag</code> value.</p>
823
+ * @public
824
+ */
825
+ IfMatch?: string | undefined;
826
+ }
827
+ /**
828
+ * @public
829
+ */
830
+ export interface UpdateKeyGroupResult {
831
+ /**
832
+ * <p>The key group that was just updated.</p>
833
+ * @public
834
+ */
835
+ KeyGroup?: KeyGroup | undefined;
836
+ /**
837
+ * <p>The identifier for this version of the key group.</p>
838
+ * @public
839
+ */
840
+ ETag?: string | undefined;
841
+ }
842
+ /**
843
+ * @public
844
+ */
845
+ export interface UpdateKeyValueStoreRequest {
846
+ /**
847
+ * <p>The name of the key value store to update.</p>
848
+ * @public
849
+ */
850
+ Name: string | undefined;
851
+ /**
852
+ * <p>The comment of the key value store to update.</p>
853
+ * @public
854
+ */
855
+ Comment: string | undefined;
856
+ /**
857
+ * <p>The key value store to update, if a match occurs.</p>
858
+ * @public
859
+ */
860
+ IfMatch: string | undefined;
861
+ }
862
+ /**
863
+ * @public
864
+ */
865
+ export interface UpdateKeyValueStoreResult {
866
+ /**
867
+ * <p>The resulting key value store to update.</p>
868
+ * @public
869
+ */
870
+ KeyValueStore?: KeyValueStore | undefined;
871
+ /**
872
+ * <p>The <code>ETag</code> of the resulting key value store.</p>
873
+ * @public
874
+ */
875
+ ETag?: string | undefined;
876
+ }
877
+ /**
878
+ * @public
879
+ */
880
+ export interface UpdateOriginAccessControlRequest {
881
+ /**
882
+ * <p>An origin access control.</p>
883
+ * @public
884
+ */
885
+ OriginAccessControlConfig: OriginAccessControlConfig | undefined;
886
+ /**
887
+ * <p>The unique identifier of the origin access control that you are updating.</p>
888
+ * @public
889
+ */
890
+ Id: string | undefined;
891
+ /**
892
+ * <p>The current version (<code>ETag</code> value) of the origin access control that you
893
+ * are updating.</p>
894
+ * @public
895
+ */
896
+ IfMatch?: string | undefined;
897
+ }
898
+ /**
899
+ * @public
900
+ */
901
+ export interface UpdateOriginAccessControlResult {
902
+ /**
903
+ * <p>The origin access control after it has been updated.</p>
904
+ * @public
905
+ */
906
+ OriginAccessControl?: OriginAccessControl | undefined;
907
+ /**
908
+ * <p>The new version of the origin access control after it has been updated.</p>
909
+ * @public
910
+ */
911
+ ETag?: string | undefined;
912
+ }
913
+ /**
914
+ * @public
915
+ */
916
+ export interface UpdateOriginRequestPolicyRequest {
917
+ /**
918
+ * <p>An origin request policy configuration.</p>
919
+ * @public
920
+ */
921
+ OriginRequestPolicyConfig: OriginRequestPolicyConfig | undefined;
922
+ /**
923
+ * <p>The unique identifier for the origin request policy that you are updating. The
924
+ * identifier is returned in a cache behavior's <code>OriginRequestPolicyId</code> field in
925
+ * the response to <code>GetDistributionConfig</code>.</p>
926
+ * @public
927
+ */
928
+ Id: string | undefined;
929
+ /**
930
+ * <p>The version of the origin request policy that you are updating. The version is
931
+ * returned in the origin request policy's <code>ETag</code> field in the response to
932
+ * <code>GetOriginRequestPolicyConfig</code>.</p>
933
+ * @public
934
+ */
935
+ IfMatch?: string | undefined;
936
+ }
937
+ /**
938
+ * @public
939
+ */
940
+ export interface UpdateOriginRequestPolicyResult {
941
+ /**
942
+ * <p>An origin request policy.</p>
943
+ * @public
944
+ */
945
+ OriginRequestPolicy?: OriginRequestPolicy | undefined;
946
+ /**
947
+ * <p>The current version of the origin request policy.</p>
948
+ * @public
949
+ */
950
+ ETag?: string | undefined;
951
+ }
952
+ /**
953
+ * @public
954
+ */
955
+ export interface UpdatePublicKeyRequest {
956
+ /**
957
+ * <p>A public key configuration.</p>
958
+ * @public
959
+ */
960
+ PublicKeyConfig: PublicKeyConfig | undefined;
961
+ /**
962
+ * <p>The identifier of the public key that you are updating.</p>
963
+ * @public
964
+ */
965
+ Id: string | undefined;
966
+ /**
967
+ * <p>The value of the <code>ETag</code> header that you received when retrieving the public
968
+ * key to update. For example: <code>E2QWRUHAPOMQZL</code>.</p>
969
+ * @public
970
+ */
971
+ IfMatch?: string | undefined;
972
+ }
973
+ /**
974
+ * @public
975
+ */
976
+ export interface UpdatePublicKeyResult {
977
+ /**
978
+ * <p>The public key.</p>
979
+ * @public
980
+ */
981
+ PublicKey?: PublicKey | undefined;
982
+ /**
983
+ * <p>The identifier of the current version of the public key.</p>
984
+ * @public
985
+ */
986
+ ETag?: string | undefined;
987
+ }
988
+ /**
989
+ * @public
990
+ */
991
+ export interface UpdateRealtimeLogConfigRequest {
992
+ /**
993
+ * <p>Contains information about the Amazon Kinesis data stream where you are sending real-time
994
+ * log data.</p>
995
+ * @public
996
+ */
997
+ EndPoints?: EndPoint[] | undefined;
998
+ /**
999
+ * <p>A list of fields to include in each real-time log record.</p>
1000
+ * <p>For more information about fields, see <a href="https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/real-time-logs.html#understand-real-time-log-config-fields">Real-time log configuration fields</a> in the
1001
+ * <i>Amazon CloudFront Developer Guide</i>.</p>
1002
+ * @public
1003
+ */
1004
+ Fields?: string[] | undefined;
1005
+ /**
1006
+ * <p>The name for this real-time log configuration.</p>
1007
+ * @public
1008
+ */
1009
+ Name?: string | undefined;
1010
+ /**
1011
+ * <p>The Amazon Resource Name (ARN) for this real-time log configuration.</p>
1012
+ * @public
1013
+ */
1014
+ ARN?: string | undefined;
1015
+ /**
1016
+ * <p>The sampling rate for this real-time log configuration. The sampling rate determines
1017
+ * the percentage of viewer requests that are represented in the real-time log data. You
1018
+ * must provide an integer between 1 and 100, inclusive.</p>
1019
+ * @public
1020
+ */
1021
+ SamplingRate?: number | undefined;
1022
+ }
1023
+ /**
1024
+ * @public
1025
+ */
1026
+ export interface UpdateRealtimeLogConfigResult {
1027
+ /**
1028
+ * <p>A real-time log configuration.</p>
1029
+ * @public
1030
+ */
1031
+ RealtimeLogConfig?: RealtimeLogConfig | undefined;
1032
+ }
1033
+ /**
1034
+ * @public
1035
+ */
1036
+ export interface UpdateResponseHeadersPolicyRequest {
1037
+ /**
1038
+ * <p>A response headers policy configuration.</p>
1039
+ * @public
1040
+ */
1041
+ ResponseHeadersPolicyConfig: ResponseHeadersPolicyConfig | undefined;
1042
+ /**
1043
+ * <p>The identifier for the response headers policy that you are updating.</p>
1044
+ * @public
1045
+ */
1046
+ Id: string | undefined;
1047
+ /**
1048
+ * <p>The version of the response headers policy that you are updating.</p>
1049
+ * <p>The version is returned in the cache policy's <code>ETag</code> field in the response
1050
+ * to <code>GetResponseHeadersPolicyConfig</code>.</p>
1051
+ * @public
1052
+ */
1053
+ IfMatch?: string | undefined;
1054
+ }
1055
+ /**
1056
+ * @public
1057
+ */
1058
+ export interface UpdateResponseHeadersPolicyResult {
1059
+ /**
1060
+ * <p>A response headers policy.</p>
1061
+ * @public
1062
+ */
1063
+ ResponseHeadersPolicy?: ResponseHeadersPolicy | undefined;
1064
+ /**
1065
+ * <p>The current version of the response headers policy.</p>
1066
+ * @public
1067
+ */
1068
+ ETag?: string | undefined;
1069
+ }
1070
+ /**
1071
+ * <p>The request to update a streaming distribution.</p>
1072
+ * @public
1073
+ */
1074
+ export interface UpdateStreamingDistributionRequest {
1075
+ /**
1076
+ * <p>The streaming distribution's configuration information.</p>
1077
+ * @public
1078
+ */
1079
+ StreamingDistributionConfig: StreamingDistributionConfig | undefined;
1080
+ /**
1081
+ * <p>The streaming distribution's id.</p>
1082
+ * @public
1083
+ */
1084
+ Id: string | undefined;
1085
+ /**
1086
+ * <p>The value of the <code>ETag</code> header that you received when retrieving the
1087
+ * streaming distribution's configuration. For example: <code>E2QWRUHAPOMQZL</code>.</p>
1088
+ * @public
1089
+ */
1090
+ IfMatch?: string | undefined;
1091
+ }
1092
+ /**
1093
+ * <p>The returned result of the corresponding request.</p>
1094
+ * @public
1095
+ */
1096
+ export interface UpdateStreamingDistributionResult {
1097
+ /**
1098
+ * <p>The streaming distribution's information.</p>
1099
+ * @public
1100
+ */
1101
+ StreamingDistribution?: StreamingDistribution | undefined;
1102
+ /**
1103
+ * <p>The current version of the configuration. For example:
1104
+ * <code>E2QWRUHAPOMQZL</code>.</p>
1105
+ * @public
1106
+ */
1107
+ ETag?: string | undefined;
1108
+ }
1109
+ /**
1110
+ * @public
1111
+ */
1112
+ export interface UpdateVpcOriginRequest {
1113
+ /**
1114
+ * <p>The VPC origin endpoint configuration.</p>
1115
+ * @public
1116
+ */
1117
+ VpcOriginEndpointConfig: VpcOriginEndpointConfig | undefined;
1118
+ /**
1119
+ * <p>The VPC origin ID.</p>
1120
+ * @public
1121
+ */
1122
+ Id: string | undefined;
1123
+ /**
1124
+ * <p>The VPC origin to update, if a match occurs.</p>
1125
+ * @public
1126
+ */
1127
+ IfMatch: string | undefined;
1128
+ }
1129
+ /**
1130
+ * @public
1131
+ */
1132
+ export interface UpdateVpcOriginResult {
1133
+ /**
1134
+ * <p>The VPC origin.</p>
1135
+ * @public
1136
+ */
1137
+ VpcOrigin?: VpcOrigin | undefined;
1138
+ /**
1139
+ * <p>The VPC origin ETag.</p>
1140
+ * @public
1141
+ */
1142
+ ETag?: string | undefined;
1143
+ }
1144
+ /**
1145
+ * @public
1146
+ */
1147
+ export interface VerifyDnsConfigurationRequest {
1148
+ /**
1149
+ * <p>The domain name that you're verifying.</p>
1150
+ * @public
1151
+ */
1152
+ Domain?: string | undefined;
1153
+ /**
1154
+ * <p>The ID of the distribution tenant.</p>
1155
+ * @public
1156
+ */
1157
+ Identifier: string | undefined;
1158
+ }
1159
+ /**
1160
+ * @public
1161
+ * @enum
1162
+ */
1163
+ export declare const DnsConfigurationStatus: {
1164
+ readonly Invalid: "invalid-configuration";
1165
+ readonly Unknown: "unknown-configuration";
1166
+ readonly Valid: "valid-configuration";
1167
+ };
1168
+ /**
1169
+ * @public
1170
+ */
1171
+ export type DnsConfigurationStatus = (typeof DnsConfigurationStatus)[keyof typeof DnsConfigurationStatus];
1172
+ /**
1173
+ * <p>The DNS configuration for your domain names.</p>
1174
+ * @public
1175
+ */
1176
+ export interface DnsConfiguration {
1177
+ /**
1178
+ * <p>The domain name that you're verifying.</p>
1179
+ * @public
1180
+ */
1181
+ Domain: string | undefined;
1182
+ /**
1183
+ * <p>The status of your domain name.</p>
1184
+ * <ul>
1185
+ * <li>
1186
+ * <p>
1187
+ * <code>valid-configuration</code>: The domain name is correctly configured and points to the correct routing endpoint of the connection group.</p>
1188
+ * </li>
1189
+ * <li>
1190
+ * <p>
1191
+ * <code>invalid-configuration</code>: There is either a missing DNS record or the DNS record exists but it's using an incorrect routing endpoint. Update the DNS record to point to the correct routing endpoint.</p>
1192
+ * </li>
1193
+ * <li>
1194
+ * <p>
1195
+ * <code>unknown-configuration</code>: CloudFront can't validate your DNS configuration. This status can appear if CloudFront can't verify the DNS record, or the DNS lookup request failed or timed out.</p>
1196
+ * </li>
1197
+ * </ul>
1198
+ * @public
1199
+ */
1200
+ Status: DnsConfigurationStatus | undefined;
1201
+ /**
1202
+ * <p>Explains the status of the DNS configuration.</p>
1203
+ * @public
1204
+ */
1205
+ Reason?: string | undefined;
1206
+ }
1207
+ /**
1208
+ * @public
1209
+ */
1210
+ export interface VerifyDnsConfigurationResult {
1211
+ /**
1212
+ * <p>The list of domain names, their statuses, and a description of each status.</p>
1213
+ * @public
1214
+ */
1215
+ DnsConfigurationList?: DnsConfiguration[] | undefined;
1216
+ }
1217
+ /**
1218
+ * @internal
1219
+ */
1220
+ export declare const TestFunctionRequestFilterSensitiveLog: (obj: TestFunctionRequest) => any;
1221
+ /**
1222
+ * @internal
1223
+ */
1224
+ export declare const TestResultFilterSensitiveLog: (obj: TestResult) => any;
1225
+ /**
1226
+ * @internal
1227
+ */
1228
+ export declare const TestFunctionResultFilterSensitiveLog: (obj: TestFunctionResult) => any;
1229
+ /**
1230
+ * @internal
1231
+ */
1232
+ export declare const UpdateDistributionRequestFilterSensitiveLog: (obj: UpdateDistributionRequest) => any;
1233
+ /**
1234
+ * @internal
1235
+ */
1236
+ export declare const UpdateDistributionResultFilterSensitiveLog: (obj: UpdateDistributionResult) => any;
1237
+ /**
1238
+ * @internal
1239
+ */
1240
+ export declare const UpdateDistributionWithStagingConfigResultFilterSensitiveLog: (obj: UpdateDistributionWithStagingConfigResult) => any;
1241
+ /**
1242
+ * @internal
1243
+ */
1244
+ export declare const UpdateFunctionRequestFilterSensitiveLog: (obj: UpdateFunctionRequest) => any;