@propulsionworks/cloudformation 0.1.17 → 0.1.18
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/out/exports/resources.generated/aws-aiops-investigationgroup.d.ts +25 -28
- package/out/exports/resources.generated/aws-amazonmq-broker.d.ts +4 -4
- package/out/exports/resources.generated/aws-appconfig-environment.d.ts +0 -1
- package/out/exports/resources.generated/aws-bedrock-flow.d.ts +16 -16
- package/out/exports/resources.generated/aws-billing-billingview.d.ts +94 -0
- package/out/exports/resources.generated/aws-certificatemanager-certificate.d.ts +1 -1
- package/out/exports/resources.generated/aws-cleanrooms-collaboration.d.ts +2 -0
- package/out/exports/resources.generated/aws-cloudformation-stackset.d.ts +19 -8
- package/out/exports/resources.generated/aws-connect-instance.d.ts +20 -0
- package/out/exports/resources.generated/aws-datasync-locationnfs.d.ts +1 -1
- package/out/exports/resources.generated/aws-datasync-locationobjectstorage.d.ts +1 -1
- package/out/exports/resources.generated/aws-datasync-locationsmb.d.ts +2 -5
- package/out/exports/resources.generated/aws-docdb-dbcluster.d.ts +8 -0
- package/out/exports/resources.generated/aws-ec2-instanceconnectendpoint.d.ts +2 -0
- package/out/exports/resources.generated/aws-ecs-service.d.ts +137 -7
- package/out/exports/resources.generated/aws-events-eventbus.d.ts +14 -0
- package/out/exports/resources.generated/aws-guardduty-ipset.d.ts +4 -0
- package/out/exports/resources.generated/aws-guardduty-threatintelset.d.ts +4 -0
- package/out/exports/resources.generated/aws-iotsitewise-gateway.d.ts +9 -3
- package/out/exports/resources.generated/aws-kinesisfirehose-deliverystream.d.ts +50 -0
- package/out/exports/resources.generated/aws-logs-deliverydestination.d.ts +3 -3
- package/out/exports/resources.generated/aws-logs-transformer.d.ts +1 -1
- package/out/exports/resources.generated/aws-mediapackagev2-channel.d.ts +1 -1
- package/out/exports/resources.generated/aws-mediapackagev2-originendpoint.d.ts +221 -18
- package/out/exports/resources.generated/aws-opsworkscm-server.d.ts +1 -1
- package/out/exports/resources.generated/aws-rds-dbcluster.d.ts +7 -0
- package/out/exports/resources.generated/aws-rds-dbinstance.d.ts +11 -0
- package/out/exports/resources.generated/aws-s3-bucket.d.ts +103 -3
- package/out/exports/resources.generated/aws-s3express-directorybucket.d.ts +5 -1
- package/out/exports/resources.generated/aws-s3tables-tablepolicy.d.ts +41 -0
- package/out/exports/resources.generated/aws-sagemaker-domain.d.ts +8 -2
- package/out/exports/resources.generated/aws-sagemaker-modelcard.d.ts +1 -1
- package/out/exports/resources.generated/aws-sagemaker-project.d.ts +111 -0
- package/out/exports/resources.generated/aws-ssm-association.d.ts +4 -2
- package/out/exports/resources.generated/aws-ssm-maintenancewindowtask.d.ts +6 -6
- package/out/exports/resources.generated/aws-ssm-parameter.d.ts +5 -7
- package/out/exports/resources.generated/aws-ssm-patchbaseline.d.ts +12 -2
- package/out/exports/resources.generated/aws-transfer-connector.d.ts +7 -0
- package/out/exports/resources.generated/aws-transfer-server.d.ts +16 -2
- package/out/exports/resources.generated/aws-wisdom-quickresponse.d.ts +137 -0
- package/package.json +1 -1
|
@@ -99,14 +99,17 @@ export type MediaPackageV2OriginEndpointAttribs = {
|
|
|
99
99
|
*/
|
|
100
100
|
CreatedAt: string;
|
|
101
101
|
/**
|
|
102
|
+
* The egress domain URL for stream delivery from MediaPackage.
|
|
102
103
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediapackagev2-originendpoint.html#cfn-mediapackagev2-originendpoint-dashmanifesturls}
|
|
103
104
|
*/
|
|
104
105
|
DashManifestUrls: string[];
|
|
105
106
|
/**
|
|
107
|
+
* The egress domain URL for stream delivery from MediaPackage.
|
|
106
108
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediapackagev2-originendpoint.html#cfn-mediapackagev2-originendpoint-hlsmanifesturls}
|
|
107
109
|
*/
|
|
108
110
|
HlsManifestUrls: string[];
|
|
109
111
|
/**
|
|
112
|
+
* The egress domain URL for stream delivery from MediaPackage.
|
|
110
113
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediapackagev2-originendpoint.html#cfn-mediapackagev2-originendpoint-lowlatencyhlsmanifesturls}
|
|
111
114
|
*/
|
|
112
115
|
LowLatencyHlsManifestUrls: string[];
|
|
@@ -133,26 +136,141 @@ export type CmafEncryptionMethod = "CENC" | "CBCS";
|
|
|
133
136
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-containertype.html}
|
|
134
137
|
*/
|
|
135
138
|
export type ContainerType = "TS" | "CMAF";
|
|
139
|
+
/**
|
|
140
|
+
* <p>The base URLs to use for retrieving segments. You can specify multiple locations and indicate the priority and weight for when each should be used, for use in mutli-CDN workflows.</p>
|
|
141
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashbaseurl.html}
|
|
142
|
+
*/
|
|
143
|
+
export type DashBaseUrl = {
|
|
144
|
+
/**
|
|
145
|
+
* <p>For use with DVB-DASH profiles only. The priority of this location for servings segments. The lower the number, the higher the priority.</p>
|
|
146
|
+
* @min 1
|
|
147
|
+
* @max 15000
|
|
148
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashbaseurl.html#cfn-mediapackagev2-originendpoint-dashbaseurl-dvbpriority}
|
|
149
|
+
*/
|
|
150
|
+
DvbPriority?: number | undefined;
|
|
151
|
+
/**
|
|
152
|
+
* <p>For use with DVB-DASH profiles only. The weighting for source locations that have the same priority. </p>
|
|
153
|
+
* @min 1
|
|
154
|
+
* @max 15000
|
|
155
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashbaseurl.html#cfn-mediapackagev2-originendpoint-dashbaseurl-dvbweight}
|
|
156
|
+
*/
|
|
157
|
+
DvbWeight?: number | undefined;
|
|
158
|
+
/**
|
|
159
|
+
* <p>The name of the source location.</p>
|
|
160
|
+
* @minLength 1
|
|
161
|
+
* @maxLength 2048
|
|
162
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashbaseurl.html#cfn-mediapackagev2-originendpoint-dashbaseurl-servicelocation}
|
|
163
|
+
*/
|
|
164
|
+
ServiceLocation?: string | undefined;
|
|
165
|
+
/**
|
|
166
|
+
* <p>A source location for segments.</p>
|
|
167
|
+
* @minLength 1
|
|
168
|
+
* @maxLength 2048
|
|
169
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashbaseurl.html#cfn-mediapackagev2-originendpoint-dashbaseurl-url}
|
|
170
|
+
*/
|
|
171
|
+
Url: string;
|
|
172
|
+
};
|
|
173
|
+
/**
|
|
174
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashcompactness.html}
|
|
175
|
+
*/
|
|
176
|
+
export type DashCompactness = "STANDARD" | "NONE";
|
|
136
177
|
/**
|
|
137
178
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashdrmsignaling.html}
|
|
138
179
|
*/
|
|
139
180
|
export type DashDrmSignaling = "INDIVIDUAL" | "REFERENCED";
|
|
181
|
+
/**
|
|
182
|
+
* <p>For use with DVB-DASH profiles only. The settings for font downloads that you want Elemental MediaPackage to pass through to the manifest.</p>
|
|
183
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashdvbfontdownload.html}
|
|
184
|
+
*/
|
|
185
|
+
export type DashDvbFontDownload = {
|
|
186
|
+
/**
|
|
187
|
+
* <p>The <code>fontFamily</code> name for subtitles, as described in <a href="https://tech.ebu.ch/publications/tech3380">EBU-TT-D Subtitling Distribution Format</a>. </p>
|
|
188
|
+
* @minLength 1
|
|
189
|
+
* @maxLength 256
|
|
190
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashdvbfontdownload.html#cfn-mediapackagev2-originendpoint-dashdvbfontdownload-fontfamily}
|
|
191
|
+
*/
|
|
192
|
+
FontFamily?: string | undefined;
|
|
193
|
+
/**
|
|
194
|
+
* <p>The <code>mimeType</code> of the resource that's at the font download URL.</p> <p>For information about font MIME types, see the <a href="https://dvb.org/wp-content/uploads/2021/06/A168r4_MPEG-DASH-Profile-for-Transport-of-ISO-BMFF-Based-DVB-Services_Draft-ts_103-285-v140_November_2021.pdf">MPEG-DASH Profile for Transport of ISO BMFF Based DVB Services over IP Based Networks</a> document. </p>
|
|
195
|
+
* @minLength 1
|
|
196
|
+
* @maxLength 256
|
|
197
|
+
* @pattern ^[a-zA-Z0-9][a-zA-Z0-9_/-]*[a-zA-Z0-9]$
|
|
198
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashdvbfontdownload.html#cfn-mediapackagev2-originendpoint-dashdvbfontdownload-mimetype}
|
|
199
|
+
*/
|
|
200
|
+
MimeType?: string | undefined;
|
|
201
|
+
/**
|
|
202
|
+
* <p>The URL for downloading fonts for subtitles.</p>
|
|
203
|
+
* @minLength 1
|
|
204
|
+
* @maxLength 2048
|
|
205
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashdvbfontdownload.html#cfn-mediapackagev2-originendpoint-dashdvbfontdownload-url}
|
|
206
|
+
*/
|
|
207
|
+
Url?: string | undefined;
|
|
208
|
+
};
|
|
209
|
+
/**
|
|
210
|
+
* <p>For use with DVB-DASH profiles only. The settings for error reporting from the playback device that you want Elemental MediaPackage to pass through to the manifest.</p>
|
|
211
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashdvbmetricsreporting.html}
|
|
212
|
+
*/
|
|
213
|
+
export type DashDvbMetricsReporting = {
|
|
214
|
+
/**
|
|
215
|
+
* <p>The number of playback devices per 1000 that will send error reports to the reporting URL. This represents the probability that a playback device will be a reporting player for this session.</p>
|
|
216
|
+
* @min 1
|
|
217
|
+
* @max 1000
|
|
218
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashdvbmetricsreporting.html#cfn-mediapackagev2-originendpoint-dashdvbmetricsreporting-probability}
|
|
219
|
+
*/
|
|
220
|
+
Probability?: number | undefined;
|
|
221
|
+
/**
|
|
222
|
+
* <p>The URL where playback devices send error reports.</p>
|
|
223
|
+
* @minLength 1
|
|
224
|
+
* @maxLength 2048
|
|
225
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashdvbmetricsreporting.html#cfn-mediapackagev2-originendpoint-dashdvbmetricsreporting-reportingurl}
|
|
226
|
+
*/
|
|
227
|
+
ReportingUrl: string;
|
|
228
|
+
};
|
|
229
|
+
/**
|
|
230
|
+
* <p>For endpoints that use the DVB-DASH profile only. The font download and error reporting information that you want MediaPackage to pass through to the manifest.</p>
|
|
231
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashdvbsettings.html}
|
|
232
|
+
*/
|
|
233
|
+
export type DashDvbSettings = {
|
|
234
|
+
/**
|
|
235
|
+
* <p>Playback device error reporting settings.</p>
|
|
236
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashdvbsettings.html#cfn-mediapackagev2-originendpoint-dashdvbsettings-errormetrics}
|
|
237
|
+
*/
|
|
238
|
+
ErrorMetrics?: DashDvbMetricsReporting[] | undefined;
|
|
239
|
+
/**
|
|
240
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashdvbsettings.html#cfn-mediapackagev2-originendpoint-dashdvbsettings-fontdownload}
|
|
241
|
+
*/
|
|
242
|
+
FontDownload?: DashDvbFontDownload | undefined;
|
|
243
|
+
};
|
|
140
244
|
/**
|
|
141
245
|
* The DASH manifest configuration associated with the origin endpoint.
|
|
142
246
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashmanifestconfiguration.html}
|
|
143
247
|
*/
|
|
144
248
|
export type DashManifestConfiguration = {
|
|
145
249
|
/**
|
|
250
|
+
* <p>The base URL to use for retrieving segments.</p>
|
|
251
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashmanifestconfiguration.html#cfn-mediapackagev2-originendpoint-dashmanifestconfiguration-baseurls}
|
|
252
|
+
*/
|
|
253
|
+
BaseUrls?: DashBaseUrl[] | undefined;
|
|
254
|
+
/**
|
|
255
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashmanifestconfiguration.html#cfn-mediapackagev2-originendpoint-dashmanifestconfiguration-compactness}
|
|
256
|
+
*/
|
|
257
|
+
Compactness?: DashCompactness | undefined;
|
|
258
|
+
/**
|
|
259
|
+
* Determines how the DASH manifest signals the DRM content.
|
|
146
260
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashmanifestconfiguration.html#cfn-mediapackagev2-originendpoint-dashmanifestconfiguration-drmsignaling}
|
|
147
261
|
*/
|
|
148
262
|
DrmSignaling?: DashDrmSignaling | undefined;
|
|
149
263
|
/**
|
|
150
|
-
*
|
|
264
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashmanifestconfiguration.html#cfn-mediapackagev2-originendpoint-dashmanifestconfiguration-dvbsettings}
|
|
265
|
+
*/
|
|
266
|
+
DvbSettings?: DashDvbSettings | undefined;
|
|
267
|
+
/**
|
|
268
|
+
* Filter configuration includes settings for manifest filtering, start and end times, and time delay that apply to all of your egress requests for this manifest.
|
|
151
269
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashmanifestconfiguration.html#cfn-mediapackagev2-originendpoint-dashmanifestconfiguration-filterconfiguration}
|
|
152
270
|
*/
|
|
153
271
|
FilterConfiguration?: FilterConfiguration | undefined;
|
|
154
272
|
/**
|
|
155
|
-
*
|
|
273
|
+
* A short string that's appended to the endpoint URL. The child manifest name creates a unique path to this endpoint.
|
|
156
274
|
* @minLength 1
|
|
157
275
|
* @maxLength 256
|
|
158
276
|
* @pattern ^[a-zA-Z0-9_-]+$
|
|
@@ -160,42 +278,59 @@ export type DashManifestConfiguration = {
|
|
|
160
278
|
*/
|
|
161
279
|
ManifestName: string;
|
|
162
280
|
/**
|
|
163
|
-
*
|
|
281
|
+
* The total duration (in seconds) of the manifest's content.
|
|
164
282
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashmanifestconfiguration.html#cfn-mediapackagev2-originendpoint-dashmanifestconfiguration-manifestwindowseconds}
|
|
165
283
|
*/
|
|
166
284
|
ManifestWindowSeconds?: number | undefined;
|
|
167
285
|
/**
|
|
168
|
-
*
|
|
286
|
+
* Minimum amount of content (in seconds) that a player must keep available in the buffer.
|
|
169
287
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashmanifestconfiguration.html#cfn-mediapackagev2-originendpoint-dashmanifestconfiguration-minbuffertimeseconds}
|
|
170
288
|
*/
|
|
171
289
|
MinBufferTimeSeconds?: number | undefined;
|
|
172
290
|
/**
|
|
173
|
-
*
|
|
291
|
+
* Minimum amount of time (in seconds) that the player should wait before requesting updates to the manifest.
|
|
174
292
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashmanifestconfiguration.html#cfn-mediapackagev2-originendpoint-dashmanifestconfiguration-minupdateperiodseconds}
|
|
175
293
|
*/
|
|
176
294
|
MinUpdatePeriodSeconds?: number | undefined;
|
|
177
295
|
/**
|
|
178
|
-
*
|
|
179
|
-
* For more information about periods in the DASH manifest, see <a href="https://docs.aws.amazon.com/mediapackage/latest/userguide/multi-period.html">Multi-period DASH in AWS Elemental MediaPackage</a>.</p>
|
|
296
|
+
* A list of triggers that controls when AWS Elemental MediaPackage separates the MPEG-DASH manifest into multiple periods. Type `ADS` to indicate that AWS Elemental MediaPackage must create periods in the output manifest that correspond to SCTE-35 ad markers in the input source. Leave this value empty to indicate that the manifest is contained all in one period. For more information about periods in the DASH manifest, see [Multi-period DASH in AWS Elemental MediaPackage](https://docs.aws.amazon.com/mediapackage/latest/userguide/multi-period.html) .
|
|
180
297
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashmanifestconfiguration.html#cfn-mediapackagev2-originendpoint-dashmanifestconfiguration-periodtriggers}
|
|
181
298
|
*/
|
|
182
299
|
PeriodTriggers?: DashPeriodTrigger[] | undefined;
|
|
183
300
|
/**
|
|
184
|
-
* <p>The
|
|
301
|
+
* <p>The profile that the output is compliant with.</p>
|
|
302
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashmanifestconfiguration.html#cfn-mediapackagev2-originendpoint-dashmanifestconfiguration-profiles}
|
|
303
|
+
*/
|
|
304
|
+
Profiles?: DashProfile[] | undefined;
|
|
305
|
+
/**
|
|
306
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashmanifestconfiguration.html#cfn-mediapackagev2-originendpoint-dashmanifestconfiguration-programinformation}
|
|
307
|
+
*/
|
|
308
|
+
ProgramInformation?: DashProgramInformation | undefined;
|
|
309
|
+
/**
|
|
310
|
+
* The SCTE configuration.
|
|
185
311
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashmanifestconfiguration.html#cfn-mediapackagev2-originendpoint-dashmanifestconfiguration-sctedash}
|
|
186
312
|
*/
|
|
187
313
|
ScteDash?: ScteDash | undefined;
|
|
188
314
|
/**
|
|
315
|
+
* Determines the type of variable used in the `media` URL of the `SegmentTemplate` tag in the manifest. Also specifies if segment timeline information is included in `SegmentTimeline` or `SegmentTemplate` .
|
|
316
|
+
*
|
|
317
|
+
* Value description:
|
|
318
|
+
*
|
|
319
|
+
* - `NUMBER_WITH_TIMELINE` - The `$Number$` variable is used in the `media` URL. The value of this variable is the sequential number of the segment. A full `SegmentTimeline` object is presented in each `SegmentTemplate` .
|
|
189
320
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashmanifestconfiguration.html#cfn-mediapackagev2-originendpoint-dashmanifestconfiguration-segmenttemplateformat}
|
|
190
321
|
*/
|
|
191
322
|
SegmentTemplateFormat?: DashSegmentTemplateFormat | undefined;
|
|
192
323
|
/**
|
|
193
|
-
*
|
|
324
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashmanifestconfiguration.html#cfn-mediapackagev2-originendpoint-dashmanifestconfiguration-subtitleconfiguration}
|
|
325
|
+
*/
|
|
326
|
+
SubtitleConfiguration?: DashSubtitleConfiguration | undefined;
|
|
327
|
+
/**
|
|
328
|
+
* The amount of time (in seconds) that the player should be from the end of the manifest.
|
|
194
329
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashmanifestconfiguration.html#cfn-mediapackagev2-originendpoint-dashmanifestconfiguration-suggestedpresentationdelayseconds}
|
|
195
330
|
*/
|
|
196
331
|
SuggestedPresentationDelaySeconds?: number | undefined;
|
|
197
332
|
/**
|
|
198
|
-
*
|
|
333
|
+
* Determines the type of UTC timing included in the DASH Media Presentation Description (MPD).
|
|
199
334
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashmanifestconfiguration.html#cfn-mediapackagev2-originendpoint-dashmanifestconfiguration-utctiming}
|
|
200
335
|
*/
|
|
201
336
|
UtcTiming?: DashUtcTiming | undefined;
|
|
@@ -204,10 +339,80 @@ export type DashManifestConfiguration = {
|
|
|
204
339
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashperiodtrigger.html}
|
|
205
340
|
*/
|
|
206
341
|
export type DashPeriodTrigger = "AVAILS" | "DRM_KEY_ROTATION" | "SOURCE_CHANGES" | "SOURCE_DISRUPTIONS" | "NONE";
|
|
342
|
+
/**
|
|
343
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashprofile.html}
|
|
344
|
+
*/
|
|
345
|
+
export type DashProfile = "DVB_DASH";
|
|
346
|
+
/**
|
|
347
|
+
* <p>Details about the content that you want MediaPackage to pass through in the manifest to the playback device.</p>
|
|
348
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashprograminformation.html}
|
|
349
|
+
*/
|
|
350
|
+
export type DashProgramInformation = {
|
|
351
|
+
/**
|
|
352
|
+
* <p>A copyright statement about the content.</p>
|
|
353
|
+
* @minLength 1
|
|
354
|
+
* @maxLength 2048
|
|
355
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashprograminformation.html#cfn-mediapackagev2-originendpoint-dashprograminformation-copyright}
|
|
356
|
+
*/
|
|
357
|
+
Copyright?: string | undefined;
|
|
358
|
+
/**
|
|
359
|
+
* <p>The language code for this manifest.</p>
|
|
360
|
+
* @minLength 2
|
|
361
|
+
* @maxLength 5
|
|
362
|
+
* @pattern ^[a-zA-Z0-9][a-zA-Z0-9_-]*[a-zA-Z0-9]$
|
|
363
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashprograminformation.html#cfn-mediapackagev2-originendpoint-dashprograminformation-languagecode}
|
|
364
|
+
*/
|
|
365
|
+
LanguageCode?: string | undefined;
|
|
366
|
+
/**
|
|
367
|
+
* <p>An absolute URL that contains more information about this content.</p>
|
|
368
|
+
* @minLength 1
|
|
369
|
+
* @maxLength 2048
|
|
370
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashprograminformation.html#cfn-mediapackagev2-originendpoint-dashprograminformation-moreinformationurl}
|
|
371
|
+
*/
|
|
372
|
+
MoreInformationUrl?: string | undefined;
|
|
373
|
+
/**
|
|
374
|
+
* <p>Information about the content provider.</p>
|
|
375
|
+
* @minLength 1
|
|
376
|
+
* @maxLength 2048
|
|
377
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashprograminformation.html#cfn-mediapackagev2-originendpoint-dashprograminformation-source}
|
|
378
|
+
*/
|
|
379
|
+
Source?: string | undefined;
|
|
380
|
+
/**
|
|
381
|
+
* <p>The title for the manifest.</p>
|
|
382
|
+
* @minLength 1
|
|
383
|
+
* @maxLength 2048
|
|
384
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashprograminformation.html#cfn-mediapackagev2-originendpoint-dashprograminformation-title}
|
|
385
|
+
*/
|
|
386
|
+
Title?: string | undefined;
|
|
387
|
+
};
|
|
207
388
|
/**
|
|
208
389
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashsegmenttemplateformat.html}
|
|
209
390
|
*/
|
|
210
391
|
export type DashSegmentTemplateFormat = "NUMBER_WITH_TIMELINE";
|
|
392
|
+
/**
|
|
393
|
+
* <p>The configuration for DASH subtitles.</p>
|
|
394
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashsubtitleconfiguration.html}
|
|
395
|
+
*/
|
|
396
|
+
export type DashSubtitleConfiguration = {
|
|
397
|
+
/**
|
|
398
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashsubtitleconfiguration.html#cfn-mediapackagev2-originendpoint-dashsubtitleconfiguration-ttmlconfiguration}
|
|
399
|
+
*/
|
|
400
|
+
TtmlConfiguration?: DashTtmlConfiguration | undefined;
|
|
401
|
+
};
|
|
402
|
+
/**
|
|
403
|
+
* <p>The settings for TTML subtitles.</p>
|
|
404
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashttmlconfiguration.html}
|
|
405
|
+
*/
|
|
406
|
+
export type DashTtmlConfiguration = {
|
|
407
|
+
/**
|
|
408
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashttmlconfiguration.html#cfn-mediapackagev2-originendpoint-dashttmlconfiguration-ttmlprofile}
|
|
409
|
+
*/
|
|
410
|
+
TtmlProfile: DashTtmlProfile;
|
|
411
|
+
};
|
|
412
|
+
/**
|
|
413
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashttmlprofile.html}
|
|
414
|
+
*/
|
|
415
|
+
export type DashTtmlProfile = "IMSC_1" | "EBU_TT_D_101";
|
|
211
416
|
/**
|
|
212
417
|
* Determines the type of UTC timing included in the DASH Media Presentation Description (MPD).
|
|
213
418
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashutctiming.html}
|
|
@@ -392,7 +597,7 @@ export type HlsManifestConfiguration = {
|
|
|
392
597
|
*/
|
|
393
598
|
ChildManifestName?: string | undefined;
|
|
394
599
|
/**
|
|
395
|
-
*
|
|
600
|
+
* Filter configuration includes settings for manifest filtering, start and end times, and time delay that apply to all of your egress requests for this manifest.
|
|
396
601
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-hlsmanifestconfiguration.html#cfn-mediapackagev2-originendpoint-hlsmanifestconfiguration-filterconfiguration}
|
|
397
602
|
*/
|
|
398
603
|
FilterConfiguration?: FilterConfiguration | undefined;
|
|
@@ -420,13 +625,12 @@ export type HlsManifestConfiguration = {
|
|
|
420
625
|
*/
|
|
421
626
|
ScteHls?: ScteHls | undefined;
|
|
422
627
|
/**
|
|
423
|
-
*
|
|
628
|
+
* To insert an EXT-X-START tag in your HLS playlist, specify a StartTag configuration object with a valid TimeOffset. When you do, you can also optionally specify whether to include a PRECISE value in the EXT-X-START tag.
|
|
424
629
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-hlsmanifestconfiguration.html#cfn-mediapackagev2-originendpoint-hlsmanifestconfiguration-starttag}
|
|
425
630
|
*/
|
|
426
631
|
StartTag?: StartTag | undefined;
|
|
427
632
|
/**
|
|
428
|
-
*
|
|
429
|
-
* For more information, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_sigv.html">Amazon Web Services Signature Version 4 for API requests</a> in <i>Identity and Access Management User Guide</i>.</p>
|
|
633
|
+
* When enabled, MediaPackage URL-encodes the query string for API requests for HLS child manifests to comply with AWS Signature Version 4 (SigV4) signature signing protocol. For more information, see [AWS Signature Version 4 for API requests](https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_sigv.html) in *AWS Identity and Access Management User Guide* .
|
|
430
634
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-hlsmanifestconfiguration.html#cfn-mediapackagev2-originendpoint-hlsmanifestconfiguration-urlencodechildmanifest}
|
|
431
635
|
*/
|
|
432
636
|
UrlEncodeChildManifest?: boolean | undefined;
|
|
@@ -445,7 +649,7 @@ export type LowLatencyHlsManifestConfiguration = {
|
|
|
445
649
|
*/
|
|
446
650
|
ChildManifestName?: string | undefined;
|
|
447
651
|
/**
|
|
448
|
-
*
|
|
652
|
+
* Filter configuration includes settings for manifest filtering, start and end times, and time delay that apply to all of your egress requests for this manifest.
|
|
449
653
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-lowlatencyhlsmanifestconfiguration.html#cfn-mediapackagev2-originendpoint-lowlatencyhlsmanifestconfiguration-filterconfiguration}
|
|
450
654
|
*/
|
|
451
655
|
FilterConfiguration?: FilterConfiguration | undefined;
|
|
@@ -475,13 +679,12 @@ export type LowLatencyHlsManifestConfiguration = {
|
|
|
475
679
|
*/
|
|
476
680
|
ScteHls?: ScteHls | undefined;
|
|
477
681
|
/**
|
|
478
|
-
*
|
|
682
|
+
* To insert an EXT-X-START tag in your HLS playlist, specify a StartTag configuration object with a valid TimeOffset. When you do, you can also optionally specify whether to include a PRECISE value in the EXT-X-START tag.
|
|
479
683
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-lowlatencyhlsmanifestconfiguration.html#cfn-mediapackagev2-originendpoint-lowlatencyhlsmanifestconfiguration-starttag}
|
|
480
684
|
*/
|
|
481
685
|
StartTag?: StartTag | undefined;
|
|
482
686
|
/**
|
|
483
|
-
*
|
|
484
|
-
* For more information, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_sigv.html">Amazon Web Services Signature Version 4 for API requests</a> in <i>Identity and Access Management User Guide</i>.</p>
|
|
687
|
+
* When enabled, MediaPackage URL-encodes the query string for API requests for LL-HLS child manifests to comply with AWS Signature Version 4 (SigV4) signature signing protocol. For more information, see [AWS Signature Version 4 for API requests](https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_sigv.html) in *AWS Identity and Access Management User Guide* .
|
|
485
688
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-lowlatencyhlsmanifestconfiguration.html#cfn-mediapackagev2-originendpoint-lowlatencyhlsmanifestconfiguration-urlencodechildmanifest}
|
|
486
689
|
*/
|
|
487
690
|
UrlEncodeChildManifest?: boolean | undefined;
|
|
@@ -126,7 +126,7 @@ export type OpsWorksCMServerProps = {
|
|
|
126
126
|
*/
|
|
127
127
|
ServerName?: string | undefined;
|
|
128
128
|
/**
|
|
129
|
-
* The service role that the AWS OpsWorks CM service backend uses to work with your account.
|
|
129
|
+
* The service role that the AWS OpsWorks CM service backend uses to work with your account.
|
|
130
130
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html#cfn-opsworkscm-server-servicerolearn}
|
|
131
131
|
*/
|
|
132
132
|
ServiceRoleArn: string;
|
|
@@ -126,6 +126,8 @@ export type RDSDBClusterProps = {
|
|
|
126
126
|
BackupRetentionPeriod?: number | undefined;
|
|
127
127
|
/**
|
|
128
128
|
* Specifies the scalability mode of the Aurora DB cluster. When set to `limitless` , the cluster operates as an Aurora Limitless Database, allowing you to create a DB shard group for horizontal scaling (sharding) capabilities. When set to `standard` (the default), the cluster uses normal DB instance creation.
|
|
129
|
+
*
|
|
130
|
+
* *Important:* Automated backup retention isn't supported with Aurora Limitless Database clusters. If you set this property to `limitless` , you cannot set `DeleteAutomatedBackups` to `false` . To create a backup, use manual snapshots instead.
|
|
129
131
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-clusterscalabilitytype}
|
|
130
132
|
*/
|
|
131
133
|
ClusterScalabilityType?: string | undefined;
|
|
@@ -226,6 +228,10 @@ export type RDSDBClusterProps = {
|
|
|
226
228
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-databasename}
|
|
227
229
|
*/
|
|
228
230
|
DatabaseName?: string | undefined;
|
|
231
|
+
/**
|
|
232
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-deleteautomatedbackups}
|
|
233
|
+
*/
|
|
234
|
+
DeleteAutomatedBackups?: boolean | undefined;
|
|
229
235
|
/**
|
|
230
236
|
* A value that indicates whether the DB cluster has deletion protection enabled. The database can't be deleted when deletion protection is enabled. By default, deletion protection is disabled.
|
|
231
237
|
*
|
|
@@ -707,6 +713,7 @@ export type RDSDBClusterProps = {
|
|
|
707
713
|
* Constraints:
|
|
708
714
|
*
|
|
709
715
|
* - Must match the identifier of an existing DBCluster.
|
|
716
|
+
* - Cannot be specified if `SourceDbClusterResourceId` is specified. You must specify either `SourceDBClusterIdentifier` or `SourceDbClusterResourceId` , but not both.
|
|
710
717
|
*
|
|
711
718
|
* Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
|
712
719
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbcluster.html#cfn-rds-dbcluster-sourcedbclusteridentifier}
|
|
@@ -223,6 +223,17 @@ export type RDSDBInstanceProps = {
|
|
|
223
223
|
*/
|
|
224
224
|
BackupRetentionPeriod?: number | undefined;
|
|
225
225
|
/**
|
|
226
|
+
* The location for storing automated backups and manual snapshots.
|
|
227
|
+
*
|
|
228
|
+
* Valid Values:
|
|
229
|
+
*
|
|
230
|
+
* - `local` (Dedicated Local Zone)
|
|
231
|
+
* - `outposts` ( AWS Outposts)
|
|
232
|
+
* - `region` ( AWS Region )
|
|
233
|
+
*
|
|
234
|
+
* Default: `region`
|
|
235
|
+
*
|
|
236
|
+
* For more information, see [Working with Amazon RDS on AWS Outposts](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html) in the *Amazon RDS User Guide* .
|
|
226
237
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbinstance.html#cfn-rds-dbinstance-backuptarget}
|
|
227
238
|
*/
|
|
228
239
|
BackupTarget?: string | undefined;
|
|
@@ -61,7 +61,7 @@ export type S3BucketProps = {
|
|
|
61
61
|
*/
|
|
62
62
|
IntelligentTieringConfigurations?: IntelligentTieringConfiguration[] | undefined;
|
|
63
63
|
/**
|
|
64
|
-
* Specifies the
|
|
64
|
+
* Specifies the S3 Inventory configuration for an Amazon S3 bucket. For more information, see [GET Bucket inventory](https://docs.aws.amazon.com/AmazonS3/latest/API/RESTBucketGETInventoryConfig.html) in the *Amazon S3 API Reference* .
|
|
65
65
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-bucket.html#cfn-s3-bucket-inventoryconfigurations}
|
|
66
66
|
*/
|
|
67
67
|
InventoryConfigurations?: InventoryConfiguration[] | undefined;
|
|
@@ -75,6 +75,10 @@ export type S3BucketProps = {
|
|
|
75
75
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-bucket.html#cfn-s3-bucket-loggingconfiguration}
|
|
76
76
|
*/
|
|
77
77
|
LoggingConfiguration?: LoggingConfiguration | undefined;
|
|
78
|
+
/**
|
|
79
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-bucket.html#cfn-s3-bucket-metadataconfiguration}
|
|
80
|
+
*/
|
|
81
|
+
MetadataConfiguration?: MetadataConfiguration | undefined;
|
|
78
82
|
/**
|
|
79
83
|
* The metadata table configuration of an Amazon S3 general purpose bucket.
|
|
80
84
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-bucket.html#cfn-s3-bucket-metadatatableconfiguration}
|
|
@@ -171,6 +175,26 @@ export type S3BucketAttribs = {
|
|
|
171
175
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-bucket.html#cfn-s3-bucket-dualstackdomainname}
|
|
172
176
|
*/
|
|
173
177
|
DualStackDomainName: string;
|
|
178
|
+
/**
|
|
179
|
+
* The ARN of the inventory table.
|
|
180
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-inventorytableconfiguration.html#cfn-s3-bucket-inventorytableconfiguration-tablearn}
|
|
181
|
+
*/
|
|
182
|
+
"MetadataConfiguration.InventoryTableConfiguration.TableArn": string;
|
|
183
|
+
/**
|
|
184
|
+
* The name of the inventory table.
|
|
185
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-inventorytableconfiguration.html#cfn-s3-bucket-inventorytableconfiguration-tablename}
|
|
186
|
+
*/
|
|
187
|
+
"MetadataConfiguration.InventoryTableConfiguration.TableName": string;
|
|
188
|
+
/**
|
|
189
|
+
* The ARN of the journal table.
|
|
190
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-journaltableconfiguration.html#cfn-s3-bucket-journaltableconfiguration-tablearn}
|
|
191
|
+
*/
|
|
192
|
+
"MetadataConfiguration.JournalTableConfiguration.TableArn": string;
|
|
193
|
+
/**
|
|
194
|
+
* The name of the journal table.
|
|
195
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-journaltableconfiguration.html#cfn-s3-bucket-journaltableconfiguration-tablename}
|
|
196
|
+
*/
|
|
197
|
+
"MetadataConfiguration.JournalTableConfiguration.TableName": string;
|
|
174
198
|
/**
|
|
175
199
|
* The Amazon Resource Name (ARN) for the metadata table in the metadata table configuration. The specified metadata table name must be unique within the `aws_s3_metadata` namespace in the destination table bucket.
|
|
176
200
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-s3tablesdestination.html#cfn-s3-bucket-s3tablesdestination-tablearn}
|
|
@@ -491,7 +515,7 @@ export type IntelligentTieringConfiguration = {
|
|
|
491
515
|
Tierings: Tiering[];
|
|
492
516
|
};
|
|
493
517
|
/**
|
|
494
|
-
* Specifies the
|
|
518
|
+
* Specifies the S3 Inventory configuration for an Amazon S3 bucket. For more information, see [GET Bucket inventory](https://docs.aws.amazon.com/AmazonS3/latest/API/RESTBucketGETInventoryConfig.html) in the *Amazon S3 API Reference* .
|
|
495
519
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-inventoryconfiguration.html}
|
|
496
520
|
*/
|
|
497
521
|
export type InventoryConfiguration = {
|
|
@@ -531,6 +555,35 @@ export type InventoryConfiguration = {
|
|
|
531
555
|
*/
|
|
532
556
|
ScheduleFrequency: "Daily" | "Weekly";
|
|
533
557
|
};
|
|
558
|
+
/**
|
|
559
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-inventorytableconfiguration.html}
|
|
560
|
+
*/
|
|
561
|
+
export type InventoryTableConfiguration = {
|
|
562
|
+
/**
|
|
563
|
+
* Specifies whether inventory table configuration is enabled or disabled.
|
|
564
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-inventorytableconfiguration.html#cfn-s3-bucket-inventorytableconfiguration-configurationstate}
|
|
565
|
+
*/
|
|
566
|
+
ConfigurationState: "ENABLED" | "DISABLED";
|
|
567
|
+
/**
|
|
568
|
+
* The encryption configuration for the inventory table.
|
|
569
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-inventorytableconfiguration.html#cfn-s3-bucket-inventorytableconfiguration-encryptionconfiguration}
|
|
570
|
+
*/
|
|
571
|
+
EncryptionConfiguration?: MetadataTableEncryptionConfiguration | undefined;
|
|
572
|
+
};
|
|
573
|
+
/**
|
|
574
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-journaltableconfiguration.html}
|
|
575
|
+
*/
|
|
576
|
+
export type JournalTableConfiguration = {
|
|
577
|
+
/**
|
|
578
|
+
* The encryption configuration for the journal table.
|
|
579
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-journaltableconfiguration.html#cfn-s3-bucket-journaltableconfiguration-encryptionconfiguration}
|
|
580
|
+
*/
|
|
581
|
+
EncryptionConfiguration?: MetadataTableEncryptionConfiguration | undefined;
|
|
582
|
+
/**
|
|
583
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-journaltableconfiguration.html#cfn-s3-bucket-journaltableconfiguration-recordexpiration}
|
|
584
|
+
*/
|
|
585
|
+
RecordExpiration: RecordExpiration;
|
|
586
|
+
};
|
|
534
587
|
/**
|
|
535
588
|
* Describes the AWS Lambda functions to invoke and the events for which to invoke them.
|
|
536
589
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-lambdaconfiguration.html}
|
|
@@ -598,6 +651,21 @@ export type LoggingConfiguration = {
|
|
|
598
651
|
*/
|
|
599
652
|
TargetObjectKeyFormat?: TargetObjectKeyFormat | undefined;
|
|
600
653
|
};
|
|
654
|
+
/**
|
|
655
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-metadataconfiguration.html}
|
|
656
|
+
*/
|
|
657
|
+
export type MetadataConfiguration = {
|
|
658
|
+
/**
|
|
659
|
+
* The configuration for the inventory table.
|
|
660
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-metadataconfiguration.html#cfn-s3-bucket-metadataconfiguration-inventorytableconfiguration}
|
|
661
|
+
*/
|
|
662
|
+
InventoryTableConfiguration?: InventoryTableConfiguration | undefined;
|
|
663
|
+
/**
|
|
664
|
+
* The configuration for the journal table.
|
|
665
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-metadataconfiguration.html#cfn-s3-bucket-metadataconfiguration-journaltableconfiguration}
|
|
666
|
+
*/
|
|
667
|
+
JournalTableConfiguration: JournalTableConfiguration;
|
|
668
|
+
};
|
|
601
669
|
/**
|
|
602
670
|
* The metadata table configuration of an Amazon S3 general purpose bucket. For more information, see [Accelerating data discovery with S3 Metadata](https://docs.aws.amazon.com/AmazonS3/latest/userguide/metadata-tables-overview.html) and [Setting up permissions for configuring metadata tables](https://docs.aws.amazon.com/AmazonS3/latest/userguide/metadata-tables-permissions.html) .
|
|
603
671
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-metadatatableconfiguration.html}
|
|
@@ -609,6 +677,21 @@ export type MetadataTableConfiguration = {
|
|
|
609
677
|
*/
|
|
610
678
|
S3TablesDestination: S3TablesDestination;
|
|
611
679
|
};
|
|
680
|
+
/**
|
|
681
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-metadatatableencryptionconfiguration.html}
|
|
682
|
+
*/
|
|
683
|
+
export type MetadataTableEncryptionConfiguration = {
|
|
684
|
+
/**
|
|
685
|
+
* The ARN of the KMS key. Required if SseAlgorithm is aws:kms.
|
|
686
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-metadatatableencryptionconfiguration.html#cfn-s3-bucket-metadatatableencryptionconfiguration-kmskeyarn}
|
|
687
|
+
*/
|
|
688
|
+
KmsKeyArn?: string | undefined;
|
|
689
|
+
/**
|
|
690
|
+
* Specifies the server-side encryption algorithm to use for encrypting tables.
|
|
691
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-metadatatableencryptionconfiguration.html#cfn-s3-bucket-metadatatableencryptionconfiguration-ssealgorithm}
|
|
692
|
+
*/
|
|
693
|
+
SseAlgorithm: "aws:kms" | "AES256";
|
|
694
|
+
};
|
|
612
695
|
/**
|
|
613
696
|
* A container specifying replication metrics-related settings enabling replication metrics and events.
|
|
614
697
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-metrics.html}
|
|
@@ -864,6 +947,21 @@ export type QueueConfiguration = {
|
|
|
864
947
|
*/
|
|
865
948
|
Queue: string;
|
|
866
949
|
};
|
|
950
|
+
/**
|
|
951
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-recordexpiration.html}
|
|
952
|
+
*/
|
|
953
|
+
export type RecordExpiration = {
|
|
954
|
+
/**
|
|
955
|
+
* The number of days after which records expire. Required if Expiration is ENABLED.
|
|
956
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-recordexpiration.html#cfn-s3-bucket-recordexpiration-days}
|
|
957
|
+
*/
|
|
958
|
+
Days?: number | undefined;
|
|
959
|
+
/**
|
|
960
|
+
* Specifies whether record expiration is enabled or disabled.
|
|
961
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-recordexpiration.html#cfn-s3-bucket-recordexpiration-expiration}
|
|
962
|
+
*/
|
|
963
|
+
Expiration: "ENABLED" | "DISABLED";
|
|
964
|
+
};
|
|
867
965
|
/**
|
|
868
966
|
* Specifies the redirect behavior of all requests to a website endpoint of an Amazon S3 bucket.
|
|
869
967
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-redirectallrequeststo.html}
|
|
@@ -1272,7 +1370,9 @@ export type S3KeyFilter = {
|
|
|
1272
1370
|
Rules: FilterRule[];
|
|
1273
1371
|
};
|
|
1274
1372
|
/**
|
|
1275
|
-
* The destination information for
|
|
1373
|
+
* The destination information for a V1 S3 Metadata configuration. The destination table bucket must be in the same Region and AWS account as the general purpose bucket. The specified metadata table name must be unique within the `aws_s3_metadata` namespace in the destination table bucket.
|
|
1374
|
+
*
|
|
1375
|
+
* > If you created your S3 Metadata configuration before July 15, 2025, we recommend that you delete and re-create your configuration by using [CreateBucketMetadataConfiguration](https://docs.aws.amazon.com/AmazonS3/latest/API/API_CreateBucketMetadataConfiguration.html) so that you can expire journal table records and create a live inventory table.
|
|
1276
1376
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-s3tablesdestination.html}
|
|
1277
1377
|
*/
|
|
1278
1378
|
export type S3TablesDestination = {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { ResourceDefinitionWithAttributes } from "../main.ts";
|
|
1
|
+
import type { ResourceDefinitionWithAttributes, Tag } from "../main.ts";
|
|
2
2
|
/**
|
|
3
3
|
* The `AWS::S3Express::DirectoryBucket` resource defines an Amazon S3 directory bucket in the same AWS Region where you create the AWS CloudFormation stack.
|
|
4
4
|
*
|
|
@@ -118,6 +118,10 @@ export type S3ExpressDirectoryBucketProps = {
|
|
|
118
118
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3express-directorybucket.html#cfn-s3express-directorybucket-locationname}
|
|
119
119
|
*/
|
|
120
120
|
LocationName: string;
|
|
121
|
+
/**
|
|
122
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3express-directorybucket.html#cfn-s3express-directorybucket-tags}
|
|
123
|
+
*/
|
|
124
|
+
Tags?: Tag[] | undefined;
|
|
121
125
|
};
|
|
122
126
|
/**
|
|
123
127
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3express-directorybucket.html#aws-resource-s3express-directorybucket-return-values}
|