@awboost/cfntypes 0.100.338 → 0.100.340

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.
@@ -14762,6 +14762,44 @@ export type AthenaWorkGroupAclConfiguration = {
14762
14762
  */
14763
14763
  S3AclOption: AthenaWorkGroupS3AclOption;
14764
14764
  };
14765
+ /**
14766
+ * Type definition for `AWS::Athena::WorkGroup.Classification`.
14767
+ * A classification refers to a set of specific configurations.
14768
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-classification.html}
14769
+ */
14770
+ export type AthenaWorkGroupClassification = {
14771
+ /**
14772
+ * The name of the configuration classification.
14773
+ */
14774
+ Name?: string;
14775
+ /**
14776
+ * A set of properties specified within a configuration classification.
14777
+ */
14778
+ Properties?: Record<string, string>;
14779
+ };
14780
+ /**
14781
+ * Type definition for `AWS::Athena::WorkGroup.CloudWatchLoggingConfiguration`.
14782
+ * Configuration settings for delivering logs to Amazon CloudWatch log groups.
14783
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-cloudwatchloggingconfiguration.html}
14784
+ */
14785
+ export type AthenaWorkGroupCloudWatchLoggingConfiguration = {
14786
+ /**
14787
+ * Enables CloudWatch logging.
14788
+ */
14789
+ Enabled?: boolean;
14790
+ /**
14791
+ * The name of the log group in Amazon CloudWatch Logs where you want to publish your logs.
14792
+ */
14793
+ LogGroup?: string;
14794
+ /**
14795
+ * Prefix for the CloudWatch log stream name.
14796
+ */
14797
+ LogStreamNamePrefix?: string;
14798
+ /**
14799
+ * The types of logs that you want to publish to CloudWatch.
14800
+ */
14801
+ LogTypes?: Record<string, string[]>;
14802
+ };
14765
14803
  /**
14766
14804
  * Type definition for `AWS::Athena::WorkGroup.CustomerContentEncryptionConfiguration`.
14767
14805
  * Indicates the KMS key for encrypting notebook content.
@@ -14794,6 +14832,37 @@ export type AthenaWorkGroupEncryptionConfiguration = {
14794
14832
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-encryptionoption.html}
14795
14833
  */
14796
14834
  export type AthenaWorkGroupEncryptionOption = "SSE_S3" | "SSE_KMS" | "CSE_KMS";
14835
+ /**
14836
+ * Type definition for `AWS::Athena::WorkGroup.EngineConfiguration`.
14837
+ * The engine configuration for running queries.
14838
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-engineconfiguration.html}
14839
+ */
14840
+ export type AthenaWorkGroupEngineConfiguration = {
14841
+ /**
14842
+ * Contains additional notebook engine MAP<string, string> parameter mappings in the form of key-value pairs. To specify an Athena notebook that the Jupyter server will download and serve, specify a value for the StartSessionRequest$NotebookVersion field, and then add a key named NotebookId to AdditionalConfigs that has the value of the Athena notebook ID.
14843
+ */
14844
+ AdditionalConfigs?: Record<string, string>;
14845
+ /**
14846
+ * The configuration classifications that can be specified for the engine.
14847
+ */
14848
+ Classifications?: AthenaWorkGroupClassification[];
14849
+ /**
14850
+ * The number of DPUs to use for the coordinator. A coordinator is a special executor that orchestrates processing work and manages other executors in a notebook session. The default is 1.
14851
+ */
14852
+ CoordinatorDpuSize?: number;
14853
+ /**
14854
+ * The default number of DPUs to use for executors. An executor is the smallest unit of compute that a notebook session can request from Athena. The default is 1.
14855
+ */
14856
+ DefaultExecutorDpuSize?: number;
14857
+ /**
14858
+ * The maximum number of DPUs that can run concurrently.
14859
+ */
14860
+ MaxConcurrentDpus?: number;
14861
+ /**
14862
+ * Specifies custom jar files and Spark properties for use cases like cluster encryption, table formats, and general Spark tuning.
14863
+ */
14864
+ SparkProperties?: Record<string, string>;
14865
+ };
14797
14866
  /**
14798
14867
  * Type definition for `AWS::Athena::WorkGroup.EngineVersion`.
14799
14868
  * The Athena engine version for running queries.
@@ -14805,6 +14874,21 @@ export type AthenaWorkGroupEngineVersion = {
14805
14874
  */
14806
14875
  SelectedEngineVersion?: string;
14807
14876
  };
14877
+ /**
14878
+ * Type definition for `AWS::Athena::WorkGroup.ManagedLoggingConfiguration`.
14879
+ * Configuration settings for managed log persistence.
14880
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-managedloggingconfiguration.html}
14881
+ */
14882
+ export type AthenaWorkGroupManagedLoggingConfiguration = {
14883
+ /**
14884
+ * Enables managed log persistence.
14885
+ */
14886
+ Enabled?: boolean;
14887
+ /**
14888
+ * The KMS key ARN to encrypt the logs stored in managed log persistence.
14889
+ */
14890
+ KmsKey?: string;
14891
+ };
14808
14892
  /**
14809
14893
  * Type definition for `AWS::Athena::WorkGroup.ManagedQueryResultsConfiguration`.
14810
14894
  * The configuration for the managed query results and encryption option. ResultConfiguration and ManagedQueryResultsConfiguration cannot be set at the same time
@@ -14828,6 +14912,25 @@ export type AthenaWorkGroupManagedStorageEncryptionConfiguration = {
14828
14912
  */
14829
14913
  KmsKey?: string;
14830
14914
  };
14915
+ /**
14916
+ * Type definition for `AWS::Athena::WorkGroup.MonitoringConfiguration`.
14917
+ * Contains the configuration settings for managed log persistence, delivering logs to Amazon S3 buckets, Amazon CloudWatch log groups etc.
14918
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-monitoringconfiguration.html}
14919
+ */
14920
+ export type AthenaWorkGroupMonitoringConfiguration = {
14921
+ /**
14922
+ * Configuration settings for delivering logs to Amazon CloudWatch log groups.
14923
+ */
14924
+ CloudWatchLoggingConfiguration?: AthenaWorkGroupCloudWatchLoggingConfiguration;
14925
+ /**
14926
+ * Configuration settings for managed log persistence.
14927
+ */
14928
+ ManagedLoggingConfiguration?: AthenaWorkGroupManagedLoggingConfiguration;
14929
+ /**
14930
+ * Configuration settings for delivering logs to Amazon S3 buckets.
14931
+ */
14932
+ S3LoggingConfiguration?: AthenaWorkGroupS3LoggingConfiguration;
14933
+ };
14831
14934
  /**
14832
14935
  * Type definition for `AWS::Athena::WorkGroup.ResultConfiguration`.
14833
14936
  * The location in Amazon S3 where query results are stored and the encryption option, if any, used for query results. These are known as "client-side settings". If workgroup settings override client-side settings, then the query uses the workgroup settings.
@@ -14885,6 +14988,25 @@ export type AthenaWorkGroupResultConfigurationUpdates = {
14885
14988
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-s3acloption.html}
14886
14989
  */
14887
14990
  export type AthenaWorkGroupS3AclOption = "BUCKET_OWNER_FULL_CONTROL";
14991
+ /**
14992
+ * Type definition for `AWS::Athena::WorkGroup.S3LoggingConfiguration`.
14993
+ * Configuration settings for delivering logs to Amazon S3 buckets.
14994
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-s3loggingconfiguration.html}
14995
+ */
14996
+ export type AthenaWorkGroupS3LoggingConfiguration = {
14997
+ /**
14998
+ * Enables S3 log delivery.
14999
+ */
15000
+ Enabled?: boolean;
15001
+ /**
15002
+ * The KMS key ARN to encrypt the logs published to the given Amazon S3 destination.
15003
+ */
15004
+ KmsKey?: string;
15005
+ /**
15006
+ * The Amazon S3 destination URI for log publishing.
15007
+ */
15008
+ LogLocation?: string;
15009
+ };
14888
15010
  /**
14889
15011
  * Type definition for `AWS::Athena::WorkGroup.Tag`.
14890
15012
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-tag.html}
@@ -14923,18 +15045,26 @@ export type AthenaWorkGroupWorkGroupConfiguration = {
14923
15045
  * If set to "true", the settings for the workgroup override client-side settings. If set to "false", client-side settings are used
14924
15046
  */
14925
15047
  EnforceWorkGroupConfiguration?: boolean;
15048
+ /**
15049
+ * The engine configuration for running queries.
15050
+ */
15051
+ EngineConfiguration?: AthenaWorkGroupEngineConfiguration;
14926
15052
  /**
14927
15053
  * The Athena engine version for running queries.
14928
15054
  */
14929
15055
  EngineVersion?: AthenaWorkGroupEngineVersion;
14930
15056
  /**
14931
- * Execution Role ARN required to run Athena Spark Calculations
15057
+ * The ARN of the execution role used to access user resources for Spark sessions and Identity Center enabled workgroups. This property applies only to Spark enabled workgroups and Identity Center enabled workgroups.
14932
15058
  */
14933
15059
  ExecutionRole?: string;
14934
15060
  /**
14935
15061
  * The configuration for the managed query results and encryption option. ResultConfiguration and ManagedQueryResultsConfiguration cannot be set at the same time
14936
15062
  */
14937
15063
  ManagedQueryResultsConfiguration?: AthenaWorkGroupManagedQueryResultsConfiguration;
15064
+ /**
15065
+ * Contains the configuration settings for managed log persistence, delivering logs to Amazon S3 buckets, Amazon CloudWatch log groups etc.
15066
+ */
15067
+ MonitoringConfiguration?: AthenaWorkGroupMonitoringConfiguration;
14938
15068
  /**
14939
15069
  * Indicates that the Amazon CloudWatch metrics are enabled for the workgroup.
14940
15070
  */
@@ -14972,18 +15102,26 @@ export type AthenaWorkGroupWorkGroupConfigurationUpdates = {
14972
15102
  * If set to "true", the settings for the workgroup override client-side settings. If set to "false", client-side settings are used
14973
15103
  */
14974
15104
  EnforceWorkGroupConfiguration?: boolean;
15105
+ /**
15106
+ * The engine configuration for running queries.
15107
+ */
15108
+ EngineConfiguration?: AthenaWorkGroupEngineConfiguration;
14975
15109
  /**
14976
15110
  * The Athena engine version for running queries.
14977
15111
  */
14978
15112
  EngineVersion?: AthenaWorkGroupEngineVersion;
14979
15113
  /**
14980
- * Execution Role ARN required to run Athena Spark Calculations
15114
+ * The ARN of the execution role used to access user resources for Spark sessions and Identity Center enabled workgroups. This property applies only to Spark enabled workgroups and Identity Center enabled workgroups.
14981
15115
  */
14982
15116
  ExecutionRole?: string;
14983
15117
  /**
14984
15118
  * The configuration for the managed query results and encryption option. ResultConfiguration and ManagedQueryResultsConfiguration cannot be set at the same time
14985
15119
  */
14986
15120
  ManagedQueryResultsConfiguration?: AthenaWorkGroupManagedQueryResultsConfiguration;
15121
+ /**
15122
+ * Contains the configuration settings for managed log persistence, delivering logs to Amazon S3 buckets, Amazon CloudWatch log groups etc.
15123
+ */
15124
+ MonitoringConfiguration?: AthenaWorkGroupMonitoringConfiguration;
14987
15125
  /**
14988
15126
  * Indicates that the Amazon CloudWatch metrics are enabled for the workgroup.
14989
15127
  */
@@ -24638,7 +24776,7 @@ export type BedrockKnowledgeBaseKnowledgeBaseStatus = "CREATING" | "ACTIVE" | "D
24638
24776
  * The storage type of a knowledge base.
24639
24777
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-knowledgebasestoragetype.html}
24640
24778
  */
24641
- export type BedrockKnowledgeBaseKnowledgeBaseStorageType = "OPENSEARCH_SERVERLESS" | "PINECONE" | "RDS" | "MONGO_DB_ATLAS" | "NEPTUNE_ANALYTICS" | "OPENSEARCH_MANAGED_CLUSTER";
24779
+ export type BedrockKnowledgeBaseKnowledgeBaseStorageType = "OPENSEARCH_SERVERLESS" | "PINECONE" | "RDS" | "MONGO_DB_ATLAS" | "NEPTUNE_ANALYTICS" | "S3_VECTORS" | "OPENSEARCH_MANAGED_CLUSTER";
24642
24780
  /**
24643
24781
  * Type definition for `AWS::Bedrock::KnowledgeBase.KnowledgeBaseType`.
24644
24782
  * The type of a knowledge base.
@@ -25260,6 +25398,27 @@ export type BedrockKnowledgeBaseS3Location = {
25260
25398
  */
25261
25399
  URI: string;
25262
25400
  };
25401
+ /**
25402
+ * Type definition for `AWS::Bedrock::KnowledgeBase.S3VectorsConfiguration`.
25403
+ * Contains the storage configuration of the knowledge base for S3 vectors.
25404
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-s3vectorsconfiguration.html}
25405
+ */
25406
+ export type BedrockKnowledgeBaseS3VectorsConfiguration = {
25407
+ /**
25408
+ * The Amazon Resource Name (ARN) of the vector index used for the knowledge base. This ARN identifies the specific vector index resource within Amazon Bedrock.
25409
+ */
25410
+ IndexArn?: string;
25411
+ /**
25412
+ * The name of the vector index used for the knowledge base. This name identifies the vector index within the Amazon Bedrock service.
25413
+ * @minLength `3`
25414
+ * @maxLength `63`
25415
+ */
25416
+ IndexName?: string;
25417
+ /**
25418
+ * The Amazon Resource Name (ARN) of the S3 bucket where vector embeddings are stored. This bucket contains the vector data used by the knowledge base.
25419
+ */
25420
+ VectorBucketArn?: string;
25421
+ };
25263
25422
  /**
25264
25423
  * Type definition for `AWS::Bedrock::KnowledgeBase.SqlKnowledgeBaseConfiguration`.
25265
25424
  * Configurations for a SQL knowledge base
@@ -25305,6 +25464,10 @@ export type BedrockKnowledgeBaseStorageConfiguration = {
25305
25464
  * Contains details about the storage configuration of the knowledge base in Amazon RDS. For more information, see Create a vector index in Amazon RDS.
25306
25465
  */
25307
25466
  RdsConfiguration?: BedrockKnowledgeBaseRdsConfiguration;
25467
+ /**
25468
+ * Contains the storage configuration of the knowledge base for S3 vectors.
25469
+ */
25470
+ S3VectorsConfiguration?: BedrockKnowledgeBaseS3VectorsConfiguration;
25308
25471
  /**
25309
25472
  * The storage type of a knowledge base.
25310
25473
  */
@@ -28899,6 +29062,10 @@ export type CassandraTableProps = {
28899
29062
  * @maxLength `50`
28900
29063
  */
28901
29064
  Tags?: CassandraTableTag[];
29065
+ /**
29066
+ * Warm throughput configuration for the table
29067
+ */
29068
+ WarmThroughput?: CassandraTableWarmThroughput;
28902
29069
  };
28903
29070
  /**
28904
29071
  * Type definition for `AWS::Cassandra::Table.AutoScalingSetting`.
@@ -29099,6 +29266,21 @@ export type CassandraTableTargetTrackingScalingPolicyConfiguration = {
29099
29266
  ScaleOutCooldown?: number;
29100
29267
  TargetValue: number;
29101
29268
  };
29269
+ /**
29270
+ * Type definition for `AWS::Cassandra::Table.WarmThroughput`.
29271
+ * Warm throughput configuration for the table
29272
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cassandra-table-warmthroughput.html}
29273
+ */
29274
+ export type CassandraTableWarmThroughput = {
29275
+ /**
29276
+ * @min `1`
29277
+ */
29278
+ ReadUnitsPerSecond?: number;
29279
+ /**
29280
+ * @min `1`
29281
+ */
29282
+ WriteUnitsPerSecond?: number;
29283
+ };
29102
29284
  /**
29103
29285
  * Resource schema for AWS::Cassandra::Type
29104
29286
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cassandra-type.html}
@@ -32364,6 +32546,10 @@ export type CloudFormationStackSetAttributes = {
32364
32546
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudformation-stackset-autodeployment.html}
32365
32547
  */
32366
32548
  export type CloudFormationStackSetAutoDeployment = {
32549
+ /**
32550
+ * A list of StackSet ARNs that this StackSet depends on for auto-deployment operations. When auto-deployment is triggered, operations will be sequenced to ensure all dependencies complete successfully before this StackSet's operation begins.
32551
+ */
32552
+ DependsOn?: string[];
32367
32553
  /**
32368
32554
  * If set to true, StackSets automatically deploys additional stack instances to AWS Organizations accounts that are added to a target organization or organizational unit (OU) in the specified Regions. If an account is removed from a target organization or OU, StackSets deletes stack instances from the account in the specified Regions.
32369
32555
  */
@@ -33389,6 +33575,13 @@ export type CloudFrontDistributionCacheBehavior = {
33389
33575
  */
33390
33576
  ViewerProtocolPolicy: string;
33391
33577
  };
33578
+ /**
33579
+ * Type definition for `AWS::CloudFront::Distribution.ConnectionFunctionAssociation`.
33580
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-connectionfunctionassociation.html}
33581
+ */
33582
+ export type CloudFrontDistributionConnectionFunctionAssociation = {
33583
+ Id: string;
33584
+ };
33392
33585
  /**
33393
33586
  * Type definition for `AWS::CloudFront::Distribution.ConnectionMode`.
33394
33587
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-connectionmode.html}
@@ -33649,6 +33842,7 @@ export type CloudFrontDistributionDistributionConfig = {
33649
33842
  * A comment to describe the distribution. The comment cannot be longer than 128 characters.
33650
33843
  */
33651
33844
  Comment?: string;
33845
+ ConnectionFunctionAssociation?: CloudFrontDistributionConnectionFunctionAssociation;
33652
33846
  /**
33653
33847
  * This field specifies whether the connection mode is through a standard distribution (direct) or a multi-tenant distribution with distribution tenants (tenant-only).
33654
33848
  */
@@ -33753,6 +33947,7 @@ export type CloudFrontDistributionDistributionConfig = {
33753
33947
  * A complex type that determines the distribution's SSL/TLS configuration for communicating with viewers.
33754
33948
  */
33755
33949
  ViewerCertificate?: CloudFrontDistributionViewerCertificate;
33950
+ ViewerMtlsConfig?: CloudFrontDistributionViewerMtlsConfig;
33756
33951
  /**
33757
33952
  * Multi-tenant distributions only support WAF V2 web ACLs.
33758
33953
  A unique identifier that specifies the WAF web ACL, if any, to associate with this distribution. To specify a web ACL created using the latest version of WAF, use the ACL ARN, for example ``arn:aws:wafv2:us-east-1:123456789012:global/webacl/ExampleWebACL/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111``. To specify a web ACL created using WAF Classic, use the ACL ID, for example ``a1b2c3d4-5678-90ab-cdef-EXAMPLE11111``.
@@ -34222,6 +34417,15 @@ export type CloudFrontDistributionTag = {
34222
34417
  */
34223
34418
  Value: string;
34224
34419
  };
34420
+ /**
34421
+ * Type definition for `AWS::CloudFront::Distribution.TrustStoreConfig`.
34422
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-truststoreconfig.html}
34423
+ */
34424
+ export type CloudFrontDistributionTrustStoreConfig = {
34425
+ AdvertiseTrustStoreCaNames?: boolean;
34426
+ IgnoreCertificateExpiry?: boolean;
34427
+ TrustStoreId: string;
34428
+ };
34225
34429
  /**
34226
34430
  * Type definition for `AWS::CloudFront::Distribution.ViewerCertificate`.
34227
34431
  * A complex type that determines the distribution's SSL/TLS configuration for communicating with viewers.
@@ -34285,6 +34489,19 @@ export type CloudFrontDistributionViewerCertificate = {
34285
34489
  */
34286
34490
  SslSupportMethod?: string;
34287
34491
  };
34492
+ /**
34493
+ * Type definition for `AWS::CloudFront::Distribution.ViewerMtlsConfig`.
34494
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-viewermtlsconfig.html}
34495
+ */
34496
+ export type CloudFrontDistributionViewerMtlsConfig = {
34497
+ Mode?: CloudFrontDistributionViewerMtlsMode;
34498
+ TrustStoreConfig?: CloudFrontDistributionTrustStoreConfig;
34499
+ };
34500
+ /**
34501
+ * Type definition for `AWS::CloudFront::Distribution.ViewerMtlsMode`.
34502
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-viewermtlsmode.html}
34503
+ */
34504
+ export type CloudFrontDistributionViewerMtlsMode = "required" | "optional";
34288
34505
  /**
34289
34506
  * Type definition for `AWS::CloudFront::Distribution.VpcOriginConfig`.
34290
34507
  * An Amazon CloudFront VPC origin configuration.
@@ -35426,6 +35643,96 @@ export type CloudFrontStreamingDistributionTrustedSigners = {
35426
35643
  AwsAccountNumbers?: string[];
35427
35644
  Enabled: boolean;
35428
35645
  };
35646
+ /**
35647
+ * Resource Type definition for AWS::CloudFront::TrustStore. TrustStores contain CA certificates for mTLS authentication and can be associated with CloudFront distributions.
35648
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-truststore.html}
35649
+ */
35650
+ export type CloudFrontTrustStoreProps = {
35651
+ CaCertificatesBundleSource?: CloudFrontTrustStoreCaCertificatesBundleSource;
35652
+ /**
35653
+ * A unique name to identify the trust store
35654
+ */
35655
+ Name: string;
35656
+ /**
35657
+ * Key-value pairs for resource tagging
35658
+ */
35659
+ Tags?: CloudFrontTrustStoreTag[];
35660
+ };
35661
+ /**
35662
+ * Attribute type definition for `AWS::CloudFront::TrustStore`.
35663
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudfront-truststore.html#aws-resource-cloudfront-truststore-return-values}
35664
+ */
35665
+ export type CloudFrontTrustStoreAttributes = {
35666
+ /**
35667
+ * The Amazon Resource Name (ARN) of the trust store
35668
+ * @pattern `^arn:aws:cloudfront::[0-9]{12}:trust-store/[A-Za-z0-9_]+$`
35669
+ */
35670
+ Arn: string;
35671
+ ETag: string;
35672
+ /**
35673
+ * The unique identifier for the trust store
35674
+ */
35675
+ Id: string;
35676
+ /**
35677
+ * The last modification timestamp of the trust store PEM file
35678
+ */
35679
+ LastModifiedTime: string;
35680
+ /**
35681
+ * The number of CA certificates in the trust store PEM file
35682
+ */
35683
+ NumberOfCaCertificates: number;
35684
+ /**
35685
+ * Current status of the trust store
35686
+ */
35687
+ Status: "PENDING" | "ACTIVE" | "FAILED";
35688
+ };
35689
+ /**
35690
+ * Type definition for `AWS::CloudFront::TrustStore.CaCertificatesBundleS3Location`.
35691
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-truststore-cacertificatesbundles3location.html}
35692
+ */
35693
+ export type CloudFrontTrustStoreCaCertificatesBundleS3Location = {
35694
+ /**
35695
+ * The S3 bucket containing the CA certificates bundle PEM file
35696
+ */
35697
+ Bucket: string;
35698
+ /**
35699
+ * The S3 object key of the CA certificates bundle PEM file
35700
+ */
35701
+ Key: string;
35702
+ /**
35703
+ * The S3 bucket region
35704
+ */
35705
+ Region: string;
35706
+ /**
35707
+ * The S3 object version of the CA certificates bundle PEM file
35708
+ */
35709
+ Version?: string;
35710
+ };
35711
+ /**
35712
+ * Type definition for `AWS::CloudFront::TrustStore.CaCertificatesBundleSource`.
35713
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-truststore-cacertificatesbundlesource.html}
35714
+ */
35715
+ export type CloudFrontTrustStoreCaCertificatesBundleSource = {
35716
+ CaCertificatesBundleS3Location: CloudFrontTrustStoreCaCertificatesBundleS3Location;
35717
+ };
35718
+ /**
35719
+ * Type definition for `AWS::CloudFront::TrustStore.Tag`.
35720
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-truststore-tag.html}
35721
+ */
35722
+ export type CloudFrontTrustStoreTag = {
35723
+ /**
35724
+ * @minLength `1`
35725
+ * @maxLength `128`
35726
+ * @pattern `^[a-zA-Z0-9 _.:/=+\-@]{1,128}\Z`
35727
+ */
35728
+ Key: string;
35729
+ /**
35730
+ * @minLength `0`
35731
+ * @maxLength `256`
35732
+ * @pattern `^[a-zA-Z0-9 _.:/=+\-@]{0,256}\Z`
35733
+ */
35734
+ Value: string;
35735
+ };
35429
35736
  /**
35430
35737
  * Resource type definition for `AWS::CloudFront::VpcOrigin`.
35431
35738
  * An Amazon CloudFront VPC origin.
@@ -67421,6 +67728,18 @@ export type ECRPullThroughCacheRuleProps = {
67421
67728
  */
67422
67729
  UpstreamRepositoryPrefix?: string;
67423
67730
  };
67731
+ /**
67732
+ * Resource Type definition for AWS::ECR::PullTimeUpdateExclusion controls the exclusion configuration for ecr image pull time update.
67733
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-pulltimeupdateexclusion.html}
67734
+ */
67735
+ export type ECRPullTimeUpdateExclusionProps = {
67736
+ /**
67737
+ * Principal arn that should not update image pull times.
67738
+ * @maxLength `200`
67739
+ * @pattern `^arn:aws(-[a-z]+)*:iam::[0-9]{12}:(role|user)/[\w+=,.@-]+(/[\w+=,.@-]+)*$`
67740
+ */
67741
+ PrincipalArn: string;
67742
+ };
67424
67743
  /**
67425
67744
  * The ``AWS::ECR::RegistryPolicy`` resource creates or updates the permissions policy for a private registry.
67426
67745
  A private registry policy is used to specify permissions for another AWS-account and is used when configuring cross-account replication. For more information, see [Registry permissions](https://docs.aws.amazon.com/AmazonECR/latest/userguide/registry-permissions.html) in the *Amazon Elastic Container Registry User Guide*.
@@ -67911,6 +68230,71 @@ export type ECRRepositoryCreationTemplateTag = {
67911
68230
  */
67912
68231
  Value: string;
67913
68232
  };
68233
+ /**
68234
+ * The AWS::ECR::SigningConfiguration resource creates or updates the signing configuration for an Amazon ECR registry.
68235
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-signingconfiguration.html}
68236
+ */
68237
+ export type ECRSigningConfigurationProps = {
68238
+ /**
68239
+ * Array of signing rules that define which repositories should be signed and with which signing profiles.
68240
+ * @minLength `0`
68241
+ * @maxLength `50`
68242
+ */
68243
+ Rules: ECRSigningConfigurationRule[];
68244
+ };
68245
+ /**
68246
+ * Attribute type definition for `AWS::ECR::SigningConfiguration`.
68247
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-signingconfiguration.html#aws-resource-ecr-signingconfiguration-return-values}
68248
+ */
68249
+ export type ECRSigningConfigurationAttributes = {
68250
+ /**
68251
+ * 12-digit AWS account ID of the ECR registry.
68252
+ * @pattern `^[0-9]{12}$`
68253
+ */
68254
+ RegistryId: string;
68255
+ };
68256
+ /**
68257
+ * Type definition for `AWS::ECR::SigningConfiguration.FilterType`.
68258
+ * Type of repository filter
68259
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-signingconfiguration-filtertype.html}
68260
+ */
68261
+ export type ECRSigningConfigurationFilterType = "WILDCARD_MATCH";
68262
+ /**
68263
+ * Type definition for `AWS::ECR::SigningConfiguration.RepositoryFilter`.
68264
+ * An array of objects representing the details of a repository filter.
68265
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-signingconfiguration-repositoryfilter.html}
68266
+ */
68267
+ export type ECRSigningConfigurationRepositoryFilter = {
68268
+ /**
68269
+ * Repository name pattern (supports '*' wildcard).
68270
+ * @minLength `1`
68271
+ * @maxLength `256`
68272
+ * @pattern `^(?=.{1,256}$)(?:[a-z0-9*]+(?:[._-][a-z0-9*]*)/‍*)*[a-z0-9*]*(?:[._-][a-z0-9*]*)*$`
68273
+ */
68274
+ Filter: string;
68275
+ /**
68276
+ * Type of repository filter
68277
+ */
68278
+ FilterType: ECRSigningConfigurationFilterType;
68279
+ };
68280
+ /**
68281
+ * Type definition for `AWS::ECR::SigningConfiguration.Rule`.
68282
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-signingconfiguration-rule.html}
68283
+ */
68284
+ export type ECRSigningConfigurationRule = {
68285
+ /**
68286
+ * Optional array of repository filters. If omitted, the rule matches all repositories. If provided, must contain at least one filter. Empty arrays are not allowed.
68287
+ * @minLength `1`
68288
+ * @maxLength `100`
68289
+ */
68290
+ RepositoryFilters?: ECRSigningConfigurationRepositoryFilter[];
68291
+ /**
68292
+ * AWS Signer signing profile ARN to use for matched repositories.
68293
+ * @maxLength `200`
68294
+ * @pattern `^arn:aws(-[a-z]+)*:signer:[a-z0-9-]+:[0-9]{12}:\/signing-profiles\/[a-zA-Z0-9_]{2,}$`
68295
+ */
68296
+ SigningProfileArn: string;
68297
+ };
67914
68298
  /**
67915
68299
  * Resource Type definition for AWS::ECS::CapacityProvider.
67916
68300
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-capacityprovider.html}
@@ -107557,6 +107941,10 @@ export type KinesisVideoStreamProps = {
107557
107941
  * @pattern `[a-zA-Z0-9_.-]+`
107558
107942
  */
107559
107943
  Name?: string;
107944
+ /**
107945
+ * Configuration for the storage tier of the Kinesis Video Stream.
107946
+ */
107947
+ StreamStorageConfiguration?: KinesisVideoStreamStreamStorageConfiguration;
107560
107948
  /**
107561
107949
  * An array of key-value pairs associated with the Kinesis Video Stream.
107562
107950
  * @minLength `1`
@@ -107574,6 +107962,17 @@ export type KinesisVideoStreamAttributes = {
107574
107962
  */
107575
107963
  Arn: string;
107576
107964
  };
107965
+ /**
107966
+ * Type definition for `AWS::KinesisVideo::Stream.StreamStorageConfiguration`.
107967
+ * Configuration for the storage tier of the Kinesis Video Stream.
107968
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisvideo-stream-streamstorageconfiguration.html}
107969
+ */
107970
+ export type KinesisVideoStreamStreamStorageConfiguration = {
107971
+ /**
107972
+ * The storage tier for the Kinesis Video Stream. Determines the storage class used for stream data.
107973
+ */
107974
+ DefaultStorageTier?: "HOT" | "WARM";
107975
+ };
107577
107976
  /**
107578
107977
  * Type definition for `AWS::KinesisVideo::Stream.Tag`.
107579
107978
  * A key-value pair to associated with the Kinesis Video Stream.
@@ -180756,6 +181155,7 @@ export type S3AccessPointVpcConfiguration = {
180756
181155
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-bucket.html}
180757
181156
  */
180758
181157
  export type S3BucketProps = {
181158
+ AbacStatus?: "Enabled" | "Disabled";
180759
181159
  /**
180760
181160
  * Configures the transfer acceleration state for an Amazon S3 bucket. For more information, see [Amazon S3 Transfer Acceleration](https://docs.aws.amazon.com/AmazonS3/latest/dev/transfer-acceleration.html) in the *Amazon S3 User Guide*.
180761
181161
  */
@@ -184594,6 +184994,21 @@ export type SageMakerClusterClusterAutoScalingConfig = {
184594
184994
  */
184595
184995
  Mode: "Enable" | "Disable";
184596
184996
  };
184997
+ /**
184998
+ * Type definition for `AWS::SageMaker::Cluster.ClusterCapacityRequirements`.
184999
+ * Specifies the capacity requirements configuration for an instance group
185000
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-cluster-clustercapacityrequirements.html}
185001
+ */
185002
+ export type SageMakerClusterClusterCapacityRequirements = {
185003
+ /**
185004
+ * Options for OnDemand capacity
185005
+ */
185006
+ OnDemand?: SageMakerClusterClusterOnDemandOptions;
185007
+ /**
185008
+ * Options for Spot capacity
185009
+ */
185010
+ Spot?: SageMakerClusterClusterSpotOptions;
185011
+ };
184597
185012
  /**
184598
185013
  * Type definition for `AWS::SageMaker::Cluster.ClusterEbsVolumeConfig`.
184599
185014
  * Defines the configuration for attaching additional Amazon Elastic Block Store (EBS) volumes to the instances in the SageMaker HyperPod cluster instance group. The additional EBS volume is attached to each instance within the SageMaker HyperPod cluster instance group and mounted to /opt/sagemaker.
@@ -184620,6 +185035,10 @@ export type SageMakerClusterClusterEbsVolumeConfig = {
184620
185035
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-cluster-clusterinstancegroup.html}
184621
185036
  */
184622
185037
  export type SageMakerClusterClusterInstanceGroup = {
185038
+ /**
185039
+ * Specifies the capacity requirements configuration for an instance group
185040
+ */
185041
+ CapacityRequirements?: SageMakerClusterClusterCapacityRequirements;
184623
185042
  /**
184624
185043
  * The execution role for the instance group to assume.
184625
185044
  * @minLength `20`
@@ -184655,6 +185074,10 @@ export type SageMakerClusterClusterInstanceGroup = {
184655
185074
  * The instance type of the instance group of a SageMaker HyperPod cluster.
184656
185075
  */
184657
185076
  InstanceType: string;
185077
+ /**
185078
+ * Kubernetes configuration for cluster nodes including labels and taints.
185079
+ */
185080
+ KubernetesConfig?: SageMakerClusterClusterKubernetesConfig;
184658
185081
  /**
184659
185082
  * The lifecycle configuration for a SageMaker HyperPod cluster.
184660
185083
  */
@@ -184695,6 +185118,47 @@ export type SageMakerClusterClusterInstanceStorageConfig = {
184695
185118
  */
184696
185119
  EbsVolumeConfig?: SageMakerClusterClusterEbsVolumeConfig;
184697
185120
  };
185121
+ /**
185122
+ * Type definition for `AWS::SageMaker::Cluster.ClusterKubernetesConfig`.
185123
+ * Kubernetes configuration for cluster nodes including labels and taints.
185124
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-cluster-clusterkubernetesconfig.html}
185125
+ */
185126
+ export type SageMakerClusterClusterKubernetesConfig = {
185127
+ /**
185128
+ * A map of Kubernetes labels to apply to cluster nodes.
185129
+ */
185130
+ Labels?: SageMakerClusterClusterKubernetesLabels;
185131
+ /**
185132
+ * A list of Kubernetes taints to apply to cluster nodes. Maximum of 50 taints.
185133
+ * @maxLength `50`
185134
+ */
185135
+ Taints?: SageMakerClusterClusterKubernetesTaint[];
185136
+ };
185137
+ /**
185138
+ * Type definition for `AWS::SageMaker::Cluster.ClusterKubernetesLabels`.
185139
+ * A map of Kubernetes labels to apply to cluster nodes.
185140
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-cluster-clusterkuberneteslabels.html}
185141
+ */
185142
+ export type SageMakerClusterClusterKubernetesLabels = Record<string, string>;
185143
+ /**
185144
+ * Type definition for `AWS::SageMaker::Cluster.ClusterKubernetesTaint`.
185145
+ * A Kubernetes taint to apply to cluster nodes.
185146
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-cluster-clusterkubernetestaint.html}
185147
+ */
185148
+ export type SageMakerClusterClusterKubernetesTaint = {
185149
+ /**
185150
+ * The effect of the taint.
185151
+ */
185152
+ Effect: "NoSchedule" | "PreferNoSchedule" | "NoExecute";
185153
+ /**
185154
+ * The key of the taint.
185155
+ */
185156
+ Key: string;
185157
+ /**
185158
+ * The value of the taint.
185159
+ */
185160
+ Value?: string;
185161
+ };
184698
185162
  /**
184699
185163
  * Type definition for `AWS::SageMaker::Cluster.ClusterLifeCycleConfig`.
184700
185164
  * The lifecycle configuration for a SageMaker HyperPod cluster.
@@ -184715,6 +185179,12 @@ export type SageMakerClusterClusterLifeCycleConfig = {
184715
185179
  */
184716
185180
  SourceS3Uri: string;
184717
185181
  };
185182
+ /**
185183
+ * Type definition for `AWS::SageMaker::Cluster.ClusterOnDemandOptions`.
185184
+ * Options for OnDemand capacity
185185
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-cluster-clusterondemandoptions.html}
185186
+ */
185187
+ export type SageMakerClusterClusterOnDemandOptions = Record<string, any>;
184718
185188
  /**
184719
185189
  * Type definition for `AWS::SageMaker::Cluster.ClusterOrchestratorEksConfig`.
184720
185190
  * Specifies parameter(s) related to EKS as orchestrator, e.g. the EKS cluster nodes will attach to,
@@ -184786,6 +185256,12 @@ export type SageMakerClusterClusterRestrictedInstanceGroup = {
184786
185256
  */
184787
185257
  TrainingPlanArn?: string;
184788
185258
  };
185259
+ /**
185260
+ * Type definition for `AWS::SageMaker::Cluster.ClusterSpotOptions`.
185261
+ * Options for Spot capacity
185262
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-cluster-clusterspotoptions.html}
185263
+ */
185264
+ export type SageMakerClusterClusterSpotOptions = Record<string, any>;
184789
185265
  /**
184790
185266
  * Type definition for `AWS::SageMaker::Cluster.DeepHealthCheckType`.
184791
185267
  * The type of deep health check(s) to be performed on the instances in the SageMaker HyperPod cluster instance group.
@@ -194303,6 +194779,14 @@ export type SecretsManagerResourcePolicyAttributes = {
194303
194779
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html}
194304
194780
  */
194305
194781
  export type SecretsManagerRotationScheduleProps = {
194782
+ /**
194783
+ * The list of metadata needed to successfully rotate a managed external secret.
194784
+ */
194785
+ ExternalSecretRotationMetadata?: SecretsManagerRotationScheduleExternalSecretRotationMetadataItem[];
194786
+ /**
194787
+ * The ARN of the IAM role that is used by Secrets Manager to rotate a managed external secret.
194788
+ */
194789
+ ExternalSecretRotationRoleArn?: string;
194306
194790
  /**
194307
194791
  * Creates a new Lambda rotation function based on one of the Secrets Manager rotation function templates. To use a rotation function that already exists, specify RotationLambdaARN instead.
194308
194792
  */
@@ -194334,6 +194818,21 @@ export type SecretsManagerRotationScheduleAttributes = {
194334
194818
  */
194335
194819
  Id: string;
194336
194820
  };
194821
+ /**
194822
+ * Type definition for `AWS::SecretsManager::RotationSchedule.ExternalSecretRotationMetadataItem`.
194823
+ * The metadata needed to successfully rotate a managed external secret. Each metadata item is a key and value pair of strings in a JSON text string.
194824
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-rotationschedule-externalsecretrotationmetadataitem.html}
194825
+ */
194826
+ export type SecretsManagerRotationScheduleExternalSecretRotationMetadataItem = {
194827
+ /**
194828
+ * The key name of the metadata item. You can specify a value that's 1 to 256 characters in length.
194829
+ */
194830
+ Key: string;
194831
+ /**
194832
+ * The value for the metadata item. You can specify a value that's 1 to 2048 characters in length.
194833
+ */
194834
+ Value: string;
194835
+ };
194337
194836
  /**
194338
194837
  * Type definition for `AWS::SecretsManager::RotationSchedule.HostedRotationLambda`.
194339
194838
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-rotationschedule-hostedrotationlambda.html}
@@ -216081,6 +216580,7 @@ export interface ResourceTypes {
216081
216580
  "AWS::CloudFront::RealtimeLogConfig": CloudFrontRealtimeLogConfigProps;
216082
216581
  "AWS::CloudFront::ResponseHeadersPolicy": CloudFrontResponseHeadersPolicyProps;
216083
216582
  "AWS::CloudFront::StreamingDistribution": CloudFrontStreamingDistributionProps;
216583
+ "AWS::CloudFront::TrustStore": CloudFrontTrustStoreProps;
216084
216584
  "AWS::CloudFront::VpcOrigin": CloudFrontVpcOriginProps;
216085
216585
  "AWS::CloudTrail::Channel": CloudTrailChannelProps;
216086
216586
  "AWS::CloudTrail::Dashboard": CloudTrailDashboardProps;
@@ -216375,11 +216875,13 @@ export interface ResourceTypes {
216375
216875
  "AWS::EC2::VPNGatewayRoutePropagation": EC2VPNGatewayRoutePropagationProps;
216376
216876
  "AWS::ECR::PublicRepository": ECRPublicRepositoryProps;
216377
216877
  "AWS::ECR::PullThroughCacheRule": ECRPullThroughCacheRuleProps;
216878
+ "AWS::ECR::PullTimeUpdateExclusion": ECRPullTimeUpdateExclusionProps;
216378
216879
  "AWS::ECR::RegistryPolicy": ECRRegistryPolicyProps;
216379
216880
  "AWS::ECR::RegistryScanningConfiguration": ECRRegistryScanningConfigurationProps;
216380
216881
  "AWS::ECR::ReplicationConfiguration": ECRReplicationConfigurationProps;
216381
216882
  "AWS::ECR::Repository": ECRRepositoryProps;
216382
216883
  "AWS::ECR::RepositoryCreationTemplate": ECRRepositoryCreationTemplateProps;
216884
+ "AWS::ECR::SigningConfiguration": ECRSigningConfigurationProps;
216383
216885
  "AWS::ECS::CapacityProvider": ECSCapacityProviderProps;
216384
216886
  "AWS::ECS::Cluster": ECSClusterProps;
216385
216887
  "AWS::ECS::ClusterCapacityProviderAssociations": ECSClusterCapacityProviderAssociationsProps;
@@ -217550,6 +218052,7 @@ export interface AttributeTypes {
217550
218052
  "AWS::CloudFront::RealtimeLogConfig": CloudFrontRealtimeLogConfigAttributes;
217551
218053
  "AWS::CloudFront::ResponseHeadersPolicy": CloudFrontResponseHeadersPolicyAttributes;
217552
218054
  "AWS::CloudFront::StreamingDistribution": CloudFrontStreamingDistributionAttributes;
218055
+ "AWS::CloudFront::TrustStore": CloudFrontTrustStoreAttributes;
217553
218056
  "AWS::CloudFront::VpcOrigin": CloudFrontVpcOriginAttributes;
217554
218057
  "AWS::CloudTrail::Channel": CloudTrailChannelAttributes;
217555
218058
  "AWS::CloudTrail::Dashboard": CloudTrailDashboardAttributes;
@@ -217812,6 +218315,7 @@ export interface AttributeTypes {
217812
218315
  "AWS::ECR::ReplicationConfiguration": ECRReplicationConfigurationAttributes;
217813
218316
  "AWS::ECR::Repository": ECRRepositoryAttributes;
217814
218317
  "AWS::ECR::RepositoryCreationTemplate": ECRRepositoryCreationTemplateAttributes;
218318
+ "AWS::ECR::SigningConfiguration": ECRSigningConfigurationAttributes;
217815
218319
  "AWS::ECS::Cluster": ECSClusterAttributes;
217816
218320
  "AWS::ECS::ExpressGatewayService": ECSExpressGatewayServiceAttributes;
217817
218321
  "AWS::ECS::Service": ECSServiceAttributes;
@@ -218891,6 +219395,7 @@ export declare const ResourceType: {
218891
219395
  readonly CloudFrontRealtimeLogConfig: "AWS::CloudFront::RealtimeLogConfig";
218892
219396
  readonly CloudFrontResponseHeadersPolicy: "AWS::CloudFront::ResponseHeadersPolicy";
218893
219397
  readonly CloudFrontStreamingDistribution: "AWS::CloudFront::StreamingDistribution";
219398
+ readonly CloudFrontTrustStore: "AWS::CloudFront::TrustStore";
218894
219399
  readonly CloudFrontVpcOrigin: "AWS::CloudFront::VpcOrigin";
218895
219400
  readonly CloudTrailChannel: "AWS::CloudTrail::Channel";
218896
219401
  readonly CloudTrailDashboard: "AWS::CloudTrail::Dashboard";
@@ -219185,11 +219690,13 @@ export declare const ResourceType: {
219185
219690
  readonly EC2VPNGatewayRoutePropagation: "AWS::EC2::VPNGatewayRoutePropagation";
219186
219691
  readonly ECRPublicRepository: "AWS::ECR::PublicRepository";
219187
219692
  readonly ECRPullThroughCacheRule: "AWS::ECR::PullThroughCacheRule";
219693
+ readonly ECRPullTimeUpdateExclusion: "AWS::ECR::PullTimeUpdateExclusion";
219188
219694
  readonly ECRRegistryPolicy: "AWS::ECR::RegistryPolicy";
219189
219695
  readonly ECRRegistryScanningConfiguration: "AWS::ECR::RegistryScanningConfiguration";
219190
219696
  readonly ECRReplicationConfiguration: "AWS::ECR::ReplicationConfiguration";
219191
219697
  readonly ECRRepository: "AWS::ECR::Repository";
219192
219698
  readonly ECRRepositoryCreationTemplate: "AWS::ECR::RepositoryCreationTemplate";
219699
+ readonly ECRSigningConfiguration: "AWS::ECR::SigningConfiguration";
219193
219700
  readonly ECSCapacityProvider: "AWS::ECS::CapacityProvider";
219194
219701
  readonly ECSCluster: "AWS::ECS::Cluster";
219195
219702
  readonly ECSClusterCapacityProviderAssociations: "AWS::ECS::ClusterCapacityProviderAssociations";