@awboost/cfntypes 0.100.230 → 0.100.232

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.
@@ -24920,6 +24920,106 @@ export type BedrockPromptVersionToolSpecification = {
24920
24920
  */
24921
24921
  Name: string;
24922
24922
  };
24923
+ /**
24924
+ * Resource type definition for `AWS::Billing::BillingView`.
24925
+ * A billing view is a container of cost & usage metadata.
24926
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-billing-billingview.html}
24927
+ */
24928
+ export type BillingBillingViewProps = {
24929
+ DataFilterExpression?: {
24930
+ Dimensions?: {
24931
+ Key?: BillingBillingViewDimensionKey;
24932
+ /**
24933
+ * @minLength `1`
24934
+ * @maxLength `200`
24935
+ */
24936
+ Values?: string[];
24937
+ };
24938
+ Tags?: {
24939
+ /**
24940
+ * @maxLength `1024`
24941
+ * @pattern `[\S\s]*`
24942
+ */
24943
+ Key?: string;
24944
+ /**
24945
+ * @minLength `1`
24946
+ * @maxLength `200`
24947
+ */
24948
+ Values?: string[];
24949
+ };
24950
+ };
24951
+ /**
24952
+ * @maxLength `1024`
24953
+ */
24954
+ Description?: string;
24955
+ /**
24956
+ * @minLength `1`
24957
+ * @maxLength `128`
24958
+ * @pattern `[a-zA-Z0-9_\+=\.\-@]+`
24959
+ */
24960
+ Name: string;
24961
+ /**
24962
+ * An array of strings that define the billing view's source.
24963
+ */
24964
+ SourceViews: string[];
24965
+ /**
24966
+ * An array of key-value pairs associated to the billing view being created.
24967
+ * @maxLength `200`
24968
+ */
24969
+ Tags?: BillingBillingViewTag[];
24970
+ };
24971
+ /**
24972
+ * Attribute type definition for `AWS::Billing::BillingView`.
24973
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-billing-billingview.html#aws-resource-billing-billingview-return-values}
24974
+ */
24975
+ export type BillingBillingViewAttributes = {
24976
+ /**
24977
+ * @pattern `arn:aws[a-z-]*:(billing)::[0-9]{12}:billingview/[a-zA-Z0-9_+=.@-]{1,75}`
24978
+ */
24979
+ Arn: string;
24980
+ BillingViewType: BillingBillingViewBillingViewType;
24981
+ /**
24982
+ * The time when the billing view was created.
24983
+ */
24984
+ CreatedAt: number;
24985
+ /**
24986
+ * @pattern `[0-9]{12}`
24987
+ */
24988
+ OwnerAccountId: string;
24989
+ /**
24990
+ * The time when the billing view was last updated.
24991
+ */
24992
+ UpdatedAt: number;
24993
+ };
24994
+ /**
24995
+ * Type definition for `AWS::Billing::BillingView.BillingViewType`.
24996
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-billing-billingview-billingviewtype.html}
24997
+ */
24998
+ export type BillingBillingViewBillingViewType = "PRIMARY" | "BILLING_GROUP" | "CUSTOM";
24999
+ /**
25000
+ * Type definition for `AWS::Billing::BillingView.DimensionKey`.
25001
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-billing-billingview-dimensionkey.html}
25002
+ */
25003
+ export type BillingBillingViewDimensionKey = "LINKED_ACCOUNT";
25004
+ /**
25005
+ * Type definition for `AWS::Billing::BillingView.Tag`.
25006
+ * A key-value pair to associate with a Billing View.
25007
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-billing-billingview-tag.html}
25008
+ */
25009
+ export type BillingBillingViewTag = {
25010
+ /**
25011
+ * The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
25012
+ * @minLength `1`
25013
+ * @maxLength `128`
25014
+ */
25015
+ Key: string;
25016
+ /**
25017
+ * The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
25018
+ * @minLength `0`
25019
+ * @maxLength `256`
25020
+ */
25021
+ Value: string;
25022
+ };
24923
25023
  /**
24924
25024
  * Resource type definition for `AWS::BillingConductor::BillingGroup`.
24925
25025
  * A billing group is a set of linked account which belong to the same end customer. It can be seen as a virtual consolidated billing family.
@@ -38570,10 +38670,30 @@ export type ConnectInstanceAttributes = {
38570
38670
  * Boolean flag which enables EARLY_MEDIA on an instance.
38571
38671
  */
38572
38672
  EarlyMedia?: boolean;
38673
+ /**
38674
+ * Boolean flag which enables ENHANCED_CHAT_MONITORING on an instance.
38675
+ */
38676
+ EnhancedChatMonitoring?: boolean;
38677
+ /**
38678
+ * Boolean flag which enables ENHANCED_CONTACT_MONITORING on an instance.
38679
+ */
38680
+ EnhancedContactMonitoring?: boolean;
38681
+ /**
38682
+ * Boolean flag which enables HIGH_VOLUME_OUTBOUND on an instance.
38683
+ */
38684
+ HighVolumeOutBound?: boolean;
38573
38685
  /**
38574
38686
  * Mandatory element which enables inbound calls on new instance.
38575
38687
  */
38576
38688
  InboundCalls: boolean;
38689
+ /**
38690
+ * Boolean flag which enables MULTI_PARTY_CHAT_CONFERENCE on an instance.
38691
+ */
38692
+ MultiPartyChatConference?: boolean;
38693
+ /**
38694
+ * Boolean flag which enables MULTI_PARTY_CONFERENCE on an instance.
38695
+ */
38696
+ MultiPartyConference?: boolean;
38577
38697
  /**
38578
38698
  * Mandatory element which enables outbound calls on new instance.
38579
38699
  */
@@ -115524,18 +115644,127 @@ export type MediaPackageV2OriginEndpointCmafEncryptionMethod = "CENC" | "CBCS";
115524
115644
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-containertype.html}
115525
115645
  */
115526
115646
  export type MediaPackageV2OriginEndpointContainerType = "TS" | "CMAF";
115647
+ /**
115648
+ * Type definition for `AWS::MediaPackageV2::OriginEndpoint.DashBaseUrl`.
115649
+ * <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>
115650
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashbaseurl.html}
115651
+ */
115652
+ export type MediaPackageV2OriginEndpointDashBaseUrl = {
115653
+ /**
115654
+ * <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>
115655
+ * @min `1`
115656
+ * @max `15000`
115657
+ */
115658
+ DvbPriority?: number;
115659
+ /**
115660
+ * <p>For use with DVB-DASH profiles only. The weighting for source locations that have the same priority. </p>
115661
+ * @min `1`
115662
+ * @max `15000`
115663
+ */
115664
+ DvbWeight?: number;
115665
+ /**
115666
+ * <p>The name of the source location.</p>
115667
+ * @minLength `1`
115668
+ * @maxLength `2048`
115669
+ */
115670
+ ServiceLocation?: string;
115671
+ /**
115672
+ * <p>A source location for segments.</p>
115673
+ * @minLength `1`
115674
+ * @maxLength `2048`
115675
+ */
115676
+ Url: string;
115677
+ };
115678
+ /**
115679
+ * Type definition for `AWS::MediaPackageV2::OriginEndpoint.DashCompactness`.
115680
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashcompactness.html}
115681
+ */
115682
+ export type MediaPackageV2OriginEndpointDashCompactness = "STANDARD" | "NONE";
115527
115683
  /**
115528
115684
  * Type definition for `AWS::MediaPackageV2::OriginEndpoint.DashDrmSignaling`.
115529
115685
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashdrmsignaling.html}
115530
115686
  */
115531
115687
  export type MediaPackageV2OriginEndpointDashDrmSignaling = "INDIVIDUAL" | "REFERENCED";
115688
+ /**
115689
+ * Type definition for `AWS::MediaPackageV2::OriginEndpoint.DashDvbFontDownload`.
115690
+ * <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>
115691
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashdvbfontdownload.html}
115692
+ */
115693
+ export type MediaPackageV2OriginEndpointDashDvbFontDownload = {
115694
+ /**
115695
+ * <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>
115696
+ * @minLength `1`
115697
+ * @maxLength `256`
115698
+ */
115699
+ FontFamily?: string;
115700
+ /**
115701
+ * <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>
115702
+ * @minLength `1`
115703
+ * @maxLength `256`
115704
+ * @pattern `^[a-zA-Z0-9][a-zA-Z0-9_/-]*[a-zA-Z0-9]$`
115705
+ */
115706
+ MimeType?: string;
115707
+ /**
115708
+ * <p>The URL for downloading fonts for subtitles.</p>
115709
+ * @minLength `1`
115710
+ * @maxLength `2048`
115711
+ */
115712
+ Url?: string;
115713
+ };
115714
+ /**
115715
+ * Type definition for `AWS::MediaPackageV2::OriginEndpoint.DashDvbMetricsReporting`.
115716
+ * <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>
115717
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashdvbmetricsreporting.html}
115718
+ */
115719
+ export type MediaPackageV2OriginEndpointDashDvbMetricsReporting = {
115720
+ /**
115721
+ * <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>
115722
+ * @min `1`
115723
+ * @max `1000`
115724
+ */
115725
+ Probability?: number;
115726
+ /**
115727
+ * <p>The URL where playback devices send error reports.</p>
115728
+ * @minLength `1`
115729
+ * @maxLength `2048`
115730
+ */
115731
+ ReportingUrl: string;
115732
+ };
115733
+ /**
115734
+ * Type definition for `AWS::MediaPackageV2::OriginEndpoint.DashDvbSettings`.
115735
+ * <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>
115736
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashdvbsettings.html}
115737
+ */
115738
+ export type MediaPackageV2OriginEndpointDashDvbSettings = {
115739
+ /**
115740
+ * <p>Playback device error reporting settings.</p>
115741
+ * @minLength `0`
115742
+ * @maxLength `20`
115743
+ */
115744
+ ErrorMetrics?: MediaPackageV2OriginEndpointDashDvbMetricsReporting[];
115745
+ /**
115746
+ * <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>
115747
+ */
115748
+ FontDownload?: MediaPackageV2OriginEndpointDashDvbFontDownload;
115749
+ };
115532
115750
  /**
115533
115751
  * Type definition for `AWS::MediaPackageV2::OriginEndpoint.DashManifestConfiguration`.
115534
115752
  * <p>Retrieve the DASH manifest configuration.</p>
115535
115753
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashmanifestconfiguration.html}
115536
115754
  */
115537
115755
  export type MediaPackageV2OriginEndpointDashManifestConfiguration = {
115756
+ /**
115757
+ * <p>The base URL to use for retrieving segments.</p>
115758
+ * @minLength `0`
115759
+ * @maxLength `20`
115760
+ */
115761
+ BaseUrls?: MediaPackageV2OriginEndpointDashBaseUrl[];
115762
+ Compactness?: MediaPackageV2OriginEndpointDashCompactness;
115538
115763
  DrmSignaling?: MediaPackageV2OriginEndpointDashDrmSignaling;
115764
+ /**
115765
+ * <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>
115766
+ */
115767
+ DvbSettings?: MediaPackageV2OriginEndpointDashDvbSettings;
115539
115768
  /**
115540
115769
  * <p>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. </p>
115541
115770
  */
@@ -115560,17 +115789,30 @@ export type MediaPackageV2OriginEndpointDashManifestConfiguration = {
115560
115789
  */
115561
115790
  MinUpdatePeriodSeconds?: number;
115562
115791
  /**
115563
- * <p>A list of triggers that controls when AWS Elemental MediaPackage separates the MPEG-DASH manifest into multiple periods. Leave this value empty to indicate that the manifest is contained all in one period.
115564
- 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>
115565
- * @minLength `0`
115566
- * @maxLength `100`
115567
- */
115792
+ * <p>A list of triggers that controls when AWS Elemental MediaPackage separates the MPEG-DASH manifest into multiple periods. 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 <a href="https://docs.aws.amazon.com/mediapackage/latest/userguide/multi-period.html">Multi-period DASH in AWS Elemental MediaPackage</a>.</p>
115793
+ * @minLength `0`
115794
+ * @maxLength `100`
115795
+ */
115568
115796
  PeriodTriggers?: MediaPackageV2OriginEndpointDashPeriodTrigger[];
115797
+ /**
115798
+ * <p>The profile that the output is compliant with.</p>
115799
+ * @minLength `0`
115800
+ * @maxLength `5`
115801
+ */
115802
+ Profiles?: MediaPackageV2OriginEndpointDashProfile[];
115803
+ /**
115804
+ * <p>Details about the content that you want MediaPackage to pass through in the manifest to the playback device.</p>
115805
+ */
115806
+ ProgramInformation?: MediaPackageV2OriginEndpointDashProgramInformation;
115569
115807
  /**
115570
115808
  * <p>The SCTE configuration.</p>
115571
115809
  */
115572
115810
  ScteDash?: MediaPackageV2OriginEndpointScteDash;
115573
115811
  SegmentTemplateFormat?: MediaPackageV2OriginEndpointDashSegmentTemplateFormat;
115812
+ /**
115813
+ * <p>The configuration for DASH subtitles.</p>
115814
+ */
115815
+ SubtitleConfiguration?: MediaPackageV2OriginEndpointDashSubtitleConfiguration;
115574
115816
  /**
115575
115817
  * <p>The amount of time (in seconds) that the player should be from the end of the manifest.</p>
115576
115818
  */
@@ -115585,11 +115827,78 @@ export type MediaPackageV2OriginEndpointDashManifestConfiguration = {
115585
115827
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashperiodtrigger.html}
115586
115828
  */
115587
115829
  export type MediaPackageV2OriginEndpointDashPeriodTrigger = "AVAILS" | "DRM_KEY_ROTATION" | "SOURCE_CHANGES" | "SOURCE_DISRUPTIONS" | "NONE";
115830
+ /**
115831
+ * Type definition for `AWS::MediaPackageV2::OriginEndpoint.DashProfile`.
115832
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashprofile.html}
115833
+ */
115834
+ export type MediaPackageV2OriginEndpointDashProfile = "DVB_DASH";
115835
+ /**
115836
+ * Type definition for `AWS::MediaPackageV2::OriginEndpoint.DashProgramInformation`.
115837
+ * <p>Details about the content that you want MediaPackage to pass through in the manifest to the playback device.</p>
115838
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashprograminformation.html}
115839
+ */
115840
+ export type MediaPackageV2OriginEndpointDashProgramInformation = {
115841
+ /**
115842
+ * <p>A copyright statement about the content.</p>
115843
+ * @minLength `1`
115844
+ * @maxLength `2048`
115845
+ */
115846
+ Copyright?: string;
115847
+ /**
115848
+ * <p>The language code for this manifest.</p>
115849
+ * @minLength `2`
115850
+ * @maxLength `5`
115851
+ * @pattern `^[a-zA-Z0-9][a-zA-Z0-9_-]*[a-zA-Z0-9]$`
115852
+ */
115853
+ LanguageCode?: string;
115854
+ /**
115855
+ * <p>An absolute URL that contains more information about this content.</p>
115856
+ * @minLength `1`
115857
+ * @maxLength `2048`
115858
+ */
115859
+ MoreInformationUrl?: string;
115860
+ /**
115861
+ * <p>Information about the content provider.</p>
115862
+ * @minLength `1`
115863
+ * @maxLength `2048`
115864
+ */
115865
+ Source?: string;
115866
+ /**
115867
+ * <p>The title for the manifest.</p>
115868
+ * @minLength `1`
115869
+ * @maxLength `2048`
115870
+ */
115871
+ Title?: string;
115872
+ };
115588
115873
  /**
115589
115874
  * Type definition for `AWS::MediaPackageV2::OriginEndpoint.DashSegmentTemplateFormat`.
115590
115875
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashsegmenttemplateformat.html}
115591
115876
  */
115592
115877
  export type MediaPackageV2OriginEndpointDashSegmentTemplateFormat = "NUMBER_WITH_TIMELINE";
115878
+ /**
115879
+ * Type definition for `AWS::MediaPackageV2::OriginEndpoint.DashSubtitleConfiguration`.
115880
+ * <p>The configuration for DASH subtitles.</p>
115881
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashsubtitleconfiguration.html}
115882
+ */
115883
+ export type MediaPackageV2OriginEndpointDashSubtitleConfiguration = {
115884
+ /**
115885
+ * <p>The settings for TTML subtitles.</p>
115886
+ */
115887
+ TtmlConfiguration?: MediaPackageV2OriginEndpointDashTtmlConfiguration;
115888
+ };
115889
+ /**
115890
+ * Type definition for `AWS::MediaPackageV2::OriginEndpoint.DashTtmlConfiguration`.
115891
+ * <p>The settings for TTML subtitles.</p>
115892
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashttmlconfiguration.html}
115893
+ */
115894
+ export type MediaPackageV2OriginEndpointDashTtmlConfiguration = {
115895
+ TtmlProfile: MediaPackageV2OriginEndpointDashTtmlProfile;
115896
+ };
115897
+ /**
115898
+ * Type definition for `AWS::MediaPackageV2::OriginEndpoint.DashTtmlProfile`.
115899
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-dashttmlprofile.html}
115900
+ */
115901
+ export type MediaPackageV2OriginEndpointDashTtmlProfile = "IMSC_1" | "EBU_TT_D_101";
115593
115902
  /**
115594
115903
  * Type definition for `AWS::MediaPackageV2::OriginEndpoint.DashUtcTiming`.
115595
115904
  * <p>Determines the type of UTC timing included in the DASH Media Presentation Description (MPD).</p>
@@ -115632,12 +115941,10 @@ export type MediaPackageV2OriginEndpointEncryption = {
115632
115941
  */
115633
115942
  EncryptionMethod: MediaPackageV2OriginEndpointEncryptionMethod;
115634
115943
  /**
115635
- * <p>The frequency (in seconds) of key changes for live workflows, in which content is streamed real time. The service retrieves content keys before the live content begins streaming, and then retrieves them as needed over the lifetime of the workflow. By default, key rotation is set to 300 seconds (5 minutes), the minimum rotation interval, which is equivalent to setting it to 300. If you don't enter an interval, content keys aren't rotated.</p>
115636
- <p>The following example setting causes the service to rotate keys every thirty minutes: <code>1800</code>
115637
- </p>
115638
- * @min `300`
115639
- * @max `31536000`
115640
- */
115944
+ * <p>The frequency (in seconds) of key changes for live workflows, in which content is streamed real time. The service retrieves content keys before the live content begins streaming, and then retrieves them as needed over the lifetime of the workflow. By default, key rotation is set to 300 seconds (5 minutes), the minimum rotation interval, which is equivalent to setting it to 300. If you don't enter an interval, content keys aren't rotated.</p> <p>The following example setting causes the service to rotate keys every thirty minutes: <code>1800</code> </p>
115945
+ * @min `300`
115946
+ * @max `31536000`
115947
+ */
115641
115948
  KeyRotationIntervalSeconds?: number;
115642
115949
  /**
115643
115950
  * <p>The parameters for the SPEKE key provider.</p>
@@ -115705,26 +116012,8 @@ export type MediaPackageV2OriginEndpointFilterConfiguration = {
115705
116012
  */
115706
116013
  export type MediaPackageV2OriginEndpointForceEndpointErrorConfiguration = {
115707
116014
  /**
115708
- * <p>The failover conditions for the endpoint. The options are:</p>
115709
- <ul>
115710
- <li>
115711
- <p>
115712
- <code>STALE_MANIFEST</code> - The manifest stalled and there are no new segments or parts.</p>
115713
- </li>
115714
- <li>
115715
- <p>
115716
- <code>INCOMPLETE_MANIFEST</code> - There is a gap in the manifest.</p>
115717
- </li>
115718
- <li>
115719
- <p>
115720
- <code>MISSING_DRM_KEY</code> - Key rotation is enabled but we're unable to fetch the key for the current key period.</p>
115721
- </li>
115722
- <li>
115723
- <p>
115724
- <code>SLATE_INPUT</code> - The segments which contain slate content are considered to be missing content.</p>
115725
- </li>
115726
- </ul>
115727
- */
116015
+ * <p>The failover conditions for the endpoint. The options are:</p> <ul> <li> <p> <code>STALE_MANIFEST</code> - The manifest stalled and there are no new segments or parts.</p> </li> <li> <p> <code>INCOMPLETE_MANIFEST</code> - There is a gap in the manifest.</p> </li> <li> <p> <code>MISSING_DRM_KEY</code> - Key rotation is enabled but we're unable to fetch the key for the current key period.</p> </li> <li> <p> <code>SLATE_INPUT</code> - The segments which contain slate content are considered to be missing content.</p> </li> </ul>
116016
+ */
115728
116017
  EndpointErrorConditions?: MediaPackageV2OriginEndpointEndpointErrorCondition[];
115729
116018
  };
115730
116019
  /**
@@ -115756,11 +116045,8 @@ export type MediaPackageV2OriginEndpointHlsManifestConfiguration = {
115756
116045
  */
115757
116046
  ManifestWindowSeconds?: number;
115758
116047
  /**
115759
- * <p>Inserts EXT-X-PROGRAM-DATE-TIME tags in the output manifest at the interval that you specify. If you don't enter an interval,
115760
- EXT-X-PROGRAM-DATE-TIME tags aren't included in the manifest.
115761
- The tags sync the stream to the wall clock so that viewers can seek to a specific time in the playback timeline on the player.</p>
115762
- <p>Irrespective of this parameter, if any ID3Timed metadata is in the HLS input, it is passed through to the HLS output.</p>
115763
- */
116048
+ * <p>Inserts EXT-X-PROGRAM-DATE-TIME tags in the output manifest at the interval that you specify. If you don't enter an interval, EXT-X-PROGRAM-DATE-TIME tags aren't included in the manifest. The tags sync the stream to the wall clock so that viewers can seek to a specific time in the playback timeline on the player.</p> <p>Irrespective of this parameter, if any ID3Timed metadata is in the HLS input, it is passed through to the HLS output.</p>
116049
+ */
115764
116050
  ProgramDateTimeIntervalSeconds?: number;
115765
116051
  /**
115766
116052
  * <p>The SCTE configuration.</p>
@@ -115771,9 +116057,8 @@ export type MediaPackageV2OriginEndpointHlsManifestConfiguration = {
115771
116057
  */
115772
116058
  StartTag?: MediaPackageV2OriginEndpointStartTag;
115773
116059
  /**
115774
- * <p>When enabled, MediaPackage URL-encodes the query string for API requests for HLS child manifests to comply with Amazon Web Services Signature Version 4 (SigV4) signature signing protocol.
115775
- 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>
115776
- */
116060
+ * <p>When enabled, MediaPackage URL-encodes the query string for API requests for HLS child manifests to comply with Amazon Web Services Signature Version 4 (SigV4) signature signing protocol. 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>
116061
+ */
115777
116062
  UrlEncodeChildManifest?: boolean;
115778
116063
  };
115779
116064
  /**
@@ -115805,11 +116090,8 @@ export type MediaPackageV2OriginEndpointLowLatencyHlsManifestConfiguration = {
115805
116090
  */
115806
116091
  ManifestWindowSeconds?: number;
115807
116092
  /**
115808
- * <p>Inserts EXT-X-PROGRAM-DATE-TIME tags in the output manifest at the interval that you specify. If you don't enter an interval,
115809
- EXT-X-PROGRAM-DATE-TIME tags aren't included in the manifest.
115810
- The tags sync the stream to the wall clock so that viewers can seek to a specific time in the playback timeline on the player.</p>
115811
- <p>Irrespective of this parameter, if any ID3Timed metadata is in the HLS input, it is passed through to the HLS output.</p>
115812
- */
116093
+ * <p>Inserts EXT-X-PROGRAM-DATE-TIME tags in the output manifest at the interval that you specify. If you don't enter an interval, EXT-X-PROGRAM-DATE-TIME tags aren't included in the manifest. The tags sync the stream to the wall clock so that viewers can seek to a specific time in the playback timeline on the player.</p> <p>Irrespective of this parameter, if any ID3Timed metadata is in the HLS input, it is passed through to the HLS output.</p>
116094
+ */
115813
116095
  ProgramDateTimeIntervalSeconds?: number;
115814
116096
  /**
115815
116097
  * <p>The SCTE configuration.</p>
@@ -115820,9 +116102,8 @@ export type MediaPackageV2OriginEndpointLowLatencyHlsManifestConfiguration = {
115820
116102
  */
115821
116103
  StartTag?: MediaPackageV2OriginEndpointStartTag;
115822
116104
  /**
115823
- * <p>When enabled, MediaPackage URL-encodes the query string for API requests for LL-HLS child manifests to comply with Amazon Web Services Signature Version 4 (SigV4) signature signing protocol.
115824
- 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>
115825
- */
116105
+ * <p>When enabled, MediaPackage URL-encodes the query string for API requests for LL-HLS child manifests to comply with Amazon Web Services Signature Version 4 (SigV4) signature signing protocol. 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>
116106
+ */
115826
116107
  UrlEncodeChildManifest?: boolean;
115827
116108
  };
115828
116109
  /**
@@ -115926,29 +116207,23 @@ export type MediaPackageV2OriginEndpointSpekeKeyProvider = {
115926
116207
  */
115927
116208
  EncryptionContractConfiguration: MediaPackageV2OriginEndpointEncryptionContractConfiguration;
115928
116209
  /**
115929
- * <p>The unique identifier for the content. The service sends this to the key server to identify the current endpoint. How unique you make this depends on how fine-grained you want access controls to be. The service does not permit you to use the same ID for two simultaneous encryption processes. The resource ID is also known as the content ID.</p>
115930
- <p>The following example shows a resource ID: <code>MovieNight20171126093045</code>
115931
- </p>
115932
- * @minLength `1`
115933
- * @maxLength `256`
115934
- * @pattern `^[0-9a-zA-Z_-]+$`
115935
- */
116210
+ * <p>The unique identifier for the content. The service sends this to the key server to identify the current endpoint. How unique you make this depends on how fine-grained you want access controls to be. The service does not permit you to use the same ID for two simultaneous encryption processes. The resource ID is also known as the content ID.</p> <p>The following example shows a resource ID: <code>MovieNight20171126093045</code> </p>
116211
+ * @minLength `1`
116212
+ * @maxLength `256`
116213
+ * @pattern `^[0-9a-zA-Z_-]+$`
116214
+ */
115936
116215
  ResourceId: string;
115937
116216
  /**
115938
- * <p>The ARN for the IAM role granted by the key provider that provides access to the key provider API. This role must have a trust policy that allows MediaPackage to assume the role, and it must have a sufficient permissions policy to allow access to the specific key retrieval URL. Get this from your DRM solution provider.</p>
115939
- <p>Valid format: <code>arn:aws:iam::{accountID}:role/{name}</code>. The following example shows a role ARN: <code>arn:aws:iam::444455556666:role/SpekeAccess</code>
115940
- </p>
115941
- * @minLength `1`
115942
- * @maxLength `2048`
115943
- */
116217
+ * <p>The ARN for the IAM role granted by the key provider that provides access to the key provider API. This role must have a trust policy that allows MediaPackage to assume the role, and it must have a sufficient permissions policy to allow access to the specific key retrieval URL. Get this from your DRM solution provider.</p> <p>Valid format: <code>arn:aws:iam::{accountID}:role/{name}</code>. The following example shows a role ARN: <code>arn:aws:iam::444455556666:role/SpekeAccess</code> </p>
116218
+ * @minLength `1`
116219
+ * @maxLength `2048`
116220
+ */
115944
116221
  RoleArn: string;
115945
116222
  /**
115946
- * <p>The URL of the API Gateway proxy that you set up to talk to your key server. The API Gateway proxy must reside in the same AWS Region as MediaPackage and must start with https://.</p>
115947
- <p>The following example shows a URL: <code>https://1wm2dx1f33.execute-api.us-west-2.amazonaws.com/SpekeSample/copyProtection</code>
115948
- </p>
115949
- * @minLength `1`
115950
- * @maxLength `1024`
115951
- */
116223
+ * <p>The URL of the API Gateway proxy that you set up to talk to your key server. The API Gateway proxy must reside in the same AWS Region as MediaPackage and must start with https://.</p> <p>The following example shows a URL: <code>https://1wm2dx1f33.execute-api.us-west-2.amazonaws.com/SpekeSample/copyProtection</code> </p>
116224
+ * @minLength `1`
116225
+ * @maxLength `1024`
116226
+ */
115952
116227
  Url: string;
115953
116228
  };
115954
116229
  /**
@@ -160564,6 +160839,7 @@ export type RDSDBClusterProps = {
160564
160839
  Valid for: Aurora DB clusters and Multi-AZ DB clusters
160565
160840
  */
160566
160841
  DatabaseName?: string;
160842
+ DeleteAutomatedBackups?: boolean;
160567
160843
  /**
160568
160844
  * 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.
160569
160845
  Valid for: Aurora DB clusters and Multi-AZ DB clusters
@@ -161770,9 +162046,7 @@ export type RDSDBInstanceProps = {
161770
162046
  MonitoringRoleArn?: string;
161771
162047
  /**
161772
162048
  * Specifies whether the DB instance is a Multi-AZ deployment. You can't set the ``AvailabilityZone`` parameter if the DB instance is a Multi-AZ deployment.
161773
- This setting doesn't apply to the following DB instances:
161774
- + Amazon Aurora (DB instance Availability Zones (AZs) are managed by the DB cluster.)
161775
- + RDS Custom
162049
+ This setting doesn't apply to Amazon Aurora because the DB instance Availability Zones (AZs) are managed by the DB cluster.
161776
162050
  */
161777
162051
  MultiAZ?: boolean;
161778
162052
  /**
@@ -168806,8 +169080,9 @@ export type S3BucketProps = {
168806
169080
  * Settings that define where logs are stored.
168807
169081
  */
168808
169082
  LoggingConfiguration?: S3BucketLoggingConfiguration;
169083
+ MetadataConfiguration?: S3BucketMetadataConfiguration;
168809
169084
  /**
168810
- * The metadata table configuration of an 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).
169085
+ * The metadata table configuration of an S3 general purpose bucket.
168811
169086
  */
168812
169087
  MetadataTableConfiguration?: S3BucketMetadataTableConfiguration;
168813
169088
  /**
@@ -168868,8 +169143,53 @@ export type S3BucketAttributes = {
168868
169143
  Arn: string;
168869
169144
  DomainName: string;
168870
169145
  DualStackDomainName: string;
169146
+ MetadataConfiguration: {
169147
+ /**
169148
+ * The destination information for the metadata configuration.
169149
+ */
169150
+ Destination: {
169151
+ /**
169152
+ * The ARN of the table bucket.
169153
+ */
169154
+ TableBucketArn: string;
169155
+ /**
169156
+ * The type of the table bucket.
169157
+ */
169158
+ TableBucketType: "aws" | "customer";
169159
+ /**
169160
+ * The namespace of the table.
169161
+ */
169162
+ TableNamespace: string;
169163
+ };
169164
+ /**
169165
+ * The configuration for the inventory table.
169166
+ */
169167
+ InventoryTableConfiguration: {
169168
+ /**
169169
+ * The ARN of the inventory table.
169170
+ */
169171
+ TableArn: string;
169172
+ /**
169173
+ * The name of the inventory table.
169174
+ */
169175
+ TableName: string;
169176
+ };
169177
+ /**
169178
+ * The configuration for the journal table.
169179
+ */
169180
+ JournalTableConfiguration: {
169181
+ /**
169182
+ * The ARN of the journal table.
169183
+ */
169184
+ TableArn: string;
169185
+ /**
169186
+ * The name of the journal table.
169187
+ */
169188
+ TableName: string;
169189
+ };
169190
+ };
168871
169191
  /**
168872
- * The metadata table configuration of an 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).
169192
+ * The metadata table configuration of an S3 general purpose bucket.
168873
169193
  */
168874
169194
  MetadataTableConfiguration: {
168875
169195
  /**
@@ -169041,7 +169361,7 @@ export type S3BucketDefaultRetention = {
169041
169361
  };
169042
169362
  /**
169043
169363
  * Type definition for `AWS::S3::Bucket.DeleteMarkerReplication`.
169044
- * Specifies whether Amazon S3 replicates delete markers. If you specify a ``Filter`` in your replication configuration, you must also include a ``DeleteMarkerReplication`` element. If your ``Filter`` includes a ``Tag`` element, the ``DeleteMarkerReplication`` ``Status`` must be set to Disabled, because Amazon S3 does not support replicating delete markers for tag-based rules. For an example configuration, see [Basic Rule Configuration](https://docs.aws.amazon.com/AmazonS3/latest/dev/replication-add-config.html#replication-config-min-rule-config).
169364
+ * Specifies whether Amazon S3 replicates delete markers. If you specify a ``Filter`` in your replication configuration, you must also include a ``DeleteMarkerReplication`` element. If your ``Filter`` includes a ``Tag`` element, the ``DeleteMarkerReplication````Status`` must be set to Disabled, because Amazon S3 does not support replicating delete markers for tag-based rules. For an example configuration, see [Basic Rule Configuration](https://docs.aws.amazon.com/AmazonS3/latest/dev/replication-add-config.html#replication-config-min-rule-config).
169045
169365
  For more information about delete marker replication, see [Basic Rule Configuration](https://docs.aws.amazon.com/AmazonS3/latest/dev/delete-marker-replication.html).
169046
169366
  If you are using an earlier version of the replication configuration, Amazon S3 handles replication of delete markers differently. For more information, see [Backward Compatibility](https://docs.aws.amazon.com/AmazonS3/latest/dev/replication-add-config.html#replication-backward-compat-considerations).
169047
169367
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-deletemarkerreplication.html}
@@ -169181,6 +169501,31 @@ export type S3BucketInventoryConfiguration = {
169181
169501
  */
169182
169502
  ScheduleFrequency: "Daily" | "Weekly";
169183
169503
  };
169504
+ /**
169505
+ * Type definition for `AWS::S3::Bucket.InventoryTableConfiguration`.
169506
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-inventorytableconfiguration.html}
169507
+ */
169508
+ export type S3BucketInventoryTableConfiguration = {
169509
+ /**
169510
+ * Specifies whether inventory table configuration is enabled or disabled.
169511
+ */
169512
+ ConfigurationState: "ENABLED" | "DISABLED";
169513
+ /**
169514
+ * The encryption configuration for the inventory table.
169515
+ */
169516
+ EncryptionConfiguration?: S3BucketMetadataTableEncryptionConfiguration;
169517
+ };
169518
+ /**
169519
+ * Type definition for `AWS::S3::Bucket.JournalTableConfiguration`.
169520
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-journaltableconfiguration.html}
169521
+ */
169522
+ export type S3BucketJournalTableConfiguration = {
169523
+ /**
169524
+ * The encryption configuration for the journal table.
169525
+ */
169526
+ EncryptionConfiguration?: S3BucketMetadataTableEncryptionConfiguration;
169527
+ RecordExpiration: S3BucketRecordExpiration;
169528
+ };
169184
169529
  /**
169185
169530
  * Type definition for `AWS::S3::Bucket.LambdaConfiguration`.
169186
169531
  * Describes the LAMlong functions to invoke and the events for which to invoke them.
@@ -169213,8 +169558,8 @@ export type S3BucketLifecycleConfiguration = {
169213
169558
  /**
169214
169559
  * Indicates which default minimum object size behavior is applied to the lifecycle configuration.
169215
169560
  This parameter applies to general purpose buckets only. It isn't supported for directory bucket lifecycle configurations.
169216
- + ``all_storage_classes_128K`` - Objects smaller than 128 KB will not transition to any storage class by default.
169217
- + ``varies_by_storage_class`` - Objects smaller than 128 KB will transition to Glacier Flexible Retrieval or Glacier Deep Archive storage classes. By default, all other storage classes will prevent transitions smaller than 128 KB.
169561
+ + ``all_storage_classes_128K`` - Objects smaller than 128 KB will not transition to any storage class by default.
169562
+ + ``varies_by_storage_class`` - Objects smaller than 128 KB will transition to Glacier Flexible Retrieval or Glacier Deep Archive storage classes. By default, all other storage classes will prevent transitions smaller than 128 KB.
169218
169563
 
169219
169564
  To customize the minimum object size for any transition you can add a filter that specifies a custom ``ObjectSizeGreaterThan`` or ``ObjectSizeLessThan`` in the body of your transition rule. Custom filters always take precedence over the default transition behavior.
169220
169565
  */
@@ -169240,6 +169585,38 @@ export type S3BucketLoggingConfiguration = {
169240
169585
  */
169241
169586
  TargetObjectKeyFormat?: S3BucketTargetObjectKeyFormat;
169242
169587
  };
169588
+ /**
169589
+ * Type definition for `AWS::S3::Bucket.MetadataConfiguration`.
169590
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-metadataconfiguration.html}
169591
+ */
169592
+ export type S3BucketMetadataConfiguration = {
169593
+ /**
169594
+ * The configuration for the inventory table.
169595
+ */
169596
+ InventoryTableConfiguration?: S3BucketInventoryTableConfiguration;
169597
+ /**
169598
+ * The configuration for the journal table.
169599
+ */
169600
+ JournalTableConfiguration: S3BucketJournalTableConfiguration;
169601
+ };
169602
+ /**
169603
+ * Type definition for `AWS::S3::Bucket.MetadataDestination`.
169604
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-metadatadestination.html}
169605
+ */
169606
+ export type S3BucketMetadataDestination = {
169607
+ /**
169608
+ * The ARN of the table bucket.
169609
+ */
169610
+ TableBucketArn?: string;
169611
+ /**
169612
+ * The type of the table bucket.
169613
+ */
169614
+ TableBucketType: "aws" | "customer";
169615
+ /**
169616
+ * The namespace of the table.
169617
+ */
169618
+ TableNamespace?: string;
169619
+ };
169243
169620
  /**
169244
169621
  * Type definition for `AWS::S3::Bucket.MetadataTableConfiguration`.
169245
169622
  * The metadata table configuration of an 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).
@@ -169251,6 +169628,20 @@ export type S3BucketMetadataTableConfiguration = {
169251
169628
  */
169252
169629
  S3TablesDestination: S3BucketS3TablesDestination;
169253
169630
  };
169631
+ /**
169632
+ * Type definition for `AWS::S3::Bucket.MetadataTableEncryptionConfiguration`.
169633
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-metadatatableencryptionconfiguration.html}
169634
+ */
169635
+ export type S3BucketMetadataTableEncryptionConfiguration = {
169636
+ /**
169637
+ * The ARN of the KMS key. Required if SseAlgorithm is aws:kms.
169638
+ */
169639
+ KmsKeyArn?: string;
169640
+ /**
169641
+ * Specifies the server-side encryption algorithm to use for encrypting tables.
169642
+ */
169643
+ SseAlgorithm: "aws:kms" | "AES256";
169644
+ };
169254
169645
  /**
169255
169646
  * Type definition for `AWS::S3::Bucket.Metrics`.
169256
169647
  * A container specifying replication metrics-related settings enabling replication metrics and events.
@@ -169476,6 +169867,20 @@ export type S3BucketQueueConfiguration = {
169476
169867
  */
169477
169868
  Queue: string;
169478
169869
  };
169870
+ /**
169871
+ * Type definition for `AWS::S3::Bucket.RecordExpiration`.
169872
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-recordexpiration.html}
169873
+ */
169874
+ export type S3BucketRecordExpiration = {
169875
+ /**
169876
+ * The number of days after which records expire. Required if Expiration is ENABLED.
169877
+ */
169878
+ Days?: number;
169879
+ /**
169880
+ * Specifies whether record expiration is enabled or disabled.
169881
+ */
169882
+ Expiration: "ENABLED" | "DISABLED";
169883
+ };
169479
169884
  /**
169480
169885
  * Type definition for `AWS::S3::Bucket.RedirectAllRequestsTo`.
169481
169886
  * Specifies the redirect behavior of all requests to a website endpoint of an Amazon S3 bucket.
@@ -169591,7 +169996,7 @@ export type S3BucketReplicationDestination = {
169591
169996
  */
169592
169997
  export type S3BucketReplicationRule = {
169593
169998
  /**
169594
- * Specifies whether Amazon S3 replicates delete markers. If you specify a ``Filter`` in your replication configuration, you must also include a ``DeleteMarkerReplication`` element. If your ``Filter`` includes a ``Tag`` element, the ``DeleteMarkerReplication`` ``Status`` must be set to Disabled, because Amazon S3 does not support replicating delete markers for tag-based rules. For an example configuration, see [Basic Rule Configuration](https://docs.aws.amazon.com/AmazonS3/latest/dev/replication-add-config.html#replication-config-min-rule-config).
169999
+ * Specifies whether Amazon S3 replicates delete markers. If you specify a ``Filter`` in your replication configuration, you must also include a ``DeleteMarkerReplication`` element. If your ``Filter`` includes a ``Tag`` element, the ``DeleteMarkerReplication````Status`` must be set to Disabled, because Amazon S3 does not support replicating delete markers for tag-based rules. For an example configuration, see [Basic Rule Configuration](https://docs.aws.amazon.com/AmazonS3/latest/dev/replication-add-config.html#replication-config-min-rule-config).
169595
170000
  For more information about delete marker replication, see [Basic Rule Configuration](https://docs.aws.amazon.com/AmazonS3/latest/dev/delete-marker-replication.html).
169596
170001
  If you are using an earlier version of the replication configuration, Amazon S3 handles replication of delete markers differently. For more information, see [Backward Compatibility](https://docs.aws.amazon.com/AmazonS3/latest/dev/replication-add-config.html#replication-backward-compat-considerations).
169597
170002
  */
@@ -169725,7 +170130,7 @@ export type S3BucketRoutingRuleCondition = {
169725
170130
  */
169726
170131
  HttpErrorCodeReturnedEquals?: string;
169727
170132
  /**
169728
- * The object key name prefix when the redirect is applied. For example, to redirect requests for ``ExamplePage.html``, the key prefix will be ``ExamplePage.html``. To redirect request for all pages with the prefix ``docs/``, the key prefix will be ``/docs``, which identifies all objects in the docs/ folder.
170133
+ * The object key name prefix when the redirect is applied. For example, to redirect requests for ``ExamplePage.html``, the key prefix will be ``ExamplePage.html``. To redirect request for all pages with the prefix ``docs/``, the key prefix will be ``docs/``, which identifies all objects in the docs/ folder.
169729
170134
  Required when the parent element ``Condition`` is specified and sibling ``HttpErrorCodeReturnedEquals`` is not specified. If both conditions are specified, both must be true for the redirect to be applied.
169730
170135
  */
169731
170136
  KeyPrefixEquals?: string;
@@ -169839,16 +170244,16 @@ export type S3BucketS3TablesDestination = {
169839
170244
  /**
169840
170245
  * Type definition for `AWS::S3::Bucket.ServerSideEncryptionByDefault`.
169841
170246
  * Describes the default server-side encryption to apply to new objects in the bucket. If a PUT Object request doesn't specify any server-side encryption, this default encryption will be applied. For more information, see [PutBucketEncryption](https://docs.aws.amazon.com/AmazonS3/latest/API/RESTBucketPUTencryption.html).
169842
- + *General purpose buckets* - If you don't specify a customer managed key at configuration, Amazon S3 automatically creates an AWS KMS key (``aws/s3``) in your AWS account the first time that you add an object encrypted with SSE-KMS to a bucket. By default, Amazon S3 uses this KMS key for SSE-KMS.
169843
- + *Directory buckets* - Your SSE-KMS configuration can only support 1 [customer managed key](https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#customer-cmk) per directory bucket's lifetime. The [managed key](https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-managed-cmk) (``aws/s3``) isn't supported.
169844
- + *Directory buckets* - For directory buckets, there are only two supported options for server-side encryption: SSE-S3 and SSE-KMS.
170247
+ + *General purpose buckets* - If you don't specify a customer managed key at configuration, Amazon S3 automatically creates an AWS KMS key (``aws/s3``) in your AWS account the first time that you add an object encrypted with SSE-KMS to a bucket. By default, Amazon S3 uses this KMS key for SSE-KMS.
170248
+ + *Directory buckets* - Your SSE-KMS configuration can only support 1 [customer managed key](https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#customer-cmk) per directory bucket's lifetime. The [managed key](https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#aws-managed-cmk) (``aws/s3``) isn't supported.
170249
+ + *Directory buckets* - For directory buckets, there are only two supported options for server-side encryption: SSE-S3 and SSE-KMS.
169845
170250
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-serversideencryptionbydefault.html}
169846
170251
  */
169847
170252
  export type S3BucketServerSideEncryptionByDefault = {
169848
170253
  /**
169849
170254
  * AWS Key Management Service (KMS) customer managed key ID to use for the default encryption.
169850
- + *General purpose buckets* - This parameter is allowed if and only if ``SSEAlgorithm`` is set to ``aws:kms`` or ``aws:kms:dsse``.
169851
- + *Directory buckets* - This parameter is allowed if and only if ``SSEAlgorithm`` is set to ``aws:kms``.
170255
+ + *General purpose buckets* - This parameter is allowed if and only if ``SSEAlgorithm`` is set to ``aws:kms`` or ``aws:kms:dsse``.
170256
+ + *Directory buckets* - This parameter is allowed if and only if ``SSEAlgorithm`` is set to ``aws:kms``.
169852
170257
 
169853
170258
  You can specify the key ID, key alias, or the Amazon Resource Name (ARN) of the KMS key.
169854
170259
  + Key ID: ``1234abcd-12ab-34cd-56ef-1234567890ab``
@@ -169856,8 +170261,8 @@ export type S3BucketServerSideEncryptionByDefault = {
169856
170261
  + Key Alias: ``alias/alias-name``
169857
170262
 
169858
170263
  If you are using encryption with cross-account or AWS service operations, you must use a fully qualified KMS key ARN. For more information, see [Using encryption for cross-account operations](https://docs.aws.amazon.com/AmazonS3/latest/dev/bucket-encryption.html#bucket-encryption-update-bucket-policy).
169859
- + *General purpose buckets* - If you're specifying a customer managed KMS key, we recommend using a fully qualified KMS key ARN. If you use a KMS key alias instead, then KMS resolves the key within the requester’s account. This behavior can result in data that's encrypted with a KMS key that belongs to the requester, and not the bucket owner. Also, if you use a key ID, you can run into a LogDestination undeliverable error when creating a VPC flow log.
169860
- + *Directory buckets* - When you specify an [customer managed key](https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#customer-cmk) for encryption in your directory bucket, only use the key ID or key ARN. The key alias format of the KMS key isn't supported.
170264
+ + *General purpose buckets* - If you're specifying a customer managed KMS key, we recommend using a fully qualified KMS key ARN. If you use a KMS key alias instead, then KMS resolves the key within the requester’s account. This behavior can result in data that's encrypted with a KMS key that belongs to the requester, and not the bucket owner. Also, if you use a key ID, you can run into a LogDestination undeliverable error when creating a VPC flow log.
170265
+ + *Directory buckets* - When you specify an [customer managed key](https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#customer-cmk) for encryption in your directory bucket, only use the key ID or key ARN. The key alias format of the KMS key isn't supported.
169861
170266
 
169862
170267
  Amazon S3 only supports symmetric encryption KMS keys. For more information, see [Asymmetric keys in KMS](https://docs.aws.amazon.com//kms/latest/developerguide/symmetric-asymmetric.html) in the *Key Management Service Developer Guide*.
169863
170268
  */
@@ -169871,8 +170276,8 @@ export type S3BucketServerSideEncryptionByDefault = {
169871
170276
  /**
169872
170277
  * Type definition for `AWS::S3::Bucket.ServerSideEncryptionRule`.
169873
170278
  * Specifies the default server-side encryption configuration.
169874
- + *General purpose buckets* - If you're specifying a customer managed KMS key, we recommend using a fully qualified KMS key ARN. If you use a KMS key alias instead, then KMS resolves the key within the requester’s account. This behavior can result in data that's encrypted with a KMS key that belongs to the requester, and not the bucket owner.
169875
- + *Directory buckets* - When you specify an [customer managed key](https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#customer-cmk) for encryption in your directory bucket, only use the key ID or key ARN. The key alias format of the KMS key isn't supported.
170279
+ + *General purpose buckets* - If you're specifying a customer managed KMS key, we recommend using a fully qualified KMS key ARN. If you use a KMS key alias instead, then KMS resolves the key within the requester’s account. This behavior can result in data that's encrypted with a KMS key that belongs to the requester, and not the bucket owner.
170280
+ + *Directory buckets* - When you specify an [customer managed key](https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#customer-cmk) for encryption in your directory bucket, only use the key ID or key ARN. The key alias format of the KMS key isn't supported.
169876
170281
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-serversideencryptionrule.html}
169877
170282
  */
169878
170283
  export type S3BucketServerSideEncryptionRule = {
@@ -170859,6 +171264,7 @@ export type S3ExpressDirectoryBucketProps = {
170859
171264
  * Specifies the Zone ID of the Availability Zone or Local Zone where the directory bucket will be created. An example Availability Zone ID value is 'use1-az5'.
170860
171265
  */
170861
171266
  LocationName: string;
171267
+ Tags?: S3ExpressDirectoryBucketTag[];
170862
171268
  };
170863
171269
  /**
170864
171270
  * Attribute type definition for `AWS::S3Express::DirectoryBucket`.
@@ -170962,6 +171368,24 @@ export type S3ExpressDirectoryBucketServerSideEncryptionRule = {
170962
171368
  */
170963
171369
  ServerSideEncryptionByDefault?: S3ExpressDirectoryBucketServerSideEncryptionByDefault;
170964
171370
  };
171371
+ /**
171372
+ * Type definition for `AWS::S3Express::DirectoryBucket.Tag`.
171373
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3express-directorybucket-tag.html}
171374
+ */
171375
+ export type S3ExpressDirectoryBucketTag = {
171376
+ /**
171377
+ * @minLength `1`
171378
+ * @maxLength `128`
171379
+ * @pattern `^(?!aws:.*)([\p{L}\p{Z}\p{N}_.:=+\/\-@%]*)$`
171380
+ */
171381
+ Key: string;
171382
+ /**
171383
+ * @minLength `0`
171384
+ * @maxLength `256`
171385
+ * @pattern `^([\p{L}\p{Z}\p{N}_.:=+\/\-@%]*)$`
171386
+ */
171387
+ Value: string;
171388
+ };
170965
171389
  /**
170966
171390
  * The AWS::S3ObjectLambda::AccessPoint resource is an Amazon S3ObjectLambda resource type that you can use to add computation to S3 actions
170967
171391
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3objectlambda-accesspoint.html}
@@ -171703,6 +172127,44 @@ export type S3TablesTableBucketPolicyProps = {
171703
172127
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3tables-tablebucketpolicy-resourcepolicy.html}
171704
172128
  */
171705
172129
  export type S3TablesTableBucketPolicyResourcePolicy = Record<string, any> | string;
172130
+ /**
172131
+ * Resource Type definition for AWS::S3Tables::TablePolicy
172132
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3tables-tablepolicy.html}
172133
+ */
172134
+ export type S3TablesTablePolicyProps = {
172135
+ /**
172136
+ * A policy document containing permissions to add to the specified table. In IAM, you must provide policy documents in JSON format. However, in CloudFormation you can provide the policy in JSON or YAML format because CloudFormation converts YAML to JSON before submitting it to IAM.
172137
+ */
172138
+ ResourcePolicy: S3TablesTablePolicyResourcePolicy;
172139
+ /**
172140
+ * The Amazon Resource Name (ARN) of the specified table.
172141
+ */
172142
+ TableARN: string;
172143
+ };
172144
+ /**
172145
+ * Attribute type definition for `AWS::S3Tables::TablePolicy`.
172146
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3tables-tablepolicy.html#aws-resource-s3tables-tablepolicy-return-values}
172147
+ */
172148
+ export type S3TablesTablePolicyAttributes = {
172149
+ /**
172150
+ * The namespace that the table belongs to.
172151
+ */
172152
+ Namespace: string;
172153
+ /**
172154
+ * The Amazon Resource Name (ARN) of the specified table bucket.
172155
+ */
172156
+ TableBucketARN: string;
172157
+ /**
172158
+ * The name for the table.
172159
+ */
172160
+ TableName: string;
172161
+ };
172162
+ /**
172163
+ * Type definition for `AWS::S3Tables::TablePolicy.ResourcePolicy`.
172164
+ * A policy document containing permissions to add to the specified table. In IAM, you must provide policy documents in JSON format. However, in CloudFormation you can provide the policy in JSON or YAML format because CloudFormation converts YAML to JSON before submitting it to IAM.
172165
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3tables-tablepolicy-resourcepolicy.html}
172166
+ */
172167
+ export type S3TablesTablePolicyResourcePolicy = Record<string, any> | string;
171706
172168
  /**
171707
172169
  * Resource Type definition for AWS::SageMaker::App
171708
172170
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-app.html}
@@ -172899,7 +173361,7 @@ export type SageMakerDomainProps = {
172899
173361
  * @minLength `1`
172900
173362
  * @maxLength `16`
172901
173363
  */
172902
- SubnetIds: string[];
173364
+ SubnetIds?: string[];
172903
173365
  /**
172904
173366
  * Indicates whether the tags added to Domain, User Profile and Space entity is propagated to all SageMaker resources.
172905
173367
  */
@@ -172915,7 +173377,7 @@ export type SageMakerDomainProps = {
172915
173377
  * @maxLength `32`
172916
173378
  * @pattern `[-0-9a-zA-Z]+`
172917
173379
  */
172918
- VpcId: string;
173380
+ VpcId?: string;
172919
173381
  };
172920
173382
  /**
172921
173383
  * Attribute type definition for `AWS::SageMaker::Domain`.
@@ -173545,6 +174007,11 @@ export type SageMakerDomainUnifiedStudioSettings = {
173545
174007
  * @pattern `[\w\.-]+$`
173546
174008
  */
173547
174009
  ProjectS3Path?: string;
174010
+ /**
174011
+ * The ARN of the DataZone application managed by SageMaker Unified Studio in the AWS IAM Identity Center.
174012
+ * @pattern `^arn:(aws|aws-us-gov|aws-cn|aws-iso|aws-iso-b):sso::[0-9]+:application/[a-zA-Z0-9-_.]+/apl-[a-zA-Z0-9]+$`
174013
+ */
174014
+ SingleSignOnApplicationArn?: string;
173548
174015
  /**
173549
174016
  * Sets whether you can access the domain in Amazon SageMaker Studio:
173550
174017
 
@@ -191247,6 +191714,12 @@ export type TransferConnectorProps = {
191247
191714
  * Configuration for an SFTP connector.
191248
191715
  */
191249
191716
  SftpConfig?: {
191717
+ /**
191718
+ * Specifies the number of active connections that your connector can establish with the remote server at the same time.
191719
+ * @min `1`
191720
+ * @max `5`
191721
+ */
191722
+ MaxConcurrentConnections?: number;
191250
191723
  /**
191251
191724
  * List of public host keys, for the external server to which you are connecting.
191252
191725
  * @maxLength `10`
@@ -200960,6 +201433,7 @@ export interface ResourceTypes {
200960
201433
  "AWS::Bedrock::KnowledgeBase": BedrockKnowledgeBaseProps;
200961
201434
  "AWS::Bedrock::Prompt": BedrockPromptProps;
200962
201435
  "AWS::Bedrock::PromptVersion": BedrockPromptVersionProps;
201436
+ "AWS::Billing::BillingView": BillingBillingViewProps;
200963
201437
  "AWS::BillingConductor::BillingGroup": BillingConductorBillingGroupProps;
200964
201438
  "AWS::BillingConductor::CustomLineItem": BillingConductorCustomLineItemProps;
200965
201439
  "AWS::BillingConductor::PricingPlan": BillingConductorPricingPlanProps;
@@ -201986,6 +202460,7 @@ export interface ResourceTypes {
201986
202460
  "AWS::S3Tables::Table": S3TablesTableProps;
201987
202461
  "AWS::S3Tables::TableBucket": S3TablesTableBucketProps;
201988
202462
  "AWS::S3Tables::TableBucketPolicy": S3TablesTableBucketPolicyProps;
202463
+ "AWS::S3Tables::TablePolicy": S3TablesTablePolicyProps;
201989
202464
  "AWS::SageMaker::App": SageMakerAppProps;
201990
202465
  "AWS::SageMaker::AppImageConfig": SageMakerAppImageConfigProps;
201991
202466
  "AWS::SageMaker::Cluster": SageMakerClusterProps;
@@ -202366,6 +202841,7 @@ export interface AttributeTypes {
202366
202841
  "AWS::Bedrock::KnowledgeBase": BedrockKnowledgeBaseAttributes;
202367
202842
  "AWS::Bedrock::Prompt": BedrockPromptAttributes;
202368
202843
  "AWS::Bedrock::PromptVersion": BedrockPromptVersionAttributes;
202844
+ "AWS::Billing::BillingView": BillingBillingViewAttributes;
202369
202845
  "AWS::BillingConductor::BillingGroup": BillingConductorBillingGroupAttributes;
202370
202846
  "AWS::BillingConductor::CustomLineItem": BillingConductorCustomLineItemAttributes;
202371
202847
  "AWS::BillingConductor::PricingPlan": BillingConductorPricingPlanAttributes;
@@ -203271,6 +203747,7 @@ export interface AttributeTypes {
203271
203747
  "AWS::S3Outposts::Endpoint": S3OutpostsEndpointAttributes;
203272
203748
  "AWS::S3Tables::Table": S3TablesTableAttributes;
203273
203749
  "AWS::S3Tables::TableBucket": S3TablesTableBucketAttributes;
203750
+ "AWS::S3Tables::TablePolicy": S3TablesTablePolicyAttributes;
203274
203751
  "AWS::SageMaker::App": SageMakerAppAttributes;
203275
203752
  "AWS::SageMaker::AppImageConfig": SageMakerAppImageConfigAttributes;
203276
203753
  "AWS::SageMaker::Cluster": SageMakerClusterAttributes;
@@ -203643,6 +204120,7 @@ export declare const ResourceType: {
203643
204120
  readonly BedrockKnowledgeBase: "AWS::Bedrock::KnowledgeBase";
203644
204121
  readonly BedrockPrompt: "AWS::Bedrock::Prompt";
203645
204122
  readonly BedrockPromptVersion: "AWS::Bedrock::PromptVersion";
204123
+ readonly BillingBillingView: "AWS::Billing::BillingView";
203646
204124
  readonly BillingConductorBillingGroup: "AWS::BillingConductor::BillingGroup";
203647
204125
  readonly BillingConductorCustomLineItem: "AWS::BillingConductor::CustomLineItem";
203648
204126
  readonly BillingConductorPricingPlan: "AWS::BillingConductor::PricingPlan";
@@ -204669,6 +205147,7 @@ export declare const ResourceType: {
204669
205147
  readonly S3TablesTable: "AWS::S3Tables::Table";
204670
205148
  readonly S3TablesTableBucket: "AWS::S3Tables::TableBucket";
204671
205149
  readonly S3TablesTableBucketPolicy: "AWS::S3Tables::TableBucketPolicy";
205150
+ readonly S3TablesTablePolicy: "AWS::S3Tables::TablePolicy";
204672
205151
  readonly SageMakerApp: "AWS::SageMaker::App";
204673
205152
  readonly SageMakerAppImageConfig: "AWS::SageMaker::AppImageConfig";
204674
205153
  readonly SageMakerCluster: "AWS::SageMaker::Cluster";