@aws-sdk/client-cloudfront 3.937.0 → 3.940.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 +977 -63
- 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 +17 -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 +708 -27
- 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/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/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/GetTrustStoreCommand.d.ts +92 -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/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 +49 -24
- package/dist-types/models/errors.d.ts +13 -13
- package/dist-types/models/models_0.d.ts +440 -288
- package/dist-types/models/models_1.d.ts +601 -2
- 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 +54 -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/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 +24 -11
- package/dist-types/ts3.4/models/errors.d.ts +8 -8
- package/dist-types/ts3.4/models/models_0.d.ts +117 -75
- package/dist-types/ts3.4/models/models_1.d.ts +165 -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 +54 -0
- package/package.json +5 -5
|
@@ -0,0 +1,412 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CloudFrontClient";
|
|
4
|
+
import { ListDistributionsByConnectionFunctionRequest, ListDistributionsByConnectionFunctionResult } from "../models/models_1";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link ListDistributionsByConnectionFunctionCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface ListDistributionsByConnectionFunctionCommandInput extends ListDistributionsByConnectionFunctionRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link ListDistributionsByConnectionFunctionCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface ListDistributionsByConnectionFunctionCommandOutput extends ListDistributionsByConnectionFunctionResult, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const ListDistributionsByConnectionFunctionCommand_base: {
|
|
25
|
+
new (input: ListDistributionsByConnectionFunctionCommandInput): import("@smithy/smithy-client").CommandImpl<ListDistributionsByConnectionFunctionCommandInput, ListDistributionsByConnectionFunctionCommandOutput, CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: ListDistributionsByConnectionFunctionCommandInput): import("@smithy/smithy-client").CommandImpl<ListDistributionsByConnectionFunctionCommandInput, ListDistributionsByConnectionFunctionCommandOutput, CloudFrontClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Lists distributions by connection function.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { CloudFrontClient, ListDistributionsByConnectionFunctionCommand } from "@aws-sdk/client-cloudfront"; // ES Modules import
|
|
35
|
+
* // const { CloudFrontClient, ListDistributionsByConnectionFunctionCommand } = require("@aws-sdk/client-cloudfront"); // CommonJS import
|
|
36
|
+
* // import type { CloudFrontClientConfig } from "@aws-sdk/client-cloudfront";
|
|
37
|
+
* const config = {}; // type is CloudFrontClientConfig
|
|
38
|
+
* const client = new CloudFrontClient(config);
|
|
39
|
+
* const input = { // ListDistributionsByConnectionFunctionRequest
|
|
40
|
+
* Marker: "STRING_VALUE",
|
|
41
|
+
* MaxItems: Number("int"),
|
|
42
|
+
* ConnectionFunctionIdentifier: "STRING_VALUE", // required
|
|
43
|
+
* };
|
|
44
|
+
* const command = new ListDistributionsByConnectionFunctionCommand(input);
|
|
45
|
+
* const response = await client.send(command);
|
|
46
|
+
* // { // ListDistributionsByConnectionFunctionResult
|
|
47
|
+
* // DistributionList: { // DistributionList
|
|
48
|
+
* // Marker: "STRING_VALUE", // required
|
|
49
|
+
* // NextMarker: "STRING_VALUE",
|
|
50
|
+
* // MaxItems: Number("int"), // required
|
|
51
|
+
* // IsTruncated: true || false, // required
|
|
52
|
+
* // Quantity: Number("int"), // required
|
|
53
|
+
* // Items: [ // DistributionSummaryList
|
|
54
|
+
* // { // DistributionSummary
|
|
55
|
+
* // Id: "STRING_VALUE", // required
|
|
56
|
+
* // ARN: "STRING_VALUE", // required
|
|
57
|
+
* // ETag: "STRING_VALUE",
|
|
58
|
+
* // Status: "STRING_VALUE", // required
|
|
59
|
+
* // LastModifiedTime: new Date("TIMESTAMP"), // required
|
|
60
|
+
* // DomainName: "STRING_VALUE", // required
|
|
61
|
+
* // Aliases: { // Aliases
|
|
62
|
+
* // Quantity: Number("int"), // required
|
|
63
|
+
* // Items: [ // AliasList
|
|
64
|
+
* // "STRING_VALUE",
|
|
65
|
+
* // ],
|
|
66
|
+
* // },
|
|
67
|
+
* // Origins: { // Origins
|
|
68
|
+
* // Quantity: Number("int"), // required
|
|
69
|
+
* // Items: [ // OriginList // required
|
|
70
|
+
* // { // Origin
|
|
71
|
+
* // Id: "STRING_VALUE", // required
|
|
72
|
+
* // DomainName: "STRING_VALUE", // required
|
|
73
|
+
* // OriginPath: "STRING_VALUE",
|
|
74
|
+
* // CustomHeaders: { // CustomHeaders
|
|
75
|
+
* // Quantity: Number("int"), // required
|
|
76
|
+
* // Items: [ // OriginCustomHeadersList
|
|
77
|
+
* // { // OriginCustomHeader
|
|
78
|
+
* // HeaderName: "STRING_VALUE", // required
|
|
79
|
+
* // HeaderValue: "STRING_VALUE", // required
|
|
80
|
+
* // },
|
|
81
|
+
* // ],
|
|
82
|
+
* // },
|
|
83
|
+
* // S3OriginConfig: { // S3OriginConfig
|
|
84
|
+
* // OriginAccessIdentity: "STRING_VALUE", // required
|
|
85
|
+
* // OriginReadTimeout: Number("int"),
|
|
86
|
+
* // },
|
|
87
|
+
* // CustomOriginConfig: { // CustomOriginConfig
|
|
88
|
+
* // HTTPPort: Number("int"), // required
|
|
89
|
+
* // HTTPSPort: Number("int"), // required
|
|
90
|
+
* // OriginProtocolPolicy: "http-only" || "match-viewer" || "https-only", // required
|
|
91
|
+
* // OriginSslProtocols: { // OriginSslProtocols
|
|
92
|
+
* // Quantity: Number("int"), // required
|
|
93
|
+
* // Items: [ // SslProtocolsList // required
|
|
94
|
+
* // "SSLv3" || "TLSv1" || "TLSv1.1" || "TLSv1.2",
|
|
95
|
+
* // ],
|
|
96
|
+
* // },
|
|
97
|
+
* // OriginReadTimeout: Number("int"),
|
|
98
|
+
* // OriginKeepaliveTimeout: Number("int"),
|
|
99
|
+
* // IpAddressType: "ipv4" || "ipv6" || "dualstack",
|
|
100
|
+
* // },
|
|
101
|
+
* // VpcOriginConfig: { // VpcOriginConfig
|
|
102
|
+
* // VpcOriginId: "STRING_VALUE", // required
|
|
103
|
+
* // OwnerAccountId: "STRING_VALUE",
|
|
104
|
+
* // OriginReadTimeout: Number("int"),
|
|
105
|
+
* // OriginKeepaliveTimeout: Number("int"),
|
|
106
|
+
* // },
|
|
107
|
+
* // ConnectionAttempts: Number("int"),
|
|
108
|
+
* // ConnectionTimeout: Number("int"),
|
|
109
|
+
* // ResponseCompletionTimeout: Number("int"),
|
|
110
|
+
* // OriginShield: { // OriginShield
|
|
111
|
+
* // Enabled: true || false, // required
|
|
112
|
+
* // OriginShieldRegion: "STRING_VALUE",
|
|
113
|
+
* // },
|
|
114
|
+
* // OriginAccessControlId: "STRING_VALUE",
|
|
115
|
+
* // },
|
|
116
|
+
* // ],
|
|
117
|
+
* // },
|
|
118
|
+
* // OriginGroups: { // OriginGroups
|
|
119
|
+
* // Quantity: Number("int"), // required
|
|
120
|
+
* // Items: [ // OriginGroupList
|
|
121
|
+
* // { // OriginGroup
|
|
122
|
+
* // Id: "STRING_VALUE", // required
|
|
123
|
+
* // FailoverCriteria: { // OriginGroupFailoverCriteria
|
|
124
|
+
* // StatusCodes: { // StatusCodes
|
|
125
|
+
* // Quantity: Number("int"), // required
|
|
126
|
+
* // Items: [ // StatusCodeList // required
|
|
127
|
+
* // Number("int"),
|
|
128
|
+
* // ],
|
|
129
|
+
* // },
|
|
130
|
+
* // },
|
|
131
|
+
* // Members: { // OriginGroupMembers
|
|
132
|
+
* // Quantity: Number("int"), // required
|
|
133
|
+
* // Items: [ // OriginGroupMemberList // required
|
|
134
|
+
* // { // OriginGroupMember
|
|
135
|
+
* // OriginId: "STRING_VALUE", // required
|
|
136
|
+
* // },
|
|
137
|
+
* // ],
|
|
138
|
+
* // },
|
|
139
|
+
* // SelectionCriteria: "default" || "media-quality-based",
|
|
140
|
+
* // },
|
|
141
|
+
* // ],
|
|
142
|
+
* // },
|
|
143
|
+
* // DefaultCacheBehavior: { // DefaultCacheBehavior
|
|
144
|
+
* // TargetOriginId: "STRING_VALUE", // required
|
|
145
|
+
* // TrustedSigners: { // TrustedSigners
|
|
146
|
+
* // Enabled: true || false, // required
|
|
147
|
+
* // Quantity: Number("int"), // required
|
|
148
|
+
* // Items: [ // AwsAccountNumberList
|
|
149
|
+
* // "STRING_VALUE",
|
|
150
|
+
* // ],
|
|
151
|
+
* // },
|
|
152
|
+
* // TrustedKeyGroups: { // TrustedKeyGroups
|
|
153
|
+
* // Enabled: true || false, // required
|
|
154
|
+
* // Quantity: Number("int"), // required
|
|
155
|
+
* // Items: [ // TrustedKeyGroupIdList
|
|
156
|
+
* // "STRING_VALUE",
|
|
157
|
+
* // ],
|
|
158
|
+
* // },
|
|
159
|
+
* // ViewerProtocolPolicy: "allow-all" || "https-only" || "redirect-to-https", // required
|
|
160
|
+
* // AllowedMethods: { // AllowedMethods
|
|
161
|
+
* // Quantity: Number("int"), // required
|
|
162
|
+
* // Items: [ // MethodsList // required
|
|
163
|
+
* // "GET" || "HEAD" || "POST" || "PUT" || "PATCH" || "OPTIONS" || "DELETE",
|
|
164
|
+
* // ],
|
|
165
|
+
* // CachedMethods: { // CachedMethods
|
|
166
|
+
* // Quantity: Number("int"), // required
|
|
167
|
+
* // Items: [ // required
|
|
168
|
+
* // "GET" || "HEAD" || "POST" || "PUT" || "PATCH" || "OPTIONS" || "DELETE",
|
|
169
|
+
* // ],
|
|
170
|
+
* // },
|
|
171
|
+
* // },
|
|
172
|
+
* // SmoothStreaming: true || false,
|
|
173
|
+
* // Compress: true || false,
|
|
174
|
+
* // LambdaFunctionAssociations: { // LambdaFunctionAssociations
|
|
175
|
+
* // Quantity: Number("int"), // required
|
|
176
|
+
* // Items: [ // LambdaFunctionAssociationList
|
|
177
|
+
* // { // LambdaFunctionAssociation
|
|
178
|
+
* // LambdaFunctionARN: "STRING_VALUE", // required
|
|
179
|
+
* // EventType: "viewer-request" || "viewer-response" || "origin-request" || "origin-response", // required
|
|
180
|
+
* // IncludeBody: true || false,
|
|
181
|
+
* // },
|
|
182
|
+
* // ],
|
|
183
|
+
* // },
|
|
184
|
+
* // FunctionAssociations: { // FunctionAssociations
|
|
185
|
+
* // Quantity: Number("int"), // required
|
|
186
|
+
* // Items: [ // FunctionAssociationList
|
|
187
|
+
* // { // FunctionAssociation
|
|
188
|
+
* // FunctionARN: "STRING_VALUE", // required
|
|
189
|
+
* // EventType: "viewer-request" || "viewer-response" || "origin-request" || "origin-response", // required
|
|
190
|
+
* // },
|
|
191
|
+
* // ],
|
|
192
|
+
* // },
|
|
193
|
+
* // FieldLevelEncryptionId: "STRING_VALUE",
|
|
194
|
+
* // RealtimeLogConfigArn: "STRING_VALUE",
|
|
195
|
+
* // CachePolicyId: "STRING_VALUE",
|
|
196
|
+
* // OriginRequestPolicyId: "STRING_VALUE",
|
|
197
|
+
* // ResponseHeadersPolicyId: "STRING_VALUE",
|
|
198
|
+
* // GrpcConfig: { // GrpcConfig
|
|
199
|
+
* // Enabled: true || false, // required
|
|
200
|
+
* // },
|
|
201
|
+
* // ForwardedValues: { // ForwardedValues
|
|
202
|
+
* // QueryString: true || false, // required
|
|
203
|
+
* // Cookies: { // CookiePreference
|
|
204
|
+
* // Forward: "none" || "whitelist" || "all", // required
|
|
205
|
+
* // WhitelistedNames: { // CookieNames
|
|
206
|
+
* // Quantity: Number("int"), // required
|
|
207
|
+
* // Items: [ // CookieNameList
|
|
208
|
+
* // "STRING_VALUE",
|
|
209
|
+
* // ],
|
|
210
|
+
* // },
|
|
211
|
+
* // },
|
|
212
|
+
* // Headers: { // Headers
|
|
213
|
+
* // Quantity: Number("int"), // required
|
|
214
|
+
* // Items: [ // HeaderList
|
|
215
|
+
* // "STRING_VALUE",
|
|
216
|
+
* // ],
|
|
217
|
+
* // },
|
|
218
|
+
* // QueryStringCacheKeys: { // QueryStringCacheKeys
|
|
219
|
+
* // Quantity: Number("int"), // required
|
|
220
|
+
* // Items: [ // QueryStringCacheKeysList
|
|
221
|
+
* // "STRING_VALUE",
|
|
222
|
+
* // ],
|
|
223
|
+
* // },
|
|
224
|
+
* // },
|
|
225
|
+
* // MinTTL: Number("long"),
|
|
226
|
+
* // DefaultTTL: Number("long"),
|
|
227
|
+
* // MaxTTL: Number("long"),
|
|
228
|
+
* // },
|
|
229
|
+
* // CacheBehaviors: { // CacheBehaviors
|
|
230
|
+
* // Quantity: Number("int"), // required
|
|
231
|
+
* // Items: [ // CacheBehaviorList
|
|
232
|
+
* // { // CacheBehavior
|
|
233
|
+
* // PathPattern: "STRING_VALUE", // required
|
|
234
|
+
* // TargetOriginId: "STRING_VALUE", // required
|
|
235
|
+
* // TrustedSigners: {
|
|
236
|
+
* // Enabled: true || false, // required
|
|
237
|
+
* // Quantity: Number("int"), // required
|
|
238
|
+
* // Items: [
|
|
239
|
+
* // "STRING_VALUE",
|
|
240
|
+
* // ],
|
|
241
|
+
* // },
|
|
242
|
+
* // TrustedKeyGroups: {
|
|
243
|
+
* // Enabled: true || false, // required
|
|
244
|
+
* // Quantity: Number("int"), // required
|
|
245
|
+
* // Items: [
|
|
246
|
+
* // "STRING_VALUE",
|
|
247
|
+
* // ],
|
|
248
|
+
* // },
|
|
249
|
+
* // ViewerProtocolPolicy: "allow-all" || "https-only" || "redirect-to-https", // required
|
|
250
|
+
* // AllowedMethods: {
|
|
251
|
+
* // Quantity: Number("int"), // required
|
|
252
|
+
* // Items: "<MethodsList>", // required
|
|
253
|
+
* // CachedMethods: {
|
|
254
|
+
* // Quantity: Number("int"), // required
|
|
255
|
+
* // Items: "<MethodsList>", // required
|
|
256
|
+
* // },
|
|
257
|
+
* // },
|
|
258
|
+
* // SmoothStreaming: true || false,
|
|
259
|
+
* // Compress: true || false,
|
|
260
|
+
* // LambdaFunctionAssociations: {
|
|
261
|
+
* // Quantity: Number("int"), // required
|
|
262
|
+
* // Items: [
|
|
263
|
+
* // {
|
|
264
|
+
* // LambdaFunctionARN: "STRING_VALUE", // required
|
|
265
|
+
* // EventType: "viewer-request" || "viewer-response" || "origin-request" || "origin-response", // required
|
|
266
|
+
* // IncludeBody: true || false,
|
|
267
|
+
* // },
|
|
268
|
+
* // ],
|
|
269
|
+
* // },
|
|
270
|
+
* // FunctionAssociations: {
|
|
271
|
+
* // Quantity: Number("int"), // required
|
|
272
|
+
* // Items: [
|
|
273
|
+
* // {
|
|
274
|
+
* // FunctionARN: "STRING_VALUE", // required
|
|
275
|
+
* // EventType: "viewer-request" || "viewer-response" || "origin-request" || "origin-response", // required
|
|
276
|
+
* // },
|
|
277
|
+
* // ],
|
|
278
|
+
* // },
|
|
279
|
+
* // FieldLevelEncryptionId: "STRING_VALUE",
|
|
280
|
+
* // RealtimeLogConfigArn: "STRING_VALUE",
|
|
281
|
+
* // CachePolicyId: "STRING_VALUE",
|
|
282
|
+
* // OriginRequestPolicyId: "STRING_VALUE",
|
|
283
|
+
* // ResponseHeadersPolicyId: "STRING_VALUE",
|
|
284
|
+
* // GrpcConfig: {
|
|
285
|
+
* // Enabled: true || false, // required
|
|
286
|
+
* // },
|
|
287
|
+
* // ForwardedValues: {
|
|
288
|
+
* // QueryString: true || false, // required
|
|
289
|
+
* // Cookies: {
|
|
290
|
+
* // Forward: "none" || "whitelist" || "all", // required
|
|
291
|
+
* // WhitelistedNames: {
|
|
292
|
+
* // Quantity: Number("int"), // required
|
|
293
|
+
* // Items: [
|
|
294
|
+
* // "STRING_VALUE",
|
|
295
|
+
* // ],
|
|
296
|
+
* // },
|
|
297
|
+
* // },
|
|
298
|
+
* // Headers: {
|
|
299
|
+
* // Quantity: Number("int"), // required
|
|
300
|
+
* // Items: [
|
|
301
|
+
* // "STRING_VALUE",
|
|
302
|
+
* // ],
|
|
303
|
+
* // },
|
|
304
|
+
* // QueryStringCacheKeys: {
|
|
305
|
+
* // Quantity: Number("int"), // required
|
|
306
|
+
* // Items: [
|
|
307
|
+
* // "STRING_VALUE",
|
|
308
|
+
* // ],
|
|
309
|
+
* // },
|
|
310
|
+
* // },
|
|
311
|
+
* // MinTTL: Number("long"),
|
|
312
|
+
* // DefaultTTL: Number("long"),
|
|
313
|
+
* // MaxTTL: Number("long"),
|
|
314
|
+
* // },
|
|
315
|
+
* // ],
|
|
316
|
+
* // },
|
|
317
|
+
* // CustomErrorResponses: { // CustomErrorResponses
|
|
318
|
+
* // Quantity: Number("int"), // required
|
|
319
|
+
* // Items: [ // CustomErrorResponseList
|
|
320
|
+
* // { // CustomErrorResponse
|
|
321
|
+
* // ErrorCode: Number("int"), // required
|
|
322
|
+
* // ResponsePagePath: "STRING_VALUE",
|
|
323
|
+
* // ResponseCode: "STRING_VALUE",
|
|
324
|
+
* // ErrorCachingMinTTL: Number("long"),
|
|
325
|
+
* // },
|
|
326
|
+
* // ],
|
|
327
|
+
* // },
|
|
328
|
+
* // Comment: "STRING_VALUE", // required
|
|
329
|
+
* // PriceClass: "PriceClass_100" || "PriceClass_200" || "PriceClass_All" || "None", // required
|
|
330
|
+
* // Enabled: true || false, // required
|
|
331
|
+
* // ViewerCertificate: { // ViewerCertificate
|
|
332
|
+
* // CloudFrontDefaultCertificate: true || false,
|
|
333
|
+
* // IAMCertificateId: "STRING_VALUE",
|
|
334
|
+
* // ACMCertificateArn: "STRING_VALUE",
|
|
335
|
+
* // SSLSupportMethod: "sni-only" || "vip" || "static-ip",
|
|
336
|
+
* // MinimumProtocolVersion: "SSLv3" || "TLSv1" || "TLSv1_2016" || "TLSv1.1_2016" || "TLSv1.2_2018" || "TLSv1.2_2019" || "TLSv1.2_2021" || "TLSv1.3_2025" || "TLSv1.2_2025",
|
|
337
|
+
* // Certificate: "STRING_VALUE",
|
|
338
|
+
* // CertificateSource: "cloudfront" || "iam" || "acm",
|
|
339
|
+
* // },
|
|
340
|
+
* // Restrictions: { // Restrictions
|
|
341
|
+
* // GeoRestriction: { // GeoRestriction
|
|
342
|
+
* // RestrictionType: "blacklist" || "whitelist" || "none", // required
|
|
343
|
+
* // Quantity: Number("int"), // required
|
|
344
|
+
* // Items: [ // LocationList
|
|
345
|
+
* // "STRING_VALUE",
|
|
346
|
+
* // ],
|
|
347
|
+
* // },
|
|
348
|
+
* // },
|
|
349
|
+
* // WebACLId: "STRING_VALUE", // required
|
|
350
|
+
* // HttpVersion: "http1.1" || "http2" || "http3" || "http2and3", // required
|
|
351
|
+
* // IsIPV6Enabled: true || false, // required
|
|
352
|
+
* // AliasICPRecordals: [ // AliasICPRecordals
|
|
353
|
+
* // { // AliasICPRecordal
|
|
354
|
+
* // CNAME: "STRING_VALUE",
|
|
355
|
+
* // ICPRecordalStatus: "APPROVED" || "SUSPENDED" || "PENDING",
|
|
356
|
+
* // },
|
|
357
|
+
* // ],
|
|
358
|
+
* // Staging: true || false, // required
|
|
359
|
+
* // ConnectionMode: "direct" || "tenant-only",
|
|
360
|
+
* // AnycastIpListId: "STRING_VALUE",
|
|
361
|
+
* // ViewerMtlsConfig: { // ViewerMtlsConfig
|
|
362
|
+
* // Mode: "required" || "optional",
|
|
363
|
+
* // TrustStoreConfig: { // TrustStoreConfig
|
|
364
|
+
* // TrustStoreId: "STRING_VALUE", // required
|
|
365
|
+
* // AdvertiseTrustStoreCaNames: true || false,
|
|
366
|
+
* // IgnoreCertificateExpiry: true || false,
|
|
367
|
+
* // },
|
|
368
|
+
* // },
|
|
369
|
+
* // ConnectionFunctionAssociation: { // ConnectionFunctionAssociation
|
|
370
|
+
* // Id: "STRING_VALUE", // required
|
|
371
|
+
* // },
|
|
372
|
+
* // },
|
|
373
|
+
* // ],
|
|
374
|
+
* // },
|
|
375
|
+
* // };
|
|
376
|
+
*
|
|
377
|
+
* ```
|
|
378
|
+
*
|
|
379
|
+
* @param ListDistributionsByConnectionFunctionCommandInput - {@link ListDistributionsByConnectionFunctionCommandInput}
|
|
380
|
+
* @returns {@link ListDistributionsByConnectionFunctionCommandOutput}
|
|
381
|
+
* @see {@link ListDistributionsByConnectionFunctionCommandInput} for command's `input` shape.
|
|
382
|
+
* @see {@link ListDistributionsByConnectionFunctionCommandOutput} for command's `response` shape.
|
|
383
|
+
* @see {@link CloudFrontClientResolvedConfig | config} for CloudFrontClient's `config` shape.
|
|
384
|
+
*
|
|
385
|
+
* @throws {@link AccessDenied} (client fault)
|
|
386
|
+
* <p>Access denied.</p>
|
|
387
|
+
*
|
|
388
|
+
* @throws {@link EntityNotFound} (client fault)
|
|
389
|
+
* <p>The entity was not found.</p>
|
|
390
|
+
*
|
|
391
|
+
* @throws {@link InvalidArgument} (client fault)
|
|
392
|
+
* <p>An argument is invalid.</p>
|
|
393
|
+
*
|
|
394
|
+
* @throws {@link CloudFrontServiceException}
|
|
395
|
+
* <p>Base exception class for all service exceptions from CloudFront service.</p>
|
|
396
|
+
*
|
|
397
|
+
*
|
|
398
|
+
* @public
|
|
399
|
+
*/
|
|
400
|
+
export declare class ListDistributionsByConnectionFunctionCommand extends ListDistributionsByConnectionFunctionCommand_base {
|
|
401
|
+
/** @internal type navigation helper, not in runtime. */
|
|
402
|
+
protected static __types: {
|
|
403
|
+
api: {
|
|
404
|
+
input: ListDistributionsByConnectionFunctionRequest;
|
|
405
|
+
output: ListDistributionsByConnectionFunctionResult;
|
|
406
|
+
};
|
|
407
|
+
sdk: {
|
|
408
|
+
input: ListDistributionsByConnectionFunctionCommandInput;
|
|
409
|
+
output: ListDistributionsByConnectionFunctionCommandOutput;
|
|
410
|
+
};
|
|
411
|
+
};
|
|
412
|
+
}
|
|
@@ -358,6 +358,17 @@ declare const ListDistributionsByConnectionModeCommand_base: {
|
|
|
358
358
|
* // Staging: true || false, // required
|
|
359
359
|
* // ConnectionMode: "direct" || "tenant-only",
|
|
360
360
|
* // AnycastIpListId: "STRING_VALUE",
|
|
361
|
+
* // ViewerMtlsConfig: { // ViewerMtlsConfig
|
|
362
|
+
* // Mode: "required" || "optional",
|
|
363
|
+
* // TrustStoreConfig: { // TrustStoreConfig
|
|
364
|
+
* // TrustStoreId: "STRING_VALUE", // required
|
|
365
|
+
* // AdvertiseTrustStoreCaNames: true || false,
|
|
366
|
+
* // IgnoreCertificateExpiry: true || false,
|
|
367
|
+
* // },
|
|
368
|
+
* // },
|
|
369
|
+
* // ConnectionFunctionAssociation: { // ConnectionFunctionAssociation
|
|
370
|
+
* // Id: "STRING_VALUE", // required
|
|
371
|
+
* // },
|
|
361
372
|
* // },
|
|
362
373
|
* // ],
|
|
363
374
|
* // },
|
|
@@ -359,6 +359,17 @@ declare const ListDistributionsByRealtimeLogConfigCommand_base: {
|
|
|
359
359
|
* // Staging: true || false, // required
|
|
360
360
|
* // ConnectionMode: "direct" || "tenant-only",
|
|
361
361
|
* // AnycastIpListId: "STRING_VALUE",
|
|
362
|
+
* // ViewerMtlsConfig: { // ViewerMtlsConfig
|
|
363
|
+
* // Mode: "required" || "optional",
|
|
364
|
+
* // TrustStoreConfig: { // TrustStoreConfig
|
|
365
|
+
* // TrustStoreId: "STRING_VALUE", // required
|
|
366
|
+
* // AdvertiseTrustStoreCaNames: true || false,
|
|
367
|
+
* // IgnoreCertificateExpiry: true || false,
|
|
368
|
+
* // },
|
|
369
|
+
* // },
|
|
370
|
+
* // ConnectionFunctionAssociation: { // ConnectionFunctionAssociation
|
|
371
|
+
* // Id: "STRING_VALUE", // required
|
|
372
|
+
* // },
|
|
362
373
|
* // },
|
|
363
374
|
* // ],
|
|
364
375
|
* // },
|