@awboost/cfntypes 0.100.13 → 0.100.15

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.
@@ -14418,6 +14418,11 @@ export type B2BICapabilityAttributes = {
14418
14418
  export type B2BICapabilityCapabilityConfiguration = {
14419
14419
  Edi: B2BICapabilityEdiConfiguration;
14420
14420
  };
14421
+ /**
14422
+ * Type definition for `AWS::B2BI::Capability.CapabilityDirection`.
14423
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-capability-capabilitydirection.html}
14424
+ */
14425
+ export type B2BICapabilityCapabilityDirection = "INBOUND" | "OUTBOUND";
14421
14426
  /**
14422
14427
  * Type definition for `AWS::B2BI::Capability.CapabilityType`.
14423
14428
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-capability-capabilitytype.html}
@@ -14428,6 +14433,7 @@ export type B2BICapabilityCapabilityType = "edi";
14428
14433
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-capability-ediconfiguration.html}
14429
14434
  */
14430
14435
  export type B2BICapabilityEdiConfiguration = {
14436
+ CapabilityDirection?: B2BICapabilityCapabilityDirection;
14431
14437
  InputLocation: B2BICapabilityS3Location;
14432
14438
  OutputLocation: B2BICapabilityS3Location;
14433
14439
  /**
@@ -14500,7 +14506,8 @@ export type B2BICapabilityX12Version = "VERSION_4010" | "VERSION_4030" | "VERSIO
14500
14506
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-b2bi-partnership.html}
14501
14507
  */
14502
14508
  export type B2BIPartnershipProps = {
14503
- Capabilities?: string[];
14509
+ Capabilities: string[];
14510
+ CapabilityOptions?: B2BIPartnershipCapabilityOptions;
14504
14511
  /**
14505
14512
  * @minLength `5`
14506
14513
  * @maxLength `254`
@@ -14555,6 +14562,20 @@ export type B2BIPartnershipAttributes = {
14555
14562
  */
14556
14563
  TradingPartnerId: string;
14557
14564
  };
14565
+ /**
14566
+ * Type definition for `AWS::B2BI::Partnership.CapabilityOptions`.
14567
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-partnership-capabilityoptions.html}
14568
+ */
14569
+ export type B2BIPartnershipCapabilityOptions = {
14570
+ OutboundEdi?: B2BIPartnershipOutboundEdiOptions;
14571
+ };
14572
+ /**
14573
+ * Type definition for `AWS::B2BI::Partnership.OutboundEdiOptions`.
14574
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-partnership-outboundedioptions.html}
14575
+ */
14576
+ export type B2BIPartnershipOutboundEdiOptions = {
14577
+ X12: B2BIPartnershipX12Envelope;
14578
+ };
14558
14579
  /**
14559
14580
  * Type definition for `AWS::B2BI::Partnership.Tag`.
14560
14581
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-partnership-tag.html}
@@ -14571,6 +14592,118 @@ export type B2BIPartnershipTag = {
14571
14592
  */
14572
14593
  Value: string;
14573
14594
  };
14595
+ /**
14596
+ * Type definition for `AWS::B2BI::Partnership.X12Delimiters`.
14597
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-partnership-x12delimiters.html}
14598
+ */
14599
+ export type B2BIPartnershipX12Delimiters = {
14600
+ /**
14601
+ * @minLength `1`
14602
+ * @maxLength `1`
14603
+ * @pattern `^[!&'()*+,\-./:;?=%@\[\]_{}|<>~^`"]$`
14604
+ */
14605
+ ComponentSeparator?: string;
14606
+ /**
14607
+ * @minLength `1`
14608
+ * @maxLength `1`
14609
+ * @pattern `^[!&'()*+,\-./:;?=%@\[\]_{}|<>~^`"]$`
14610
+ */
14611
+ DataElementSeparator?: string;
14612
+ /**
14613
+ * @minLength `1`
14614
+ * @maxLength `1`
14615
+ * @pattern `^[!&'()*+,\-./:;?=%@\[\]_{}|<>~^`"]$`
14616
+ */
14617
+ SegmentTerminator?: string;
14618
+ };
14619
+ /**
14620
+ * Type definition for `AWS::B2BI::Partnership.X12Envelope`.
14621
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-partnership-x12envelope.html}
14622
+ */
14623
+ export type B2BIPartnershipX12Envelope = {
14624
+ Common?: B2BIPartnershipX12OutboundEdiHeaders;
14625
+ };
14626
+ /**
14627
+ * Type definition for `AWS::B2BI::Partnership.X12FunctionalGroupHeaders`.
14628
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-partnership-x12functionalgroupheaders.html}
14629
+ */
14630
+ export type B2BIPartnershipX12FunctionalGroupHeaders = {
14631
+ /**
14632
+ * @minLength `2`
14633
+ * @maxLength `15`
14634
+ * @pattern `^[a-zA-Z0-9]*$`
14635
+ */
14636
+ ApplicationReceiverCode?: string;
14637
+ /**
14638
+ * @minLength `2`
14639
+ * @maxLength `15`
14640
+ * @pattern `^[a-zA-Z0-9]*$`
14641
+ */
14642
+ ApplicationSenderCode?: string;
14643
+ /**
14644
+ * @minLength `1`
14645
+ * @maxLength `2`
14646
+ * @pattern `^[a-zA-Z0-9]*$`
14647
+ */
14648
+ ResponsibleAgencyCode?: string;
14649
+ };
14650
+ /**
14651
+ * Type definition for `AWS::B2BI::Partnership.X12InterchangeControlHeaders`.
14652
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-partnership-x12interchangecontrolheaders.html}
14653
+ */
14654
+ export type B2BIPartnershipX12InterchangeControlHeaders = {
14655
+ /**
14656
+ * @minLength `1`
14657
+ * @maxLength `1`
14658
+ * @pattern `^[a-zA-Z0-9]*$`
14659
+ */
14660
+ AcknowledgmentRequestedCode?: string;
14661
+ /**
14662
+ * @minLength `15`
14663
+ * @maxLength `15`
14664
+ * @pattern `^[a-zA-Z0-9]*$`
14665
+ */
14666
+ ReceiverId?: string;
14667
+ /**
14668
+ * @minLength `2`
14669
+ * @maxLength `2`
14670
+ * @pattern `^[a-zA-Z0-9]*$`
14671
+ */
14672
+ ReceiverIdQualifier?: string;
14673
+ /**
14674
+ * @minLength `1`
14675
+ * @maxLength `1`
14676
+ */
14677
+ RepetitionSeparator?: string;
14678
+ /**
14679
+ * @minLength `15`
14680
+ * @maxLength `15`
14681
+ * @pattern `^[a-zA-Z0-9]*$`
14682
+ */
14683
+ SenderId?: string;
14684
+ /**
14685
+ * @minLength `2`
14686
+ * @maxLength `2`
14687
+ * @pattern `^[a-zA-Z0-9]*$`
14688
+ */
14689
+ SenderIdQualifier?: string;
14690
+ /**
14691
+ * @minLength `1`
14692
+ * @maxLength `1`
14693
+ * @pattern `^[a-zA-Z0-9]*$`
14694
+ */
14695
+ UsageIndicatorCode?: string;
14696
+ };
14697
+ /**
14698
+ * Type definition for `AWS::B2BI::Partnership.X12OutboundEdiHeaders`.
14699
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-partnership-x12outboundediheaders.html}
14700
+ */
14701
+ export type B2BIPartnershipX12OutboundEdiHeaders = {
14702
+ Delimiters?: B2BIPartnershipX12Delimiters;
14703
+ FunctionalGroupHeaders?: B2BIPartnershipX12FunctionalGroupHeaders;
14704
+ InterchangeControlHeaders?: B2BIPartnershipX12InterchangeControlHeaders;
14705
+ ValidateEdi?: boolean;
14706
+ };
14574
14707
  /**
14575
14708
  * Definition of AWS::B2BI::Profile Resource Type
14576
14709
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-b2bi-profile.html}
@@ -14655,23 +14788,30 @@ export type B2BIProfileTag = {
14655
14788
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-b2bi-transformer.html}
14656
14789
  */
14657
14790
  export type B2BITransformerProps = {
14658
- EdiType: B2BITransformerEdiType;
14659
- FileFormat: B2BITransformerFileFormat;
14791
+ EdiType?: B2BITransformerEdiType;
14792
+ FileFormat?: B2BITransformerFileFormat;
14793
+ InputConversion?: B2BITransformerInputConversion;
14794
+ Mapping?: B2BITransformerMapping;
14660
14795
  /**
14796
+ * This shape is deprecated: This is a legacy trait. Please use input-conversion or output-conversion.
14661
14797
  * @minLength `0`
14662
14798
  * @maxLength `350000`
14663
14799
  */
14664
- MappingTemplate: string;
14800
+ MappingTemplate?: string;
14665
14801
  /**
14666
14802
  * @minLength `1`
14667
14803
  * @maxLength `254`
14804
+ * @pattern `^[a-zA-Z0-9_-]{1,512}$`
14668
14805
  */
14669
14806
  Name: string;
14807
+ OutputConversion?: B2BITransformerOutputConversion;
14670
14808
  /**
14809
+ * This shape is deprecated: This is a legacy trait. Please use input-conversion or output-conversion.
14671
14810
  * @minLength `0`
14672
14811
  * @maxLength `1024`
14673
14812
  */
14674
14813
  SampleDocument?: string;
14814
+ SampleDocuments?: B2BITransformerSampleDocuments;
14675
14815
  Status: B2BITransformerTransformerStatus;
14676
14816
  /**
14677
14817
  * @minLength `0`
@@ -14709,7 +14849,80 @@ export type B2BITransformerEdiType = {
14709
14849
  * Type definition for `AWS::B2BI::Transformer.FileFormat`.
14710
14850
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-transformer-fileformat.html}
14711
14851
  */
14712
- export type B2BITransformerFileFormat = "XML" | "JSON";
14852
+ export type B2BITransformerFileFormat = "XML" | "JSON" | "NOT_USED";
14853
+ /**
14854
+ * Type definition for `AWS::B2BI::Transformer.FormatOptions`.
14855
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-transformer-formatoptions.html}
14856
+ */
14857
+ export type B2BITransformerFormatOptions = {
14858
+ X12: B2BITransformerX12Details;
14859
+ };
14860
+ /**
14861
+ * Type definition for `AWS::B2BI::Transformer.FromFormat`.
14862
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-transformer-fromformat.html}
14863
+ */
14864
+ export type B2BITransformerFromFormat = "X12";
14865
+ /**
14866
+ * Type definition for `AWS::B2BI::Transformer.InputConversion`.
14867
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-transformer-inputconversion.html}
14868
+ */
14869
+ export type B2BITransformerInputConversion = {
14870
+ FormatOptions?: B2BITransformerFormatOptions;
14871
+ FromFormat: B2BITransformerFromFormat;
14872
+ };
14873
+ /**
14874
+ * Type definition for `AWS::B2BI::Transformer.Mapping`.
14875
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-transformer-mapping.html}
14876
+ */
14877
+ export type B2BITransformerMapping = {
14878
+ /**
14879
+ * @minLength `0`
14880
+ * @maxLength `350000`
14881
+ */
14882
+ Template?: string;
14883
+ TemplateLanguage: B2BITransformerMappingTemplateLanguage;
14884
+ };
14885
+ /**
14886
+ * Type definition for `AWS::B2BI::Transformer.MappingTemplateLanguage`.
14887
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-transformer-mappingtemplatelanguage.html}
14888
+ */
14889
+ export type B2BITransformerMappingTemplateLanguage = "XSLT" | "JSONATA";
14890
+ /**
14891
+ * Type definition for `AWS::B2BI::Transformer.OutputConversion`.
14892
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-transformer-outputconversion.html}
14893
+ */
14894
+ export type B2BITransformerOutputConversion = {
14895
+ FormatOptions?: B2BITransformerFormatOptions;
14896
+ ToFormat: B2BITransformerToFormat;
14897
+ };
14898
+ /**
14899
+ * Type definition for `AWS::B2BI::Transformer.SampleDocumentKeys`.
14900
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-transformer-sampledocumentkeys.html}
14901
+ */
14902
+ export type B2BITransformerSampleDocumentKeys = {
14903
+ /**
14904
+ * @minLength `0`
14905
+ * @maxLength `1024`
14906
+ */
14907
+ Input?: string;
14908
+ /**
14909
+ * @minLength `0`
14910
+ * @maxLength `1024`
14911
+ */
14912
+ Output?: string;
14913
+ };
14914
+ /**
14915
+ * Type definition for `AWS::B2BI::Transformer.SampleDocuments`.
14916
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-transformer-sampledocuments.html}
14917
+ */
14918
+ export type B2BITransformerSampleDocuments = {
14919
+ /**
14920
+ * @minLength `3`
14921
+ * @maxLength `63`
14922
+ */
14923
+ BucketName: string;
14924
+ Keys: B2BITransformerSampleDocumentKeys[];
14925
+ };
14713
14926
  /**
14714
14927
  * Type definition for `AWS::B2BI::Transformer.Tag`.
14715
14928
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-transformer-tag.html}
@@ -14726,6 +14939,11 @@ export type B2BITransformerTag = {
14726
14939
  */
14727
14940
  Value: string;
14728
14941
  };
14942
+ /**
14943
+ * Type definition for `AWS::B2BI::Transformer.ToFormat`.
14944
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-transformer-toformat.html}
14945
+ */
14946
+ export type B2BITransformerToFormat = "X12";
14729
14947
  /**
14730
14948
  * Type definition for `AWS::B2BI::Transformer.TransformerStatus`.
14731
14949
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-transformer-transformerstatus.html}
@@ -22915,6 +23133,7 @@ export type Cloud9EnvironmentEC2Tag = {
22915
23133
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-customresource.html}
22916
23134
  */
22917
23135
  export type CloudFormationCustomResourceProps = {
23136
+ ServiceTimeout?: number;
22918
23137
  ServiceToken: string;
22919
23138
  };
22920
23139
  /**
@@ -57441,6 +57660,7 @@ export type EMRClusterInstanceFleetConfig = {
57441
57660
  InstanceTypeConfigs?: EMRClusterInstanceTypeConfig[];
57442
57661
  LaunchSpecifications?: EMRClusterInstanceFleetProvisioningSpecifications;
57443
57662
  Name?: string;
57663
+ ResizeSpecifications?: EMRClusterInstanceFleetResizingSpecifications;
57444
57664
  TargetOnDemandCapacity?: number;
57445
57665
  TargetSpotCapacity?: number;
57446
57666
  };
@@ -57452,6 +57672,14 @@ export type EMRClusterInstanceFleetProvisioningSpecifications = {
57452
57672
  OnDemandSpecification?: EMRClusterOnDemandProvisioningSpecification;
57453
57673
  SpotSpecification?: EMRClusterSpotProvisioningSpecification;
57454
57674
  };
57675
+ /**
57676
+ * Type definition for `AWS::EMR::Cluster.InstanceFleetResizingSpecifications`.
57677
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-cluster-instancefleetresizingspecifications.html}
57678
+ */
57679
+ export type EMRClusterInstanceFleetResizingSpecifications = {
57680
+ OnDemandResizeSpecification?: EMRClusterOnDemandResizingSpecification;
57681
+ SpotResizeSpecification?: EMRClusterSpotResizingSpecification;
57682
+ };
57455
57683
  /**
57456
57684
  * Type definition for `AWS::EMR::Cluster.InstanceGroupConfig`.
57457
57685
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-cluster-instancegroupconfig.html}
@@ -57478,6 +57706,7 @@ export type EMRClusterInstanceTypeConfig = {
57478
57706
  CustomAmiId?: string;
57479
57707
  EbsConfiguration?: EMRClusterEbsConfiguration;
57480
57708
  InstanceType: string;
57709
+ Priority?: number;
57481
57710
  WeightedCapacity?: number;
57482
57711
  };
57483
57712
  /**
@@ -57539,12 +57768,31 @@ export type EMRClusterMetricDimension = {
57539
57768
  Key: string;
57540
57769
  Value: string;
57541
57770
  };
57771
+ /**
57772
+ * Type definition for `AWS::EMR::Cluster.OnDemandCapacityReservationOptions`.
57773
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-cluster-ondemandcapacityreservationoptions.html}
57774
+ */
57775
+ export type EMRClusterOnDemandCapacityReservationOptions = {
57776
+ CapacityReservationPreference?: string;
57777
+ CapacityReservationResourceGroupArn?: string;
57778
+ UsageStrategy?: string;
57779
+ };
57542
57780
  /**
57543
57781
  * Type definition for `AWS::EMR::Cluster.OnDemandProvisioningSpecification`.
57544
57782
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-cluster-ondemandprovisioningspecification.html}
57545
57783
  */
57546
57784
  export type EMRClusterOnDemandProvisioningSpecification = {
57547
57785
  AllocationStrategy: string;
57786
+ CapacityReservationOptions?: EMRClusterOnDemandCapacityReservationOptions;
57787
+ };
57788
+ /**
57789
+ * Type definition for `AWS::EMR::Cluster.OnDemandResizingSpecification`.
57790
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-cluster-ondemandresizingspecification.html}
57791
+ */
57792
+ export type EMRClusterOnDemandResizingSpecification = {
57793
+ AllocationStrategy?: string;
57794
+ CapacityReservationOptions?: EMRClusterOnDemandCapacityReservationOptions;
57795
+ TimeoutDurationMinutes?: number;
57548
57796
  };
57549
57797
  /**
57550
57798
  * Type definition for `AWS::EMR::Cluster.PlacementGroupConfig`.
@@ -57621,6 +57869,14 @@ export type EMRClusterSpotProvisioningSpecification = {
57621
57869
  TimeoutAction: string;
57622
57870
  TimeoutDurationMinutes: number;
57623
57871
  };
57872
+ /**
57873
+ * Type definition for `AWS::EMR::Cluster.SpotResizingSpecification`.
57874
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-cluster-spotresizingspecification.html}
57875
+ */
57876
+ export type EMRClusterSpotResizingSpecification = {
57877
+ AllocationStrategy?: string;
57878
+ TimeoutDurationMinutes?: number;
57879
+ };
57624
57880
  /**
57625
57881
  * Type definition for `AWS::EMR::Cluster.StepConfig`.
57626
57882
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-cluster-stepconfig.html}
@@ -57658,6 +57914,7 @@ export type EMRInstanceFleetConfigProps = {
57658
57914
  InstanceTypeConfigs?: EMRInstanceFleetConfigInstanceTypeConfig[];
57659
57915
  LaunchSpecifications?: EMRInstanceFleetConfigInstanceFleetProvisioningSpecifications;
57660
57916
  Name?: string;
57917
+ ResizeSpecifications?: EMRInstanceFleetConfigInstanceFleetResizingSpecifications;
57661
57918
  TargetOnDemandCapacity?: number;
57662
57919
  TargetSpotCapacity?: number;
57663
57920
  };
@@ -57701,6 +57958,14 @@ export type EMRInstanceFleetConfigInstanceFleetProvisioningSpecifications = {
57701
57958
  OnDemandSpecification?: EMRInstanceFleetConfigOnDemandProvisioningSpecification;
57702
57959
  SpotSpecification?: EMRInstanceFleetConfigSpotProvisioningSpecification;
57703
57960
  };
57961
+ /**
57962
+ * Type definition for `AWS::EMR::InstanceFleetConfig.InstanceFleetResizingSpecifications`.
57963
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-instancefleetconfig-instancefleetresizingspecifications.html}
57964
+ */
57965
+ export type EMRInstanceFleetConfigInstanceFleetResizingSpecifications = {
57966
+ OnDemandResizeSpecification?: EMRInstanceFleetConfigOnDemandResizingSpecification;
57967
+ SpotResizeSpecification?: EMRInstanceFleetConfigSpotResizingSpecification;
57968
+ };
57704
57969
  /**
57705
57970
  * Type definition for `AWS::EMR::InstanceFleetConfig.InstanceTypeConfig`.
57706
57971
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-instancefleetconfig-instancetypeconfig.html}
@@ -57712,14 +57977,34 @@ export type EMRInstanceFleetConfigInstanceTypeConfig = {
57712
57977
  CustomAmiId?: string;
57713
57978
  EbsConfiguration?: EMRInstanceFleetConfigEbsConfiguration;
57714
57979
  InstanceType: string;
57980
+ Priority?: number;
57715
57981
  WeightedCapacity?: number;
57716
57982
  };
57983
+ /**
57984
+ * Type definition for `AWS::EMR::InstanceFleetConfig.OnDemandCapacityReservationOptions`.
57985
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-instancefleetconfig-ondemandcapacityreservationoptions.html}
57986
+ */
57987
+ export type EMRInstanceFleetConfigOnDemandCapacityReservationOptions = {
57988
+ CapacityReservationPreference?: string;
57989
+ CapacityReservationResourceGroupArn?: string;
57990
+ UsageStrategy?: string;
57991
+ };
57717
57992
  /**
57718
57993
  * Type definition for `AWS::EMR::InstanceFleetConfig.OnDemandProvisioningSpecification`.
57719
57994
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-instancefleetconfig-ondemandprovisioningspecification.html}
57720
57995
  */
57721
57996
  export type EMRInstanceFleetConfigOnDemandProvisioningSpecification = {
57722
57997
  AllocationStrategy: string;
57998
+ CapacityReservationOptions?: EMRInstanceFleetConfigOnDemandCapacityReservationOptions;
57999
+ };
58000
+ /**
58001
+ * Type definition for `AWS::EMR::InstanceFleetConfig.OnDemandResizingSpecification`.
58002
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-instancefleetconfig-ondemandresizingspecification.html}
58003
+ */
58004
+ export type EMRInstanceFleetConfigOnDemandResizingSpecification = {
58005
+ AllocationStrategy?: string;
58006
+ CapacityReservationOptions?: EMRInstanceFleetConfigOnDemandCapacityReservationOptions;
58007
+ TimeoutDurationMinutes?: number;
57723
58008
  };
57724
58009
  /**
57725
58010
  * Type definition for `AWS::EMR::InstanceFleetConfig.SpotProvisioningSpecification`.
@@ -57731,6 +58016,14 @@ export type EMRInstanceFleetConfigSpotProvisioningSpecification = {
57731
58016
  TimeoutAction: string;
57732
58017
  TimeoutDurationMinutes: number;
57733
58018
  };
58019
+ /**
58020
+ * Type definition for `AWS::EMR::InstanceFleetConfig.SpotResizingSpecification`.
58021
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-instancefleetconfig-spotresizingspecification.html}
58022
+ */
58023
+ export type EMRInstanceFleetConfigSpotResizingSpecification = {
58024
+ AllocationStrategy?: string;
58025
+ TimeoutDurationMinutes?: number;
58026
+ };
57734
58027
  /**
57735
58028
  * Type definition for `AWS::EMR::InstanceFleetConfig.VolumeSpecification`.
57736
58029
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-instancefleetconfig-volumespecification.html}
@@ -64907,137 +65200,300 @@ export type GlueConnectionPhysicalConnectionRequirements = {
64907
65200
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html}
64908
65201
  */
64909
65202
  export type GlueCrawlerProps = {
65203
+ /**
65204
+ * A list of UTF-8 strings that specify the names of custom classifiers that are associated with the crawler.
65205
+ */
64910
65206
  Classifiers?: string[];
65207
+ /**
65208
+ * Crawler configuration information. This versioned JSON string allows users to specify aspects of a crawler's behavior.
65209
+ */
64911
65210
  Configuration?: string;
65211
+ /**
65212
+ * The name of the SecurityConfiguration structure to be used by this crawler.
65213
+ */
64912
65214
  CrawlerSecurityConfiguration?: string;
65215
+ /**
65216
+ * The name of the database in which the crawler's output is stored.
65217
+ */
64913
65218
  DatabaseName?: string;
65219
+ /**
65220
+ * A description of the crawler.
65221
+ */
64914
65222
  Description?: string;
65223
+ /**
65224
+ * Specifies AWS Lake Formation configuration settings for the crawler
65225
+ */
64915
65226
  LakeFormationConfiguration?: GlueCrawlerLakeFormationConfiguration;
65227
+ /**
65228
+ * The name of the crawler.
65229
+ */
64916
65230
  Name?: string;
65231
+ /**
65232
+ * When crawling an Amazon S3 data source after the first crawl is complete, specifies whether to crawl the entire dataset again or to crawl only folders that were added since the last crawler run. For more information, see Incremental Crawls in AWS Glue in the developer guide.
65233
+ */
64917
65234
  RecrawlPolicy?: GlueCrawlerRecrawlPolicy;
65235
+ /**
65236
+ * The Amazon Resource Name (ARN) of an IAM role that's used to access customer resources, such as Amazon Simple Storage Service (Amazon S3) data.
65237
+ */
64918
65238
  Role: string;
65239
+ /**
65240
+ * A scheduling object using a cron statement to schedule an event.
65241
+ */
64919
65242
  Schedule?: GlueCrawlerSchedule;
65243
+ /**
65244
+ * The policy that specifies update and delete behaviors for the crawler. The policy tells the crawler what to do in the event that it detects a change in a table that already exists in the customer's database at the time of the crawl. The SchemaChangePolicy does not affect whether or how new tables and partitions are added. New tables and partitions are always created regardless of the SchemaChangePolicy on a crawler. The SchemaChangePolicy consists of two components, UpdateBehavior and DeleteBehavior.
65245
+ */
64920
65246
  SchemaChangePolicy?: GlueCrawlerSchemaChangePolicy;
65247
+ /**
65248
+ * The prefix added to the names of tables that are created.
65249
+ */
64921
65250
  TablePrefix?: string;
65251
+ /**
65252
+ * The tags to use with this crawler.
65253
+ */
64922
65254
  Tags?: Record<string, any>;
65255
+ /**
65256
+ * Specifies data stores to crawl.
65257
+ */
64923
65258
  Targets: GlueCrawlerTargets;
64924
65259
  };
64925
- /**
64926
- * Attribute type definition for `AWS::Glue::Crawler`.
64927
- * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-crawler.html#aws-resource-glue-crawler-return-values}
64928
- */
64929
- export type GlueCrawlerAttributes = {
64930
- Id: string;
64931
- };
64932
65260
  /**
64933
65261
  * Type definition for `AWS::Glue::Crawler.CatalogTarget`.
65262
+ * Specifies an AWS Glue Data Catalog target.
64934
65263
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-catalogtarget.html}
64935
65264
  */
64936
65265
  export type GlueCrawlerCatalogTarget = {
65266
+ /**
65267
+ * The name of the connection for an Amazon S3-backed Data Catalog table to be a target of the crawl when using a Catalog connection type paired with a NETWORK Connection type.
65268
+ */
64937
65269
  ConnectionName?: string;
65270
+ /**
65271
+ * The name of the database to be synchronized.
65272
+ */
64938
65273
  DatabaseName?: string;
65274
+ /**
65275
+ * A valid Amazon dead-letter SQS ARN. For example, arn:aws:sqs:region:account:deadLetterQueue.
65276
+ */
64939
65277
  DlqEventQueueArn?: string;
65278
+ /**
65279
+ * A valid Amazon SQS ARN. For example, arn:aws:sqs:region:account:sqs.
65280
+ */
64940
65281
  EventQueueArn?: string;
65282
+ /**
65283
+ * A list of the tables to be synchronized.
65284
+ */
64941
65285
  Tables?: string[];
64942
65286
  };
64943
65287
  /**
64944
65288
  * Type definition for `AWS::Glue::Crawler.DeltaTarget`.
65289
+ * Specifies a Delta data store to crawl one or more Delta tables.
64945
65290
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-deltatarget.html}
64946
65291
  */
64947
65292
  export type GlueCrawlerDeltaTarget = {
65293
+ /**
65294
+ * The name of the connection to use to connect to the Delta table target.
65295
+ */
64948
65296
  ConnectionName?: string;
65297
+ /**
65298
+ * Specifies whether the crawler will create native tables, to allow integration with query engines that support querying of the Delta transaction log directly.
65299
+ */
64949
65300
  CreateNativeDeltaTable?: boolean;
64950
65301
  DeltaTables?: string[];
65302
+ /**
65303
+ * Specifies whether to write the manifest files to the Delta table path.
65304
+ */
64951
65305
  WriteManifest?: boolean;
64952
65306
  };
64953
65307
  /**
64954
65308
  * Type definition for `AWS::Glue::Crawler.DynamoDBTarget`.
65309
+ * Specifies an Amazon DynamoDB table to crawl.
64955
65310
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-dynamodbtarget.html}
64956
65311
  */
64957
65312
  export type GlueCrawlerDynamoDBTarget = {
65313
+ /**
65314
+ * The name of the DynamoDB table to crawl.
65315
+ */
64958
65316
  Path?: string;
64959
65317
  };
64960
65318
  /**
64961
65319
  * Type definition for `AWS::Glue::Crawler.IcebergTarget`.
65320
+ * Specifies Apache Iceberg data store targets.
64962
65321
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-icebergtarget.html}
64963
65322
  */
64964
65323
  export type GlueCrawlerIcebergTarget = {
65324
+ /**
65325
+ * The name of the connection to use to connect to the Iceberg target.
65326
+ */
64965
65327
  ConnectionName?: string;
65328
+ /**
65329
+ * A list of global patterns used to exclude from the crawl.
65330
+ */
64966
65331
  Exclusions?: string[];
65332
+ /**
65333
+ * The maximum depth of Amazon S3 paths that the crawler can traverse to discover the Iceberg metadata folder in your Amazon S3 path. Used to limit the crawler run time.
65334
+ */
64967
65335
  MaximumTraversalDepth?: number;
65336
+ /**
65337
+ * One or more Amazon S3 paths that contains Iceberg metadata folders as s3://bucket/prefix .
65338
+ */
64968
65339
  Paths?: string[];
64969
65340
  };
64970
65341
  /**
64971
65342
  * Type definition for `AWS::Glue::Crawler.JdbcTarget`.
65343
+ * Specifies a JDBC data store to crawl.
64972
65344
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-jdbctarget.html}
64973
65345
  */
64974
65346
  export type GlueCrawlerJdbcTarget = {
65347
+ /**
65348
+ * The name of the connection to use to connect to the JDBC target.
65349
+ */
64975
65350
  ConnectionName?: string;
65351
+ /**
65352
+ * Specify a value of RAWTYPES or COMMENTS to enable additional metadata in table responses. RAWTYPES provides the native-level datatype. COMMENTS provides comments associated with a column or table in the database.
65353
+
65354
+ If you do not need additional metadata, keep the field empty.
65355
+ */
64976
65356
  EnableAdditionalMetadata?: string[];
65357
+ /**
65358
+ * A list of glob patterns used to exclude from the crawl. For more information, see Catalog Tables with a Crawler.
65359
+ */
64977
65360
  Exclusions?: string[];
65361
+ /**
65362
+ * The path of the JDBC target.
65363
+ */
64978
65364
  Path?: string;
64979
65365
  };
64980
65366
  /**
64981
65367
  * Type definition for `AWS::Glue::Crawler.LakeFormationConfiguration`.
65368
+ * Specifies AWS Lake Formation configuration settings for the crawler
64982
65369
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-lakeformationconfiguration.html}
64983
65370
  */
64984
65371
  export type GlueCrawlerLakeFormationConfiguration = {
65372
+ /**
65373
+ * Required for cross account crawls. For same account crawls as the target data, this can be left as null.
65374
+ */
64985
65375
  AccountId?: string;
65376
+ /**
65377
+ * Specifies whether to use AWS Lake Formation credentials for the crawler instead of the IAM role credentials.
65378
+ */
64986
65379
  UseLakeFormationCredentials?: boolean;
64987
65380
  };
64988
65381
  /**
64989
65382
  * Type definition for `AWS::Glue::Crawler.MongoDBTarget`.
65383
+ * Specifies an Amazon DocumentDB or MongoDB data store to crawl.
64990
65384
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-mongodbtarget.html}
64991
65385
  */
64992
65386
  export type GlueCrawlerMongoDBTarget = {
65387
+ /**
65388
+ * The name of the connection to use to connect to the Amazon DocumentDB or MongoDB target.
65389
+ */
64993
65390
  ConnectionName?: string;
65391
+ /**
65392
+ * The path of the Amazon DocumentDB or MongoDB target (database/collection).
65393
+ */
64994
65394
  Path?: string;
64995
65395
  };
64996
65396
  /**
64997
65397
  * Type definition for `AWS::Glue::Crawler.RecrawlPolicy`.
65398
+ * When crawling an Amazon S3 data source after the first crawl is complete, specifies whether to crawl the entire dataset again or to crawl only folders that were added since the last crawler run. For more information, see Incremental Crawls in AWS Glue in the developer guide.
64998
65399
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-recrawlpolicy.html}
64999
65400
  */
65000
65401
  export type GlueCrawlerRecrawlPolicy = {
65402
+ /**
65403
+ * Specifies whether to crawl the entire dataset again or to crawl only folders that were added since the last crawler run. A value of CRAWL_EVERYTHING specifies crawling the entire dataset again. A value of CRAWL_NEW_FOLDERS_ONLY specifies crawling only folders that were added since the last crawler run. A value of CRAWL_EVENT_MODE specifies crawling only the changes identified by Amazon S3 events.
65404
+ */
65001
65405
  RecrawlBehavior?: string;
65002
65406
  };
65003
65407
  /**
65004
65408
  * Type definition for `AWS::Glue::Crawler.S3Target`.
65409
+ * Specifies a data store in Amazon Simple Storage Service (Amazon S3).
65005
65410
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-s3target.html}
65006
65411
  */
65007
65412
  export type GlueCrawlerS3Target = {
65413
+ /**
65414
+ * The name of a connection which allows a job or crawler to access data in Amazon S3 within an Amazon Virtual Private Cloud environment (Amazon VPC).
65415
+ */
65008
65416
  ConnectionName?: string;
65417
+ /**
65418
+ * A valid Amazon dead-letter SQS ARN. For example, arn:aws:sqs:region:account:deadLetterQueue.
65419
+ */
65009
65420
  DlqEventQueueArn?: string;
65421
+ /**
65422
+ * A valid Amazon SQS ARN. For example, arn:aws:sqs:region:account:sqs.
65423
+ */
65010
65424
  EventQueueArn?: string;
65425
+ /**
65426
+ * A list of glob patterns used to exclude from the crawl.
65427
+ */
65011
65428
  Exclusions?: string[];
65429
+ /**
65430
+ * The path to the Amazon S3 target.
65431
+ */
65012
65432
  Path?: string;
65433
+ /**
65434
+ * Sets the number of files in each leaf folder to be crawled when crawling sample files in a dataset. If not set, all the files are crawled. A valid value is an integer between 1 and 249.
65435
+ */
65013
65436
  SampleSize?: number;
65014
65437
  };
65015
65438
  /**
65016
65439
  * Type definition for `AWS::Glue::Crawler.Schedule`.
65440
+ * A scheduling object using a cron statement to schedule an event.
65017
65441
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-schedule.html}
65018
65442
  */
65019
65443
  export type GlueCrawlerSchedule = {
65444
+ /**
65445
+ * A cron expression used to specify the schedule. For more information, see Time-Based Schedules for Jobs and Crawlers. For example, to run something every day at 12:15 UTC, specify cron(15 12 * * ? *).
65446
+ */
65020
65447
  ScheduleExpression?: string;
65021
65448
  };
65022
65449
  /**
65023
65450
  * Type definition for `AWS::Glue::Crawler.SchemaChangePolicy`.
65451
+ * The policy that specifies update and delete behaviors for the crawler. The policy tells the crawler what to do in the event that it detects a change in a table that already exists in the customer's database at the time of the crawl. The SchemaChangePolicy does not affect whether or how new tables and partitions are added. New tables and partitions are always created regardless of the SchemaChangePolicy on a crawler. The SchemaChangePolicy consists of two components, UpdateBehavior and DeleteBehavior.
65024
65452
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-schemachangepolicy.html}
65025
65453
  */
65026
65454
  export type GlueCrawlerSchemaChangePolicy = {
65455
+ /**
65456
+ * The deletion behavior when the crawler finds a deleted object. A value of LOG specifies that if a table or partition is found to no longer exist, do not delete it, only log that it was found to no longer exist. A value of DELETE_FROM_DATABASE specifies that if a table or partition is found to have been removed, delete it from the database. A value of DEPRECATE_IN_DATABASE specifies that if a table has been found to no longer exist, to add a property to the table that says 'DEPRECATED' and includes a timestamp with the time of deprecation.
65457
+ */
65027
65458
  DeleteBehavior?: string;
65459
+ /**
65460
+ * The update behavior when the crawler finds a changed schema. A value of LOG specifies that if a table or a partition already exists, and a change is detected, do not update it, only log that a change was detected. Add new tables and new partitions (including on existing tables). A value of UPDATE_IN_DATABASE specifies that if a table or partition already exists, and a change is detected, update it. Add new tables and partitions.
65461
+ */
65028
65462
  UpdateBehavior?: string;
65029
65463
  };
65030
65464
  /**
65031
65465
  * Type definition for `AWS::Glue::Crawler.Targets`.
65466
+ * Specifies data stores to crawl.
65032
65467
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-targets.html}
65033
65468
  */
65034
65469
  export type GlueCrawlerTargets = {
65470
+ /**
65471
+ * Specifies AWS Glue Data Catalog targets.
65472
+ */
65035
65473
  CatalogTargets?: GlueCrawlerCatalogTarget[];
65474
+ /**
65475
+ * Specifies an array of Delta data store targets.
65476
+ */
65036
65477
  DeltaTargets?: GlueCrawlerDeltaTarget[];
65478
+ /**
65479
+ * Specifies Amazon DynamoDB targets.
65480
+ */
65037
65481
  DynamoDBTargets?: GlueCrawlerDynamoDBTarget[];
65482
+ /**
65483
+ * Specifies Apache Iceberg data store targets.
65484
+ */
65038
65485
  IcebergTargets?: GlueCrawlerIcebergTarget[];
65486
+ /**
65487
+ * Specifies JDBC targets.
65488
+ */
65039
65489
  JdbcTargets?: GlueCrawlerJdbcTarget[];
65490
+ /**
65491
+ * A list of Mongo DB targets.
65492
+ */
65040
65493
  MongoDBTargets?: GlueCrawlerMongoDBTarget[];
65494
+ /**
65495
+ * Specifies Amazon Simple Storage Service (Amazon S3) targets.
65496
+ */
65041
65497
  S3Targets?: GlueCrawlerS3Target[];
65042
65498
  };
65043
65499
  /**
@@ -72120,7 +72576,10 @@ export type IoTDimensionTag = {
72120
72576
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-domainconfiguration.html}
72121
72577
  */
72122
72578
  export type IoTDomainConfigurationProps = {
72579
+ ApplicationProtocol?: "SECURE_MQTT" | "MQTT_WSS" | "HTTPS" | "DEFAULT";
72580
+ AuthenticationType?: "AWS_X509" | "CUSTOM_AUTH" | "AWS_SIGV4" | "CUSTOM_AUTH_X509" | "DEFAULT";
72123
72581
  AuthorizerConfig?: IoTDomainConfigurationAuthorizerConfig;
72582
+ ClientCertificateConfig?: IoTDomainConfigurationClientCertificateConfig;
72124
72583
  /**
72125
72584
  * @minLength `1`
72126
72585
  * @maxLength `128`
@@ -72178,6 +72637,17 @@ export type IoTDomainConfigurationAuthorizerConfig = {
72178
72637
  */
72179
72638
  DefaultAuthorizerName?: string;
72180
72639
  };
72640
+ /**
72641
+ * Type definition for `AWS::IoT::DomainConfiguration.ClientCertificateConfig`.
72642
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-domainconfiguration-clientcertificateconfig.html}
72643
+ */
72644
+ export type IoTDomainConfigurationClientCertificateConfig = {
72645
+ /**
72646
+ * @minLength `1`
72647
+ * @maxLength `170`
72648
+ */
72649
+ ClientCertificateCallbackArn?: string;
72650
+ };
72181
72651
  /**
72182
72652
  * Type definition for `AWS::IoT::DomainConfiguration.ServerCertificateConfig`.
72183
72653
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-domainconfiguration-servercertificateconfig.html}
@@ -148017,6 +148487,7 @@ export type S3BucketLifecycleConfiguration = {
148017
148487
  * A lifecycle rule for individual objects in an Amazon S3 bucket.
148018
148488
  */
148019
148489
  Rules: S3BucketRule[];
148490
+ TransitionDefaultMinimumObjectSize?: "varies_by_storage_class" | "all_storage_classes_128K";
148020
148491
  };
148021
148492
  /**
148022
148493
  * Type definition for `AWS::S3::Bucket.LoggingConfiguration`.
@@ -149489,7 +149960,10 @@ export type S3ExpressBucketPolicyProps = {
149489
149960
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3express-directorybucket.html}
149490
149961
  */
149491
149962
  export type S3ExpressDirectoryBucketProps = {
149492
- BucketEncryption?: any;
149963
+ /**
149964
+ * Specifies default encryption for a bucket using server-side encryption with Amazon S3 managed keys (SSE-S3) or AWS KMS keys (SSE-KMS).
149965
+ */
149966
+ BucketEncryption?: S3ExpressDirectoryBucketBucketEncryption;
149493
149967
  /**
149494
149968
  * Specifies a name for the bucket. The bucket name must contain only lowercase letters, numbers, and hyphens (-). A directory bucket name must be unique in the chosen Availability Zone. The bucket name must also follow the format 'bucket_base_name--az_id--x-s3' (for example, 'DOC-EXAMPLE-BUCKET--usw2-az1--x-s3'). If you don't specify a name, AWS CloudFormation generates a unique physical ID and uses that ID for the bucket name.
149495
149969
  * @maxLength `63`
@@ -149519,6 +149993,44 @@ export type S3ExpressDirectoryBucketAttributes = {
149519
149993
  */
149520
149994
  AvailabilityZoneName: string;
149521
149995
  };
149996
+ /**
149997
+ * Type definition for `AWS::S3Express::DirectoryBucket.BucketEncryption`.
149998
+ * Specifies default encryption for a bucket using server-side encryption with Amazon S3 managed keys (SSE-S3) or AWS KMS keys (SSE-KMS).
149999
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3express-directorybucket-bucketencryption.html}
150000
+ */
150001
+ export type S3ExpressDirectoryBucketBucketEncryption = {
150002
+ /**
150003
+ * Specifies the default server-side-encryption configuration.
150004
+ */
150005
+ ServerSideEncryptionConfiguration: S3ExpressDirectoryBucketServerSideEncryptionRule[];
150006
+ };
150007
+ /**
150008
+ * Type definition for `AWS::S3Express::DirectoryBucket.ServerSideEncryptionByDefault`.
150009
+ * Specifies 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.
150010
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3express-directorybucket-serversideencryptionbydefault.html}
150011
+ */
150012
+ export type S3ExpressDirectoryBucketServerSideEncryptionByDefault = {
150013
+ /**
150014
+ * AWS Key Management Service (KMS) customer managed key ID to use for the default encryption. This parameter is allowed only if SSEAlgorithm is set to aws:kms. You can specify this parameter with the key ID or the Amazon Resource Name (ARN) of the KMS key
150015
+ */
150016
+ KMSMasterKeyID?: string;
150017
+ SSEAlgorithm: "aws:kms" | "AES256";
150018
+ };
150019
+ /**
150020
+ * Type definition for `AWS::S3Express::DirectoryBucket.ServerSideEncryptionRule`.
150021
+ * Specifies the default server-side encryption configuration.
150022
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3express-directorybucket-serversideencryptionrule.html}
150023
+ */
150024
+ export type S3ExpressDirectoryBucketServerSideEncryptionRule = {
150025
+ /**
150026
+ * Specifies whether Amazon S3 should use an S3 Bucket Key with server-side encryption using KMS (SSE-KMS) for new objects in the bucket. Existing objects are not affected. Amazon S3 Express One Zone uses an S3 Bucket Key with SSE-KMS and S3 Bucket Key cannot be disabled. It's only allowed to set the BucketKeyEnabled element to true.
150027
+ */
150028
+ BucketKeyEnabled?: boolean;
150029
+ /**
150030
+ * Specifies 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.
150031
+ */
150032
+ ServerSideEncryptionByDefault?: S3ExpressDirectoryBucketServerSideEncryptionByDefault;
150033
+ };
149522
150034
  /**
149523
150035
  * The AWS::S3ObjectLambda::AccessPoint resource is an Amazon S3ObjectLambda resource type that you can use to add computation to S3 actions
149524
150036
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3objectlambda-accesspoint.html}
@@ -176489,7 +177001,6 @@ export interface AttributeTypes {
176489
177001
  "AWS::GlobalAccelerator::Listener": GlobalAcceleratorListenerAttributes;
176490
177002
  "AWS::Glue::Classifier": GlueClassifierAttributes;
176491
177003
  "AWS::Glue::Connection": GlueConnectionAttributes;
176492
- "AWS::Glue::Crawler": GlueCrawlerAttributes;
176493
177004
  "AWS::Glue::CustomEntityType": GlueCustomEntityTypeAttributes;
176494
177005
  "AWS::Glue::DataCatalogEncryptionSettings": GlueDataCatalogEncryptionSettingsAttributes;
176495
177006
  "AWS::Glue::DataQualityRuleset": GlueDataQualityRulesetAttributes;