@aws-sdk/client-cloudfront 3.936.0 → 3.939.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +120 -0
- package/dist-cjs/index.js +1018 -69
- package/dist-es/CloudFront.js +30 -0
- package/dist-es/commands/CreateConnectionFunctionCommand.js +16 -0
- package/dist-es/commands/CreateTrustStoreCommand.js +16 -0
- package/dist-es/commands/DeleteConnectionFunctionCommand.js +16 -0
- package/dist-es/commands/DeleteTrustStoreCommand.js +16 -0
- package/dist-es/commands/DescribeConnectionFunctionCommand.js +16 -0
- package/dist-es/commands/GetConnectionFunctionCommand.js +16 -0
- package/dist-es/commands/GetTrustStoreCommand.js +16 -0
- package/dist-es/commands/ListConnectionFunctionsCommand.js +16 -0
- package/dist-es/commands/ListDistributionsByConnectionFunctionCommand.js +16 -0
- package/dist-es/commands/ListDistributionsByTrustStoreCommand.js +16 -0
- package/dist-es/commands/ListTrustStoresCommand.js +16 -0
- package/dist-es/commands/PublishConnectionFunctionCommand.js +16 -0
- package/dist-es/commands/TestConnectionFunctionCommand.js +16 -0
- package/dist-es/commands/UpdateConnectionFunctionCommand.js +16 -0
- package/dist-es/commands/UpdateTrustStoreCommand.js +16 -0
- package/dist-es/commands/index.js +18 -3
- package/dist-es/models/enums.js +31 -8
- package/dist-es/models/errors.js +14 -14
- package/dist-es/pagination/ListConnectionFunctionsPaginator.js +4 -0
- package/dist-es/pagination/ListDistributionsByConnectionFunctionPaginator.js +4 -0
- package/dist-es/pagination/ListDistributionsByTrustStorePaginator.js +4 -0
- package/dist-es/pagination/ListTrustStoresPaginator.js +4 -0
- package/dist-es/pagination/index.js +4 -0
- package/dist-es/schemas/schemas_0.js +735 -34
- package/dist-types/CloudFront.d.ts +107 -0
- package/dist-types/CloudFrontClient.d.ts +17 -2
- package/dist-types/commands/CopyDistributionCommand.d.ts +11 -0
- package/dist-types/commands/CreateAnycastIpListCommand.d.ts +19 -0
- package/dist-types/commands/CreateConnectionFunctionCommand.d.ts +138 -0
- package/dist-types/commands/CreateDistributionCommand.d.ts +22 -0
- package/dist-types/commands/CreateDistributionWithTagsCommand.d.ts +22 -0
- package/dist-types/commands/CreateTrustStoreCommand.d.ts +117 -0
- package/dist-types/commands/DeleteConnectionFunctionCommand.d.ts +94 -0
- package/dist-types/commands/DeleteTrustStoreCommand.d.ts +91 -0
- package/dist-types/commands/DescribeConnectionFunctionCommand.d.ts +108 -0
- package/dist-types/commands/GetAnycastIpListCommand.d.ts +11 -0
- package/dist-types/commands/GetConnectionFunctionCommand.d.ts +93 -0
- package/dist-types/commands/GetDistributionCommand.d.ts +11 -0
- package/dist-types/commands/GetDistributionConfigCommand.d.ts +11 -0
- package/dist-types/commands/GetManagedCertificateDetailsCommand.d.ts +2 -1
- package/dist-types/commands/GetMonitoringSubscriptionCommand.d.ts +1 -1
- package/dist-types/commands/GetOriginAccessControlCommand.d.ts +1 -1
- package/dist-types/commands/GetOriginAccessControlConfigCommand.d.ts +1 -1
- package/dist-types/commands/GetOriginRequestPolicyCommand.d.ts +1 -1
- package/dist-types/commands/GetOriginRequestPolicyConfigCommand.d.ts +1 -1
- package/dist-types/commands/GetPublicKeyCommand.d.ts +1 -1
- package/dist-types/commands/GetPublicKeyConfigCommand.d.ts +1 -1
- package/dist-types/commands/GetRealtimeLogConfigCommand.d.ts +1 -1
- package/dist-types/commands/GetTrustStoreCommand.d.ts +92 -0
- package/dist-types/commands/ListAnycastIpListsCommand.d.ts +11 -0
- package/dist-types/commands/ListConnectionFunctionsCommand.d.ts +108 -0
- package/dist-types/commands/ListDistributionsByAnycastIpListIdCommand.d.ts +11 -0
- package/dist-types/commands/ListDistributionsByConnectionFunctionCommand.d.ts +412 -0
- package/dist-types/commands/ListDistributionsByConnectionModeCommand.d.ts +11 -0
- package/dist-types/commands/ListDistributionsByRealtimeLogConfigCommand.d.ts +11 -0
- package/dist-types/commands/ListDistributionsByTrustStoreCommand.d.ts +412 -0
- package/dist-types/commands/ListDistributionsByWebACLIdCommand.d.ts +11 -0
- package/dist-types/commands/ListDistributionsCommand.d.ts +11 -0
- package/dist-types/commands/ListTrustStoresCommand.d.ts +96 -0
- package/dist-types/commands/PublishConnectionFunctionCommand.d.ts +113 -0
- package/dist-types/commands/TestConnectionFunctionCommand.d.ts +123 -0
- package/dist-types/commands/UpdateAnycastIpListCommand.d.ts +11 -0
- package/dist-types/commands/UpdateConnectionFunctionCommand.d.ts +130 -0
- package/dist-types/commands/UpdateDistributionCommand.d.ts +22 -0
- package/dist-types/commands/UpdateDistributionWithStagingConfigCommand.d.ts +11 -0
- package/dist-types/commands/UpdateTrustStoreCommand.d.ts +107 -0
- package/dist-types/commands/index.d.ts +18 -3
- package/dist-types/models/enums.d.ts +71 -24
- package/dist-types/models/errors.d.ts +13 -13
- package/dist-types/models/models_0.d.ts +498 -314
- package/dist-types/models/models_1.d.ts +627 -3
- package/dist-types/pagination/ListConnectionFunctionsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListDistributionsByConnectionFunctionPaginator.d.ts +7 -0
- package/dist-types/pagination/ListDistributionsByTrustStorePaginator.d.ts +7 -0
- package/dist-types/pagination/ListTrustStoresPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +4 -0
- package/dist-types/schemas/schemas_0.d.ts +57 -0
- package/dist-types/ts3.4/CloudFront.d.ts +263 -0
- package/dist-types/ts3.4/CloudFrontClient.d.ts +90 -0
- package/dist-types/ts3.4/commands/CreateConnectionFunctionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateTrustStoreCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/DeleteConnectionFunctionCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/DeleteTrustStoreCommand.d.ts +45 -0
- package/dist-types/ts3.4/commands/DescribeConnectionFunctionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetConnectionFunctionCommand.d.ts +58 -0
- package/dist-types/ts3.4/commands/GetManagedCertificateDetailsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/GetMonitoringSubscriptionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetOriginAccessControlCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetOriginAccessControlConfigCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetOriginRequestPolicyCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetOriginRequestPolicyConfigCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetPublicKeyCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetPublicKeyConfigCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetRealtimeLogConfigCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetTrustStoreCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListConnectionFunctionsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListDistributionsByConnectionFunctionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListDistributionsByTrustStoreCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListTrustStoresCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/PublishConnectionFunctionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/TestConnectionFunctionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateConnectionFunctionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateTrustStoreCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/index.d.ts +18 -3
- package/dist-types/ts3.4/models/enums.d.ts +40 -11
- package/dist-types/ts3.4/models/errors.d.ts +8 -8
- package/dist-types/ts3.4/models/models_0.d.ts +131 -82
- package/dist-types/ts3.4/models/models_1.d.ts +172 -0
- package/dist-types/ts3.4/pagination/ListConnectionFunctionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListDistributionsByConnectionFunctionPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListDistributionsByTrustStorePaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListTrustStoresPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +57 -0
- package/package.json +2 -2
|
@@ -1,5 +1,257 @@
|
|
|
1
|
-
import { CachePolicyType, ConnectionMode, DistributionResourceType, DnsConfigurationStatus, FunctionStage, HttpVersion, IpAddressType, OriginAccessControlOriginTypes, OriginAccessControlSigningBehaviors, OriginAccessControlSigningProtocols, OriginRequestPolicyType, PriceClass, ResponseHeadersPolicyType } from "./enums";
|
|
2
|
-
import { Aliases, AliasICPRecordal, AnycastIpList, AnycastIpListCollection, CacheBehaviors, CachePolicy, CachePolicyConfig, CachePolicyList, CloudFrontOriginAccessIdentity, CloudFrontOriginAccessIdentityConfig, ConnectionGroup, ContentTypeProfileConfig, ContinuousDeploymentPolicy, ContinuousDeploymentPolicyConfig, CustomErrorResponses, Customizations, DefaultCacheBehavior, Distribution, DistributionConfig, DistributionTenant, DomainItem, DomainResult, EncryptionEntities, EndPoint, FieldLevelEncryption, FieldLevelEncryptionConfig, FieldLevelEncryptionProfile, FieldLevelEncryptionProfileConfig, FunctionConfig, FunctionSummary, KeyGroup, KeyGroupConfig, KeyValueStore, ManagedCertificateRequest, OriginAccessControl, OriginAccessControlConfig, OriginGroups, OriginRequestPolicy, OriginRequestPolicyConfig, Origins, Parameter, PublicKey, PublicKeyConfig, QueryArgProfileConfig, RealtimeLogConfig, ResponseHeadersPolicy, ResponseHeadersPolicyConfig, Restrictions, S3Origin, StreamingDistribution, StreamingDistributionConfig, Tags, TrustedSigners, ViewerCertificate, VpcOrigin, VpcOriginEndpointConfig } from "./models_0";
|
|
1
|
+
import { CachePolicyType, ConnectionMode, DistributionResourceType, DnsConfigurationStatus, FunctionStage, HttpVersion, IpAddressType, ManagedCertificateStatus, OriginAccessControlOriginTypes, OriginAccessControlSigningBehaviors, OriginAccessControlSigningProtocols, OriginRequestPolicyType, PriceClass, ResponseHeadersPolicyType, TrustStoreStatus, ValidationTokenHost } from "./enums";
|
|
2
|
+
import { Aliases, AliasICPRecordal, AnycastIpList, AnycastIpListCollection, CaCertificatesBundleSource, CacheBehaviors, CachePolicy, CachePolicyConfig, CachePolicyList, CloudFrontOriginAccessIdentity, CloudFrontOriginAccessIdentityConfig, ConnectionFunctionAssociation, ConnectionFunctionSummary, ConnectionGroup, ContentTypeProfileConfig, ContinuousDeploymentPolicy, ContinuousDeploymentPolicyConfig, CustomErrorResponses, Customizations, DefaultCacheBehavior, Distribution, DistributionConfig, DistributionTenant, DomainItem, DomainResult, EncryptionEntities, EndPoint, FieldLevelEncryption, FieldLevelEncryptionConfig, FieldLevelEncryptionProfile, FieldLevelEncryptionProfileConfig, FunctionConfig, FunctionSummary, KeyGroup, KeyGroupConfig, KeyValueStore, ManagedCertificateRequest, MonitoringSubscription, OriginAccessControl, OriginAccessControlConfig, OriginGroups, OriginRequestPolicy, OriginRequestPolicyConfig, Origins, Parameter, PublicKey, PublicKeyConfig, QueryArgProfileConfig, RealtimeLogConfig, ResponseHeadersPolicy, ResponseHeadersPolicyConfig, Restrictions, S3Origin, StreamingDistribution, StreamingDistributionConfig, Tags, TrustedSigners, TrustStore, ViewerCertificate, ViewerMtlsConfig, VpcOrigin, VpcOriginEndpointConfig } from "./models_0";
|
|
3
|
+
/**
|
|
4
|
+
* <p>Contains details about the validation token.</p>
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export interface ValidationTokenDetail {
|
|
8
|
+
/**
|
|
9
|
+
* <p>The domain name.</p>
|
|
10
|
+
* @public
|
|
11
|
+
*/
|
|
12
|
+
Domain: string | undefined;
|
|
13
|
+
/**
|
|
14
|
+
* <p>The domain to redirect to.</p>
|
|
15
|
+
* @public
|
|
16
|
+
*/
|
|
17
|
+
RedirectTo?: string | undefined;
|
|
18
|
+
/**
|
|
19
|
+
* <p>The domain to redirect from.</p>
|
|
20
|
+
* @public
|
|
21
|
+
*/
|
|
22
|
+
RedirectFrom?: string | undefined;
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* <p>Contains details about the CloudFront managed ACM certificate.</p>
|
|
26
|
+
* @public
|
|
27
|
+
*/
|
|
28
|
+
export interface ManagedCertificateDetails {
|
|
29
|
+
/**
|
|
30
|
+
* <p>The ARN of the CloudFront managed ACM certificate.</p>
|
|
31
|
+
* @public
|
|
32
|
+
*/
|
|
33
|
+
CertificateArn?: string | undefined;
|
|
34
|
+
/**
|
|
35
|
+
* <p>The status of the CloudFront managed ACM certificate.</p> <note> <p>Your distribution tenant will be updated with the latest certificate status. When calling the <a href="https://docs.aws.amazon.com/cloudfront/latest/APIReference/API_UpdateDistributionTenant.html">UpdateDistributionTenant</a> operation, use the latest value for the <code>ETag</code>.</p> </note>
|
|
36
|
+
* @public
|
|
37
|
+
*/
|
|
38
|
+
CertificateStatus?: ManagedCertificateStatus | undefined;
|
|
39
|
+
/**
|
|
40
|
+
* <p>Contains details about the validation token host of the specified CloudFront managed ACM certificate.</p> <ul> <li> <p>For <code>cloudfront</code>, CloudFront will automatically serve the validation token. Choose this mode if you can point the domain's DNS to CloudFront immediately.</p> </li> <li> <p>For <code>self-hosted</code>, you serve the validation token from your existing infrastructure. Choose this mode when you need to maintain current traffic flow while your certificate is being issued. You can place the validation token at the well-known path on your existing web server, wait for ACM to validate and issue the certificate, and then update your DNS to point to CloudFront.</p> </li> </ul> <note> <p>This setting only affects the initial certificate request. Once the DNS points to CloudFront, all future certificate renewals are automatically handled through CloudFront.</p> </note>
|
|
41
|
+
* @public
|
|
42
|
+
*/
|
|
43
|
+
ValidationTokenHost?: ValidationTokenHost | undefined;
|
|
44
|
+
/**
|
|
45
|
+
* <p>Contains details about the validation token of the specified CloudFront managed ACM certificate.</p>
|
|
46
|
+
* @public
|
|
47
|
+
*/
|
|
48
|
+
ValidationTokenDetails?: ValidationTokenDetail[] | undefined;
|
|
49
|
+
}
|
|
50
|
+
/**
|
|
51
|
+
* @public
|
|
52
|
+
*/
|
|
53
|
+
export interface GetManagedCertificateDetailsResult {
|
|
54
|
+
/**
|
|
55
|
+
* <p>Contains details about the CloudFront managed ACM certificate.</p>
|
|
56
|
+
* @public
|
|
57
|
+
*/
|
|
58
|
+
ManagedCertificateDetails?: ManagedCertificateDetails | undefined;
|
|
59
|
+
}
|
|
60
|
+
/**
|
|
61
|
+
* @public
|
|
62
|
+
*/
|
|
63
|
+
export interface GetMonitoringSubscriptionRequest {
|
|
64
|
+
/**
|
|
65
|
+
* <p>The ID of the distribution that you are getting metrics information for.</p>
|
|
66
|
+
* @public
|
|
67
|
+
*/
|
|
68
|
+
DistributionId: string | undefined;
|
|
69
|
+
}
|
|
70
|
+
/**
|
|
71
|
+
* @public
|
|
72
|
+
*/
|
|
73
|
+
export interface GetMonitoringSubscriptionResult {
|
|
74
|
+
/**
|
|
75
|
+
* <p>A monitoring subscription. This structure contains information about whether additional CloudWatch metrics are enabled for a given CloudFront distribution.</p>
|
|
76
|
+
* @public
|
|
77
|
+
*/
|
|
78
|
+
MonitoringSubscription?: MonitoringSubscription | undefined;
|
|
79
|
+
}
|
|
80
|
+
/**
|
|
81
|
+
* @public
|
|
82
|
+
*/
|
|
83
|
+
export interface GetOriginAccessControlRequest {
|
|
84
|
+
/**
|
|
85
|
+
* <p>The unique identifier of the origin access control.</p>
|
|
86
|
+
* @public
|
|
87
|
+
*/
|
|
88
|
+
Id: string | undefined;
|
|
89
|
+
}
|
|
90
|
+
/**
|
|
91
|
+
* @public
|
|
92
|
+
*/
|
|
93
|
+
export interface GetOriginAccessControlResult {
|
|
94
|
+
/**
|
|
95
|
+
* <p>Contains an origin access control, including its unique identifier.</p>
|
|
96
|
+
* @public
|
|
97
|
+
*/
|
|
98
|
+
OriginAccessControl?: OriginAccessControl | undefined;
|
|
99
|
+
/**
|
|
100
|
+
* <p>The version identifier for the current version of the origin access control.</p>
|
|
101
|
+
* @public
|
|
102
|
+
*/
|
|
103
|
+
ETag?: string | undefined;
|
|
104
|
+
}
|
|
105
|
+
/**
|
|
106
|
+
* @public
|
|
107
|
+
*/
|
|
108
|
+
export interface GetOriginAccessControlConfigRequest {
|
|
109
|
+
/**
|
|
110
|
+
* <p>The unique identifier of the origin access control.</p>
|
|
111
|
+
* @public
|
|
112
|
+
*/
|
|
113
|
+
Id: string | undefined;
|
|
114
|
+
}
|
|
115
|
+
/**
|
|
116
|
+
* @public
|
|
117
|
+
*/
|
|
118
|
+
export interface GetOriginAccessControlConfigResult {
|
|
119
|
+
/**
|
|
120
|
+
* <p>Contains an origin access control configuration.</p>
|
|
121
|
+
* @public
|
|
122
|
+
*/
|
|
123
|
+
OriginAccessControlConfig?: OriginAccessControlConfig | undefined;
|
|
124
|
+
/**
|
|
125
|
+
* <p>The version identifier for the current version of the origin access control.</p>
|
|
126
|
+
* @public
|
|
127
|
+
*/
|
|
128
|
+
ETag?: string | undefined;
|
|
129
|
+
}
|
|
130
|
+
/**
|
|
131
|
+
* @public
|
|
132
|
+
*/
|
|
133
|
+
export interface GetOriginRequestPolicyRequest {
|
|
134
|
+
/**
|
|
135
|
+
* <p>The unique identifier for the origin request policy. If the origin request policy is attached to a distribution's cache behavior, you can get the policy's identifier using <code>ListDistributions</code> or <code>GetDistribution</code>. If the origin request policy is not attached to a cache behavior, you can get the identifier using <code>ListOriginRequestPolicies</code>.</p>
|
|
136
|
+
* @public
|
|
137
|
+
*/
|
|
138
|
+
Id: string | undefined;
|
|
139
|
+
}
|
|
140
|
+
/**
|
|
141
|
+
* @public
|
|
142
|
+
*/
|
|
143
|
+
export interface GetOriginRequestPolicyResult {
|
|
144
|
+
/**
|
|
145
|
+
* <p>The origin request policy.</p>
|
|
146
|
+
* @public
|
|
147
|
+
*/
|
|
148
|
+
OriginRequestPolicy?: OriginRequestPolicy | undefined;
|
|
149
|
+
/**
|
|
150
|
+
* <p>The current version of the origin request policy.</p>
|
|
151
|
+
* @public
|
|
152
|
+
*/
|
|
153
|
+
ETag?: string | undefined;
|
|
154
|
+
}
|
|
155
|
+
/**
|
|
156
|
+
* @public
|
|
157
|
+
*/
|
|
158
|
+
export interface GetOriginRequestPolicyConfigRequest {
|
|
159
|
+
/**
|
|
160
|
+
* <p>The unique identifier for the origin request policy. If the origin request policy is attached to a distribution's cache behavior, you can get the policy's identifier using <code>ListDistributions</code> or <code>GetDistribution</code>. If the origin request policy is not attached to a cache behavior, you can get the identifier using <code>ListOriginRequestPolicies</code>.</p>
|
|
161
|
+
* @public
|
|
162
|
+
*/
|
|
163
|
+
Id: string | undefined;
|
|
164
|
+
}
|
|
165
|
+
/**
|
|
166
|
+
* @public
|
|
167
|
+
*/
|
|
168
|
+
export interface GetOriginRequestPolicyConfigResult {
|
|
169
|
+
/**
|
|
170
|
+
* <p>The origin request policy configuration.</p>
|
|
171
|
+
* @public
|
|
172
|
+
*/
|
|
173
|
+
OriginRequestPolicyConfig?: OriginRequestPolicyConfig | undefined;
|
|
174
|
+
/**
|
|
175
|
+
* <p>The current version of the origin request policy.</p>
|
|
176
|
+
* @public
|
|
177
|
+
*/
|
|
178
|
+
ETag?: string | undefined;
|
|
179
|
+
}
|
|
180
|
+
/**
|
|
181
|
+
* @public
|
|
182
|
+
*/
|
|
183
|
+
export interface GetPublicKeyRequest {
|
|
184
|
+
/**
|
|
185
|
+
* <p>The identifier of the public key you are getting.</p>
|
|
186
|
+
* @public
|
|
187
|
+
*/
|
|
188
|
+
Id: string | undefined;
|
|
189
|
+
}
|
|
190
|
+
/**
|
|
191
|
+
* @public
|
|
192
|
+
*/
|
|
193
|
+
export interface GetPublicKeyResult {
|
|
194
|
+
/**
|
|
195
|
+
* <p>The public key.</p>
|
|
196
|
+
* @public
|
|
197
|
+
*/
|
|
198
|
+
PublicKey?: PublicKey | undefined;
|
|
199
|
+
/**
|
|
200
|
+
* <p>The identifier for this version of the public key.</p>
|
|
201
|
+
* @public
|
|
202
|
+
*/
|
|
203
|
+
ETag?: string | undefined;
|
|
204
|
+
}
|
|
205
|
+
/**
|
|
206
|
+
* @public
|
|
207
|
+
*/
|
|
208
|
+
export interface GetPublicKeyConfigRequest {
|
|
209
|
+
/**
|
|
210
|
+
* <p>The identifier of the public key whose configuration you are getting.</p>
|
|
211
|
+
* @public
|
|
212
|
+
*/
|
|
213
|
+
Id: string | undefined;
|
|
214
|
+
}
|
|
215
|
+
/**
|
|
216
|
+
* @public
|
|
217
|
+
*/
|
|
218
|
+
export interface GetPublicKeyConfigResult {
|
|
219
|
+
/**
|
|
220
|
+
* <p>A public key configuration.</p>
|
|
221
|
+
* @public
|
|
222
|
+
*/
|
|
223
|
+
PublicKeyConfig?: PublicKeyConfig | undefined;
|
|
224
|
+
/**
|
|
225
|
+
* <p>The identifier for this version of the public key configuration.</p>
|
|
226
|
+
* @public
|
|
227
|
+
*/
|
|
228
|
+
ETag?: string | undefined;
|
|
229
|
+
}
|
|
230
|
+
/**
|
|
231
|
+
* @public
|
|
232
|
+
*/
|
|
233
|
+
export interface GetRealtimeLogConfigRequest {
|
|
234
|
+
/**
|
|
235
|
+
* <p>The name of the real-time log configuration to get.</p>
|
|
236
|
+
* @public
|
|
237
|
+
*/
|
|
238
|
+
Name?: string | undefined;
|
|
239
|
+
/**
|
|
240
|
+
* <p>The Amazon Resource Name (ARN) of the real-time log configuration to get.</p>
|
|
241
|
+
* @public
|
|
242
|
+
*/
|
|
243
|
+
ARN?: string | undefined;
|
|
244
|
+
}
|
|
245
|
+
/**
|
|
246
|
+
* @public
|
|
247
|
+
*/
|
|
248
|
+
export interface GetRealtimeLogConfigResult {
|
|
249
|
+
/**
|
|
250
|
+
* <p>A real-time log configuration.</p>
|
|
251
|
+
* @public
|
|
252
|
+
*/
|
|
253
|
+
RealtimeLogConfig?: RealtimeLogConfig | undefined;
|
|
254
|
+
}
|
|
3
255
|
/**
|
|
4
256
|
* @public
|
|
5
257
|
*/
|
|
@@ -129,6 +381,31 @@ export interface GetStreamingDistributionConfigResult {
|
|
|
129
381
|
*/
|
|
130
382
|
ETag?: string | undefined;
|
|
131
383
|
}
|
|
384
|
+
/**
|
|
385
|
+
* @public
|
|
386
|
+
*/
|
|
387
|
+
export interface GetTrustStoreRequest {
|
|
388
|
+
/**
|
|
389
|
+
* <p>The trust store's identifier.</p>
|
|
390
|
+
* @public
|
|
391
|
+
*/
|
|
392
|
+
Identifier: string | undefined;
|
|
393
|
+
}
|
|
394
|
+
/**
|
|
395
|
+
* @public
|
|
396
|
+
*/
|
|
397
|
+
export interface GetTrustStoreResult {
|
|
398
|
+
/**
|
|
399
|
+
* <p>The trust store.</p>
|
|
400
|
+
* @public
|
|
401
|
+
*/
|
|
402
|
+
TrustStore?: TrustStore | undefined;
|
|
403
|
+
/**
|
|
404
|
+
* <p>The version identifier for the current version of the trust store.</p>
|
|
405
|
+
* @public
|
|
406
|
+
*/
|
|
407
|
+
ETag?: string | undefined;
|
|
408
|
+
}
|
|
132
409
|
/**
|
|
133
410
|
* @public
|
|
134
411
|
*/
|
|
@@ -375,6 +652,41 @@ export interface ListConflictingAliasesResult {
|
|
|
375
652
|
*/
|
|
376
653
|
ConflictingAliasesList?: ConflictingAliasesList | undefined;
|
|
377
654
|
}
|
|
655
|
+
/**
|
|
656
|
+
* @public
|
|
657
|
+
*/
|
|
658
|
+
export interface ListConnectionFunctionsRequest {
|
|
659
|
+
/**
|
|
660
|
+
* <p>Use this field when paginating results to indicate where to begin in your list. The response includes items in the list that occur after the marker. To get the next page of the list, set this field's value to the value of <code>NextMarker</code> from the current page's response.</p>
|
|
661
|
+
* @public
|
|
662
|
+
*/
|
|
663
|
+
Marker?: string | undefined;
|
|
664
|
+
/**
|
|
665
|
+
* <p>The maximum number of connection functions that you want returned in the response.</p>
|
|
666
|
+
* @public
|
|
667
|
+
*/
|
|
668
|
+
MaxItems?: number | undefined;
|
|
669
|
+
/**
|
|
670
|
+
* <p>The connection function's stage.</p>
|
|
671
|
+
* @public
|
|
672
|
+
*/
|
|
673
|
+
Stage?: FunctionStage | undefined;
|
|
674
|
+
}
|
|
675
|
+
/**
|
|
676
|
+
* @public
|
|
677
|
+
*/
|
|
678
|
+
export interface ListConnectionFunctionsResult {
|
|
679
|
+
/**
|
|
680
|
+
* <p>Indicates the next page of connection functions. To get the next page of the list, use this value in the <code>Marker</code> field of your request.</p>
|
|
681
|
+
* @public
|
|
682
|
+
*/
|
|
683
|
+
NextMarker?: string | undefined;
|
|
684
|
+
/**
|
|
685
|
+
* <p>A list of connection functions.</p>
|
|
686
|
+
* @public
|
|
687
|
+
*/
|
|
688
|
+
ConnectionFunctions?: ConnectionFunctionSummary[] | undefined;
|
|
689
|
+
}
|
|
378
690
|
/**
|
|
379
691
|
* <p>Contains information about what CloudFront resources your connection groups are associated with.</p>
|
|
380
692
|
* @public
|
|
@@ -685,6 +997,16 @@ export interface DistributionSummary {
|
|
|
685
997
|
* @public
|
|
686
998
|
*/
|
|
687
999
|
AnycastIpListId?: string | undefined;
|
|
1000
|
+
/**
|
|
1001
|
+
* <p>The distribution's viewer mTLS configuration.</p>
|
|
1002
|
+
* @public
|
|
1003
|
+
*/
|
|
1004
|
+
ViewerMtlsConfig?: ViewerMtlsConfig | undefined;
|
|
1005
|
+
/**
|
|
1006
|
+
* <p>The distribution's connection function association.</p>
|
|
1007
|
+
* @public
|
|
1008
|
+
*/
|
|
1009
|
+
ConnectionFunctionAssociation?: ConnectionFunctionAssociation | undefined;
|
|
688
1010
|
}
|
|
689
1011
|
/**
|
|
690
1012
|
* <p>A distribution list.</p>
|
|
@@ -829,6 +1151,36 @@ export interface ListDistributionsByCachePolicyIdResult {
|
|
|
829
1151
|
*/
|
|
830
1152
|
DistributionIdList?: DistributionIdList | undefined;
|
|
831
1153
|
}
|
|
1154
|
+
/**
|
|
1155
|
+
* @public
|
|
1156
|
+
*/
|
|
1157
|
+
export interface ListDistributionsByConnectionFunctionRequest {
|
|
1158
|
+
/**
|
|
1159
|
+
* <p>Use this field when paginating results to indicate where to begin in your list. The response includes items in the list that occur after the marker. To get the next page of the list, set this field's value to the value of <code>NextMarker</code> from the current page's response.</p>
|
|
1160
|
+
* @public
|
|
1161
|
+
*/
|
|
1162
|
+
Marker?: string | undefined;
|
|
1163
|
+
/**
|
|
1164
|
+
* <p>The maximum number of distributions that you want returned in the response.</p>
|
|
1165
|
+
* @public
|
|
1166
|
+
*/
|
|
1167
|
+
MaxItems?: number | undefined;
|
|
1168
|
+
/**
|
|
1169
|
+
* <p>The distributions by connection function identifier.</p>
|
|
1170
|
+
* @public
|
|
1171
|
+
*/
|
|
1172
|
+
ConnectionFunctionIdentifier: string | undefined;
|
|
1173
|
+
}
|
|
1174
|
+
/**
|
|
1175
|
+
* @public
|
|
1176
|
+
*/
|
|
1177
|
+
export interface ListDistributionsByConnectionFunctionResult {
|
|
1178
|
+
/**
|
|
1179
|
+
* <p>A distribution list.</p>
|
|
1180
|
+
* @public
|
|
1181
|
+
*/
|
|
1182
|
+
DistributionList?: DistributionList | undefined;
|
|
1183
|
+
}
|
|
832
1184
|
/**
|
|
833
1185
|
* @public
|
|
834
1186
|
*/
|
|
@@ -1066,6 +1418,36 @@ export interface ListDistributionsByResponseHeadersPolicyIdResult {
|
|
|
1066
1418
|
*/
|
|
1067
1419
|
DistributionIdList?: DistributionIdList | undefined;
|
|
1068
1420
|
}
|
|
1421
|
+
/**
|
|
1422
|
+
* @public
|
|
1423
|
+
*/
|
|
1424
|
+
export interface ListDistributionsByTrustStoreRequest {
|
|
1425
|
+
/**
|
|
1426
|
+
* <p>The distributions by trust store identifier.</p>
|
|
1427
|
+
* @public
|
|
1428
|
+
*/
|
|
1429
|
+
TrustStoreIdentifier: string | undefined;
|
|
1430
|
+
/**
|
|
1431
|
+
* <p>Use this field when paginating results to indicate where to begin in your list. The response includes items in the list that occur after the marker. To get the next page of the list, set this field's value to the value of <code>NextMarker</code> from the current page's response.</p>
|
|
1432
|
+
* @public
|
|
1433
|
+
*/
|
|
1434
|
+
Marker?: string | undefined;
|
|
1435
|
+
/**
|
|
1436
|
+
* <p>The maximum number of distributions that you want returned in the response.</p>
|
|
1437
|
+
* @public
|
|
1438
|
+
*/
|
|
1439
|
+
MaxItems?: number | undefined;
|
|
1440
|
+
}
|
|
1441
|
+
/**
|
|
1442
|
+
* @public
|
|
1443
|
+
*/
|
|
1444
|
+
export interface ListDistributionsByTrustStoreResult {
|
|
1445
|
+
/**
|
|
1446
|
+
* <p>A distribution list.</p>
|
|
1447
|
+
* @public
|
|
1448
|
+
*/
|
|
1449
|
+
DistributionList?: DistributionList | undefined;
|
|
1450
|
+
}
|
|
1069
1451
|
/**
|
|
1070
1452
|
* @public
|
|
1071
1453
|
*/
|
|
@@ -2349,6 +2731,82 @@ export interface ListTagsForResourceResult {
|
|
|
2349
2731
|
*/
|
|
2350
2732
|
Tags: Tags | undefined;
|
|
2351
2733
|
}
|
|
2734
|
+
/**
|
|
2735
|
+
* @public
|
|
2736
|
+
*/
|
|
2737
|
+
export interface ListTrustStoresRequest {
|
|
2738
|
+
/**
|
|
2739
|
+
* <p>Use this field when paginating results to indicate where to begin in your list. The response includes items in the list that occur after the marker. To get the next page of the list, set this field's value to the value of <code>NextMarker</code> from the current page's response.</p>
|
|
2740
|
+
* @public
|
|
2741
|
+
*/
|
|
2742
|
+
Marker?: string | undefined;
|
|
2743
|
+
/**
|
|
2744
|
+
* <p>The maximum number of trust stores that you want returned in the response.</p>
|
|
2745
|
+
* @public
|
|
2746
|
+
*/
|
|
2747
|
+
MaxItems?: number | undefined;
|
|
2748
|
+
}
|
|
2749
|
+
/**
|
|
2750
|
+
* <p>A trust store summary.</p>
|
|
2751
|
+
* @public
|
|
2752
|
+
*/
|
|
2753
|
+
export interface TrustStoreSummary {
|
|
2754
|
+
/**
|
|
2755
|
+
* <p>The trust store's ID.</p>
|
|
2756
|
+
* @public
|
|
2757
|
+
*/
|
|
2758
|
+
Id: string | undefined;
|
|
2759
|
+
/**
|
|
2760
|
+
* <p>The trust store's Amazon Resource Name (ARN).</p>
|
|
2761
|
+
* @public
|
|
2762
|
+
*/
|
|
2763
|
+
Arn: string | undefined;
|
|
2764
|
+
/**
|
|
2765
|
+
* <p>The trust store's name.</p>
|
|
2766
|
+
* @public
|
|
2767
|
+
*/
|
|
2768
|
+
Name: string | undefined;
|
|
2769
|
+
/**
|
|
2770
|
+
* <p>The trust store's status.</p>
|
|
2771
|
+
* @public
|
|
2772
|
+
*/
|
|
2773
|
+
Status: TrustStoreStatus | undefined;
|
|
2774
|
+
/**
|
|
2775
|
+
* <p>The trust store's number of CA certificates.</p>
|
|
2776
|
+
* @public
|
|
2777
|
+
*/
|
|
2778
|
+
NumberOfCaCertificates: number | undefined;
|
|
2779
|
+
/**
|
|
2780
|
+
* <p>The trust store's last modified time.</p>
|
|
2781
|
+
* @public
|
|
2782
|
+
*/
|
|
2783
|
+
LastModifiedTime: Date | undefined;
|
|
2784
|
+
/**
|
|
2785
|
+
* <p>The trust store's reason.</p>
|
|
2786
|
+
* @public
|
|
2787
|
+
*/
|
|
2788
|
+
Reason?: string | undefined;
|
|
2789
|
+
/**
|
|
2790
|
+
* <p>The version identifier for the current version of the trust store.</p>
|
|
2791
|
+
* @public
|
|
2792
|
+
*/
|
|
2793
|
+
ETag: string | undefined;
|
|
2794
|
+
}
|
|
2795
|
+
/**
|
|
2796
|
+
* @public
|
|
2797
|
+
*/
|
|
2798
|
+
export interface ListTrustStoresResult {
|
|
2799
|
+
/**
|
|
2800
|
+
* <p>Indicates the next page of trust stores. To get the next page of the list, use this value in the <code>Marker</code> field of your request.</p>
|
|
2801
|
+
* @public
|
|
2802
|
+
*/
|
|
2803
|
+
NextMarker?: string | undefined;
|
|
2804
|
+
/**
|
|
2805
|
+
* <p>The trust store list.</p>
|
|
2806
|
+
* @public
|
|
2807
|
+
*/
|
|
2808
|
+
TrustStoreList?: TrustStoreSummary[] | undefined;
|
|
2809
|
+
}
|
|
2352
2810
|
/**
|
|
2353
2811
|
* @public
|
|
2354
2812
|
*/
|
|
@@ -2456,6 +2914,31 @@ export interface ListVpcOriginsResult {
|
|
|
2456
2914
|
*/
|
|
2457
2915
|
VpcOriginList?: VpcOriginList | undefined;
|
|
2458
2916
|
}
|
|
2917
|
+
/**
|
|
2918
|
+
* @public
|
|
2919
|
+
*/
|
|
2920
|
+
export interface PublishConnectionFunctionRequest {
|
|
2921
|
+
/**
|
|
2922
|
+
* <p>The connection function ID.</p>
|
|
2923
|
+
* @public
|
|
2924
|
+
*/
|
|
2925
|
+
Id: string | undefined;
|
|
2926
|
+
/**
|
|
2927
|
+
* <p>The current version (<code>ETag</code> value) of the connection function.</p>
|
|
2928
|
+
* @public
|
|
2929
|
+
*/
|
|
2930
|
+
IfMatch: string | undefined;
|
|
2931
|
+
}
|
|
2932
|
+
/**
|
|
2933
|
+
* @public
|
|
2934
|
+
*/
|
|
2935
|
+
export interface PublishConnectionFunctionResult {
|
|
2936
|
+
/**
|
|
2937
|
+
* <p>The connection function summary.</p>
|
|
2938
|
+
* @public
|
|
2939
|
+
*/
|
|
2940
|
+
ConnectionFunctionSummary?: ConnectionFunctionSummary | undefined;
|
|
2941
|
+
}
|
|
2459
2942
|
/**
|
|
2460
2943
|
* @public
|
|
2461
2944
|
*/
|
|
@@ -2522,6 +3005,72 @@ export interface TagResourceRequest {
|
|
|
2522
3005
|
*/
|
|
2523
3006
|
Tags: Tags | undefined;
|
|
2524
3007
|
}
|
|
3008
|
+
/**
|
|
3009
|
+
* @public
|
|
3010
|
+
*/
|
|
3011
|
+
export interface TestConnectionFunctionRequest {
|
|
3012
|
+
/**
|
|
3013
|
+
* <p>The connection function ID.</p>
|
|
3014
|
+
* @public
|
|
3015
|
+
*/
|
|
3016
|
+
Id: string | undefined;
|
|
3017
|
+
/**
|
|
3018
|
+
* <p>The current version (<code>ETag</code> value) of the connection function.</p>
|
|
3019
|
+
* @public
|
|
3020
|
+
*/
|
|
3021
|
+
IfMatch: string | undefined;
|
|
3022
|
+
/**
|
|
3023
|
+
* <p>The connection function stage.</p>
|
|
3024
|
+
* @public
|
|
3025
|
+
*/
|
|
3026
|
+
Stage?: FunctionStage | undefined;
|
|
3027
|
+
/**
|
|
3028
|
+
* <p>The connection object.</p>
|
|
3029
|
+
* @public
|
|
3030
|
+
*/
|
|
3031
|
+
ConnectionObject: Uint8Array | undefined;
|
|
3032
|
+
}
|
|
3033
|
+
/**
|
|
3034
|
+
* <p>A connection function test result.</p>
|
|
3035
|
+
* @public
|
|
3036
|
+
*/
|
|
3037
|
+
export interface ConnectionFunctionTestResult {
|
|
3038
|
+
/**
|
|
3039
|
+
* <p>The connection function summary.</p>
|
|
3040
|
+
* @public
|
|
3041
|
+
*/
|
|
3042
|
+
ConnectionFunctionSummary?: ConnectionFunctionSummary | undefined;
|
|
3043
|
+
/**
|
|
3044
|
+
* <p>The connection function compute utilization.</p>
|
|
3045
|
+
* @public
|
|
3046
|
+
*/
|
|
3047
|
+
ComputeUtilization?: string | undefined;
|
|
3048
|
+
/**
|
|
3049
|
+
* <p>The connection function execution logs.</p>
|
|
3050
|
+
* @public
|
|
3051
|
+
*/
|
|
3052
|
+
ConnectionFunctionExecutionLogs?: string[] | undefined;
|
|
3053
|
+
/**
|
|
3054
|
+
* <p>The connection function error message.</p>
|
|
3055
|
+
* @public
|
|
3056
|
+
*/
|
|
3057
|
+
ConnectionFunctionErrorMessage?: string | undefined;
|
|
3058
|
+
/**
|
|
3059
|
+
* <p>The connection function output.</p>
|
|
3060
|
+
* @public
|
|
3061
|
+
*/
|
|
3062
|
+
ConnectionFunctionOutput?: string | undefined;
|
|
3063
|
+
}
|
|
3064
|
+
/**
|
|
3065
|
+
* @public
|
|
3066
|
+
*/
|
|
3067
|
+
export interface TestConnectionFunctionResult {
|
|
3068
|
+
/**
|
|
3069
|
+
* <p>The connection function test result.</p>
|
|
3070
|
+
* @public
|
|
3071
|
+
*/
|
|
3072
|
+
ConnectionFunctionTestResult?: ConnectionFunctionTestResult | undefined;
|
|
3073
|
+
}
|
|
2525
3074
|
/**
|
|
2526
3075
|
* @public
|
|
2527
3076
|
*/
|
|
@@ -2625,7 +3174,7 @@ export interface UpdateAnycastIpListRequest {
|
|
|
2625
3174
|
*/
|
|
2626
3175
|
Id: string | undefined;
|
|
2627
3176
|
/**
|
|
2628
|
-
* <p>The IP address type for the Anycast static IP list. You can specify one of the following options:</p> <ul> <li> <p> <code>ipv4</code>
|
|
3177
|
+
* <p>The IP address type for the Anycast static IP list. You can specify one of the following options:</p> <ul> <li> <p> <code>ipv4</code> only</p> </li> <li> <p> <code>ipv6</code> only</p> </li> <li> <p> <code>dualstack</code> - Allocate a list of both IPv4 and IPv6 addresses</p> </li> </ul>
|
|
2629
3178
|
* @public
|
|
2630
3179
|
*/
|
|
2631
3180
|
IpAddressType?: IpAddressType | undefined;
|
|
@@ -2722,6 +3271,46 @@ export interface UpdateCloudFrontOriginAccessIdentityResult {
|
|
|
2722
3271
|
*/
|
|
2723
3272
|
ETag?: string | undefined;
|
|
2724
3273
|
}
|
|
3274
|
+
/**
|
|
3275
|
+
* @public
|
|
3276
|
+
*/
|
|
3277
|
+
export interface UpdateConnectionFunctionRequest {
|
|
3278
|
+
/**
|
|
3279
|
+
* <p>The connection function ID.</p>
|
|
3280
|
+
* @public
|
|
3281
|
+
*/
|
|
3282
|
+
Id: string | undefined;
|
|
3283
|
+
/**
|
|
3284
|
+
* <p>The current version (<code>ETag</code> value) of the connection function you are updating.</p>
|
|
3285
|
+
* @public
|
|
3286
|
+
*/
|
|
3287
|
+
IfMatch: string | undefined;
|
|
3288
|
+
/**
|
|
3289
|
+
* <p>Contains configuration information about a CloudFront function.</p>
|
|
3290
|
+
* @public
|
|
3291
|
+
*/
|
|
3292
|
+
ConnectionFunctionConfig: FunctionConfig | undefined;
|
|
3293
|
+
/**
|
|
3294
|
+
* <p>The connection function code.</p>
|
|
3295
|
+
* @public
|
|
3296
|
+
*/
|
|
3297
|
+
ConnectionFunctionCode: Uint8Array | undefined;
|
|
3298
|
+
}
|
|
3299
|
+
/**
|
|
3300
|
+
* @public
|
|
3301
|
+
*/
|
|
3302
|
+
export interface UpdateConnectionFunctionResult {
|
|
3303
|
+
/**
|
|
3304
|
+
* <p>The connection function summary.</p>
|
|
3305
|
+
* @public
|
|
3306
|
+
*/
|
|
3307
|
+
ConnectionFunctionSummary?: ConnectionFunctionSummary | undefined;
|
|
3308
|
+
/**
|
|
3309
|
+
* <p>The version identifier for the current version of the connection function.</p>
|
|
3310
|
+
* @public
|
|
3311
|
+
*/
|
|
3312
|
+
ETag?: string | undefined;
|
|
3313
|
+
}
|
|
2725
3314
|
/**
|
|
2726
3315
|
* @public
|
|
2727
3316
|
*/
|
|
@@ -3376,6 +3965,41 @@ export interface UpdateStreamingDistributionResult {
|
|
|
3376
3965
|
*/
|
|
3377
3966
|
ETag?: string | undefined;
|
|
3378
3967
|
}
|
|
3968
|
+
/**
|
|
3969
|
+
* @public
|
|
3970
|
+
*/
|
|
3971
|
+
export interface UpdateTrustStoreRequest {
|
|
3972
|
+
/**
|
|
3973
|
+
* <p>The trust store ID.</p>
|
|
3974
|
+
* @public
|
|
3975
|
+
*/
|
|
3976
|
+
Id: string | undefined;
|
|
3977
|
+
/**
|
|
3978
|
+
* <p>The CA certificates bundle source.</p>
|
|
3979
|
+
* @public
|
|
3980
|
+
*/
|
|
3981
|
+
CaCertificatesBundleSource: CaCertificatesBundleSource | undefined;
|
|
3982
|
+
/**
|
|
3983
|
+
* <p>The current version (<code>ETag</code> value) of the trust store you are updating.</p>
|
|
3984
|
+
* @public
|
|
3985
|
+
*/
|
|
3986
|
+
IfMatch: string | undefined;
|
|
3987
|
+
}
|
|
3988
|
+
/**
|
|
3989
|
+
* @public
|
|
3990
|
+
*/
|
|
3991
|
+
export interface UpdateTrustStoreResult {
|
|
3992
|
+
/**
|
|
3993
|
+
* <p>The trust store.</p>
|
|
3994
|
+
* @public
|
|
3995
|
+
*/
|
|
3996
|
+
TrustStore?: TrustStore | undefined;
|
|
3997
|
+
/**
|
|
3998
|
+
* <p>The version identifier for the current version of the trust store.</p>
|
|
3999
|
+
* @public
|
|
4000
|
+
*/
|
|
4001
|
+
ETag?: string | undefined;
|
|
4002
|
+
}
|
|
3379
4003
|
/**
|
|
3380
4004
|
* @public
|
|
3381
4005
|
*/
|