@awboost/cfntypes 0.100.334 → 0.100.336

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.
@@ -2714,6 +2714,7 @@ export type ApiGatewayDocumentationVersionProps = {
2714
2714
  export type ApiGatewayDomainNameProps = {
2715
2715
  CertificateArn?: string;
2716
2716
  DomainName?: string;
2717
+ EndpointAccessMode?: string;
2717
2718
  /**
2718
2719
  * The endpoint configuration of this DomainName showing the endpoint types and IP address types of the domain name.
2719
2720
  */
@@ -2820,6 +2821,7 @@ export type ApiGatewayDomainNameAccessAssociationTag = {
2820
2821
  export type ApiGatewayDomainNameV2Props = {
2821
2822
  CertificateArn?: string;
2822
2823
  DomainName?: string;
2824
+ EndpointAccessMode?: string;
2823
2825
  EndpointConfiguration?: ApiGatewayDomainNameV2EndpointConfiguration;
2824
2826
  Policy?: Record<string, any> | string;
2825
2827
  /**
@@ -2914,9 +2916,11 @@ export type ApiGatewayMethodIntegration = {
2914
2916
  Credentials?: string;
2915
2917
  IntegrationHttpMethod?: string;
2916
2918
  IntegrationResponses?: ApiGatewayMethodIntegrationResponse[];
2919
+ IntegrationTarget?: string;
2917
2920
  PassthroughBehavior?: "WHEN_NO_MATCH" | "WHEN_NO_TEMPLATES" | "NEVER";
2918
2921
  RequestParameters?: Record<string, string>;
2919
2922
  RequestTemplates?: Record<string, string>;
2923
+ ResponseTransferMode?: "BUFFERED" | "STREAM";
2920
2924
  /**
2921
2925
  * @min `50`
2922
2926
  */
@@ -3012,6 +3016,7 @@ export type ApiGatewayRestApiProps = {
3012
3016
  CloneFrom?: string;
3013
3017
  Description?: string;
3014
3018
  DisableExecuteApiEndpoint?: boolean;
3019
+ EndpointAccessMode?: string;
3015
3020
  /**
3016
3021
  * A list of the endpoint types and IP address types of the API. Use this property when creating an API. When importing an existing API, specify the endpoint configuration types using the ``Parameters`` property.
3017
3022
  */
@@ -3036,6 +3041,7 @@ export type ApiGatewayRestApiProps = {
3036
3041
  * A policy document that contains the permissions for the ``RestApi`` resource. To set the ARN for the policy, use the ``!Join`` intrinsic function with ``""`` as delimiter and values of ``"execute-api:/"`` and ``"*"``.
3037
3042
  */
3038
3043
  Policy?: Record<string, any> | string;
3044
+ SecurityPolicy?: string;
3039
3045
  Tags?: ApiGatewayRestApiTag[];
3040
3046
  };
3041
3047
  /**
@@ -17886,6 +17892,7 @@ export type BackupLogicallyAirGappedBackupVaultProps = {
17886
17892
  */
17887
17893
  BackupVaultName: string;
17888
17894
  BackupVaultTags?: Record<string, string>;
17895
+ EncryptionKeyArn?: string;
17889
17896
  MaxRetentionDays: number;
17890
17897
  MinRetentionDays: number;
17891
17898
  MpaApprovalTeamArn?: string;
@@ -17897,7 +17904,6 @@ export type BackupLogicallyAirGappedBackupVaultProps = {
17897
17904
  */
17898
17905
  export type BackupLogicallyAirGappedBackupVaultAttributes = {
17899
17906
  BackupVaultArn: string;
17900
- EncryptionKeyArn: string;
17901
17907
  VaultState: string;
17902
17908
  VaultType: string;
17903
17909
  };
@@ -20547,11 +20553,26 @@ export type BedrockDataAutomationProjectAudioExtractionCategoryType = "AUDIO_CON
20547
20553
  export type BedrockDataAutomationProjectAudioExtractionCategoryTypeConfiguration = {
20548
20554
  Transcript?: BedrockDataAutomationProjectTranscriptConfiguration;
20549
20555
  };
20556
+ /**
20557
+ * Type definition for `AWS::Bedrock::DataAutomationProject.AudioGenerativeOutputLanguage`.
20558
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-audiogenerativeoutputlanguage.html}
20559
+ */
20560
+ export type BedrockDataAutomationProjectAudioGenerativeOutputLanguage = "DEFAULT" | "EN";
20561
+ /**
20562
+ * Type definition for `AWS::Bedrock::DataAutomationProject.AudioLanguageConfiguration`.
20563
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-audiolanguageconfiguration.html}
20564
+ */
20565
+ export type BedrockDataAutomationProjectAudioLanguageConfiguration = {
20566
+ GenerativeOutputLanguage?: BedrockDataAutomationProjectAudioGenerativeOutputLanguage;
20567
+ IdentifyMultipleLanguages?: boolean;
20568
+ InputLanguages?: BedrockDataAutomationProjectLanguage[];
20569
+ };
20550
20570
  /**
20551
20571
  * Type definition for `AWS::Bedrock::DataAutomationProject.AudioOverrideConfiguration`.
20552
20572
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-audiooverrideconfiguration.html}
20553
20573
  */
20554
20574
  export type BedrockDataAutomationProjectAudioOverrideConfiguration = {
20575
+ LanguageConfiguration?: BedrockDataAutomationProjectAudioLanguageConfiguration;
20555
20576
  ModalityProcessing?: BedrockDataAutomationProjectModalityProcessingConfiguration;
20556
20577
  };
20557
20578
  /**
@@ -20776,6 +20797,11 @@ export type BedrockDataAutomationProjectImageStandardOutputConfiguration = {
20776
20797
  Extraction?: BedrockDataAutomationProjectImageStandardExtraction;
20777
20798
  GenerativeField?: BedrockDataAutomationProjectImageStandardGenerativeField;
20778
20799
  };
20800
+ /**
20801
+ * Type definition for `AWS::Bedrock::DataAutomationProject.Language`.
20802
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-language.html}
20803
+ */
20804
+ export type BedrockDataAutomationProjectLanguage = "EN" | "DE" | "ES" | "FR" | "IT" | "PT" | "JA" | "KO" | "CN" | "TW" | "HK";
20779
20805
  /**
20780
20806
  * Type definition for `AWS::Bedrock::DataAutomationProject.ModalityProcessingConfiguration`.
20781
20807
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-modalityprocessingconfiguration.html}
@@ -28098,7 +28124,7 @@ export type BillingConductorBillingGroupProps = {
28098
28124
  * This account will act as a virtual payer account of the billing group
28099
28125
  * @pattern `[0-9]{12}`
28100
28126
  */
28101
- PrimaryAccountId: string;
28127
+ PrimaryAccountId?: string;
28102
28128
  Tags?: BillingConductorBillingGroupTag[];
28103
28129
  };
28104
28130
  /**
@@ -28108,7 +28134,7 @@ export type BillingConductorBillingGroupProps = {
28108
28134
  export type BillingConductorBillingGroupAttributes = {
28109
28135
  /**
28110
28136
  * Billing Group ARN
28111
- * @pattern `arn:aws(-cn)?:billingconductor::[0-9]{12}:billinggroup/?[0-9]{12}`
28137
+ * @pattern `arn:aws(-cn)?:billingconductor::[0-9]{12}:billinggroup/?[a-zA-Z0-9]{10,12}`
28112
28138
  */
28113
28139
  Arn: string;
28114
28140
  /**
@@ -28135,7 +28161,11 @@ export type BillingConductorBillingGroupAccountGrouping = {
28135
28161
  /**
28136
28162
  * @minLength `1`
28137
28163
  */
28138
- LinkedAccountIds: string[];
28164
+ LinkedAccountIds?: string[];
28165
+ /**
28166
+ * @pattern `arn:[a-z0-9][a-z0-9-.]{0,62}:organizations::[0-9]{12}:transfer/o-[a-z0-9]{10,32}/(billing)/(inbound|outbound)/rt-[0-9a-z]{8,32}`
28167
+ */
28168
+ ResponsibilityTransferArn?: string;
28139
28169
  };
28140
28170
  /**
28141
28171
  * Type definition for `AWS::BillingConductor::BillingGroup.BillingGroupStatus`.
@@ -36004,11 +36034,21 @@ export type CloudTrailTrailEventSelector = {
36004
36034
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudtrail-trail-insightselector.html}
36005
36035
  */
36006
36036
  export type CloudTrailTrailInsightSelector = {
36037
+ /**
36038
+ * The categories of events for which to log insights. By default, insights are logged for management events only.
36039
+ */
36040
+ EventCategories?: CloudTrailTrailSourceEventCategory[];
36007
36041
  /**
36008
36042
  * The type of insight to log on a trail.
36009
36043
  */
36010
36044
  InsightType?: string;
36011
36045
  };
36046
+ /**
36047
+ * Type definition for `AWS::CloudTrail::Trail.SourceEventCategory`.
36048
+ * Event category for an insight selector.
36049
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudtrail-trail-sourceeventcategory.html}
36050
+ */
36051
+ export type CloudTrailTrailSourceEventCategory = "Management" | "Data";
36012
36052
  /**
36013
36053
  * Type definition for `AWS::CloudTrail::Trail.Tag`.
36014
36054
  * An arbitrary set of tags (key-value pairs) for this trail.
@@ -56191,6 +56231,10 @@ export type DSQLClusterAttributes = {
56191
56231
  */
56192
56232
  KmsKeyArn: string;
56193
56233
  };
56234
+ /**
56235
+ * The DSQL cluster endpoint.
56236
+ */
56237
+ Endpoint: string;
56194
56238
  /**
56195
56239
  * The ID of the created cluster.
56196
56240
  */
@@ -66167,6 +66211,12 @@ export type EC2VPCEndpointDnsOptionsSpecification = {
66167
66211
  * Indicates whether to enable private DNS only for inbound endpoints. This option is available only for services that support both gateway and interface endpoints. It routes traffic that originates from the VPC to the gateway endpoint and traffic that originates from on-premises to the interface endpoint.
66168
66212
  */
66169
66213
  PrivateDnsOnlyForInboundResolverEndpoint?: "OnlyInboundResolver" | "AllResolvers" | "NotSpecified";
66214
+ PrivateDnsPreference?: "VERIFIED_DOMAINS_ONLY" | "ALL_DOMAINS" | "VERIFIED_DOMAINS_AND_SPECIFIED_DOMAINS" | "SPECIFIED_DOMAINS_ONLY";
66215
+ /**
66216
+ * @minLength `1`
66217
+ * @maxLength `10`
66218
+ */
66219
+ PrivateDnsSpecifiedDomains?: string[];
66170
66220
  };
66171
66221
  /**
66172
66222
  * Type definition for `AWS::EC2::VPCEndpoint.Tag`.
@@ -66345,6 +66395,46 @@ export type EC2VPCPeeringConnectionTag = {
66345
66395
  */
66346
66396
  Value: string;
66347
66397
  };
66398
+ /**
66399
+ * Resource Type definition for AWS::EC2::VPNConcentrator
66400
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpnconcentrator.html}
66401
+ */
66402
+ export type EC2VPNConcentratorProps = {
66403
+ /**
66404
+ * Any tags assigned to the VPN concentrator.
66405
+ */
66406
+ Tags?: EC2VPNConcentratorTag[];
66407
+ /**
66408
+ * The ID of the transit gateway
66409
+ */
66410
+ TransitGatewayId: string;
66411
+ /**
66412
+ * The type of VPN concentrator
66413
+ */
66414
+ Type: string;
66415
+ };
66416
+ /**
66417
+ * Attribute type definition for `AWS::EC2::VPNConcentrator`.
66418
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpnconcentrator.html#aws-resource-ec2-vpnconcentrator-return-values}
66419
+ */
66420
+ export type EC2VPNConcentratorAttributes = {
66421
+ /**
66422
+ * The ID of the transit gateway attachment
66423
+ */
66424
+ TransitGatewayAttachmentId: string;
66425
+ /**
66426
+ * The provider-assigned unique ID for this managed resource
66427
+ */
66428
+ VpnConcentratorId: string;
66429
+ };
66430
+ /**
66431
+ * Type definition for `AWS::EC2::VPNConcentrator.Tag`.
66432
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-vpnconcentrator-tag.html}
66433
+ */
66434
+ export type EC2VPNConcentratorTag = {
66435
+ Key: string;
66436
+ Value: string;
66437
+ };
66348
66438
  /**
66349
66439
  * Resource type definition for `AWS::EC2::VPNConnection`.
66350
66440
  * Specifies a VPN connection between a virtual private gateway and a VPN customer gateway or a transit gateway and a VPN customer gateway.
@@ -66412,6 +66502,7 @@ export type EC2VPNConnectionProps = {
66412
66502
  Required if ``OutsideIpAddressType`` is set to ``PrivateIpv4``.
66413
66503
  */
66414
66504
  TransportTransitGatewayAttachmentId?: string;
66505
+ TunnelBandwidth?: "standard" | "large";
66415
66506
  /**
66416
66507
  * Indicate whether the VPN tunnels process IPv4 or IPv6 traffic.
66417
66508
  Default: ``ipv4``
@@ -66421,6 +66512,7 @@ export type EC2VPNConnectionProps = {
66421
66512
  * The type of VPN connection.
66422
66513
  */
66423
66514
  Type: string;
66515
+ VpnConcentratorId?: string;
66424
66516
  /**
66425
66517
  * The ID of the virtual private gateway at the AWS side of the VPN connection.
66426
66518
  You must specify either ``TransitGatewayId`` or ``VpnGatewayId``, but not both.
@@ -66444,6 +66536,9 @@ export type EC2VPNConnectionAttributes = {
66444
66536
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-vpnconnection-cloudwatchlogoptionsspecification.html}
66445
66537
  */
66446
66538
  export type EC2VPNConnectionCloudwatchLogOptionsSpecification = {
66539
+ BgpLogEnabled?: boolean;
66540
+ BgpLogGroupArn?: string;
66541
+ BgpLogOutputFormat?: "json" | "text";
66447
66542
  /**
66448
66543
  * Enable or disable VPN tunnel logging feature. Default value is ``False``.
66449
66544
  Valid values: ``True`` | ``False``
@@ -67487,6 +67582,17 @@ export type ECSCapacityProviderManagedInstancesNetworkConfiguration = {
67487
67582
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-managedinstancesprovider.html}
67488
67583
  */
67489
67584
  export type ECSCapacityProviderManagedInstancesProvider = {
67585
+ /**
67586
+ * Defines how Amazon ECS Managed Instances optimizes the infrastructure in your capacity provider. Configure it to turn on or off the infrastructure optimization in your capacity provider, and to control the idle EC2 instances optimization delay.
67587
+ */
67588
+ InfrastructureOptimization?: {
67589
+ /**
67590
+ * This parameter defines the number of seconds Amazon ECS Managed Instances waits before optimizing EC2 instances that have become idle or underutilized. A longer delay increases the likelihood of placing new tasks on idle instances, reducing startup time. A shorter delay helps reduce infrastructure costs by optimizing idle instances more quickly. Valid values are: Not set (null) - Uses the default optimization behavior, `-1` - Disables automatic infrastructure optimization, `0` to `3600` (inclusive) - Specifies the number of seconds to wait before optimizing instances.
67591
+ * @min `-1`
67592
+ * @max `3600`
67593
+ */
67594
+ ScaleInAfter?: number;
67595
+ };
67490
67596
  InfrastructureRoleArn: string;
67491
67597
  InstanceLaunchTemplate: ECSCapacityProviderInstanceLaunchTemplate;
67492
67598
  PropagateTags?: "CAPACITY_PROVIDER" | "NONE";
@@ -68106,15 +68212,21 @@ export type ECSServiceAwsVpcConfiguration = {
68106
68212
  };
68107
68213
  /**
68108
68214
  * Type definition for `AWS::ECS::Service.CanaryConfiguration`.
68215
+ * Configuration for a canary deployment strategy that shifts a fixed percentage of traffic to the new service revision, waits for a specified bake time, then shifts the remaining traffic.
68216
+ The following validation applies only to Canary deployments created through CFN. CFN operations time out after 36 hours. Canary deployments can approach this limit because of their extended duration. This can cause CFN to roll back the deployment. To prevent timeout-related rollbacks, CFN rejects deployments when the calculated deployment time exceeds 33 hours based on your template configuration:
68217
+ ``BakeTimeInMinutes + CanaryBakeTimeInMinutes``
68218
+ Additional backend processes (such as task scaling and running lifecycle hooks) can extend deployment time beyond these calculations. Even deployments under the 33-hour threshold might still time out if these processes cause the total duration to exceed 36 hours.
68109
68219
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-canaryconfiguration.html}
68110
68220
  */
68111
68221
  export type ECSServiceCanaryConfiguration = {
68112
68222
  /**
68223
+ * The amount of time in minutes to wait during the canary phase before shifting the remaining production traffic to the new service revision. Valid values are 0 to 1440 minutes (24 hours). The default value is 10.
68113
68224
  * @min `0`
68114
68225
  * @max `1440`
68115
68226
  */
68116
68227
  CanaryBakeTimeInMinutes?: number;
68117
68228
  /**
68229
+ * The percentage of production traffic to shift to the new service revision during the canary phase. Valid values are multiples of 0.1 from 0.1 to 100.0. The default value is 5.0.
68118
68230
  * @min `0.1`
68119
68231
  * @max `100`
68120
68232
  */
@@ -68133,13 +68245,13 @@ export type ECSServiceCapacityProviderStrategyItem = {
68133
68245
  * The *base* value designates how many tasks, at a minimum, to run on the specified capacity provider for each service. Only one capacity provider in a capacity provider strategy can have a *base* defined. If no value is specified, the default value of ``0`` is used.
68134
68246
  Base value characteristics:
68135
68247
  + Only one capacity provider in a strategy can have a base defined
68136
- + Default value is ``0`` if not specified
68137
- + Valid range: 0 to 100,000
68248
+ + The default value is ``0`` if not specified
68249
+ + The valid range is 0 to 100,000
68138
68250
  + Base requirements are satisfied first before weight distribution
68139
68251
  */
68140
68252
  Base?: number;
68141
68253
  /**
68142
- * The short name of the capacity provider.
68254
+ * The short name of the capacity provider. This can be either an AWS managed capacity provider (``FARGATE`` or ``FARGATE_SPOT``) or the name of a custom capacity provider that you created.
68143
68255
  */
68144
68256
  CapacityProvider?: string;
68145
68257
  /**
@@ -68147,8 +68259,8 @@ export type ECSServiceCapacityProviderStrategyItem = {
68147
68259
  If no ``weight`` value is specified, the default value of ``0`` is used. When multiple capacity providers are specified within a capacity provider strategy, at least one of the capacity providers must have a weight value greater than zero and any capacity providers with a weight of ``0`` can't be used to place tasks. If you specify multiple capacity providers in a strategy that all have a weight of ``0``, any ``RunTask`` or ``CreateService`` actions using the capacity provider strategy will fail.
68148
68260
  Weight value characteristics:
68149
68261
  + Weight is considered after the base value is satisfied
68150
- + Default value is ``0`` if not specified
68151
- + Valid range: 0 to 1,000
68262
+ + The default value is ``0`` if not specified
68263
+ + The valid range is 0 to 1,000
68152
68264
  + At least one capacity provider must have a weight greater than zero
68153
68265
  + Capacity providers with weight of ``0`` cannot place tasks
68154
68266
 
@@ -68221,6 +68333,9 @@ export type ECSServiceDeploymentConfiguration = {
68221
68333
  * @max `1440`
68222
68334
  */
68223
68335
  BakeTimeInMinutes?: number;
68336
+ /**
68337
+ * Configuration for canary deployment strategy. Only valid when the deployment strategy is ``CANARY``. This configuration enables shifting a fixed percentage of traffic for testing, followed by shifting the remaining traffic after a bake period.
68338
+ */
68224
68339
  CanaryConfiguration?: ECSServiceCanaryConfiguration;
68225
68340
  /**
68226
68341
  * The deployment circuit breaker can only be used for services using the rolling update (``ECS``) deployment type.
@@ -68231,6 +68346,9 @@ export type ECSServiceDeploymentConfiguration = {
68231
68346
  * An array of deployment lifecycle hook objects to run custom logic at specific stages of the deployment lifecycle.
68232
68347
  */
68233
68348
  LifecycleHooks?: ECSServiceDeploymentLifecycleHook[];
68349
+ /**
68350
+ * Configuration for linear deployment strategy. Only valid when the deployment strategy is ``LINEAR``. This configuration enables progressive traffic shifting in equal percentage increments with configurable bake times between each step.
68351
+ */
68234
68352
  LinearConfiguration?: ECSServiceLinearConfiguration;
68235
68353
  /**
68236
68354
  * If a service is using the rolling update (``ECS``) deployment type, the ``maximumPercent`` parameter represents an upper limit on the number of your service's tasks that are allowed in the ``RUNNING`` or ``PENDING`` state during a deployment, as a percentage of the ``desiredCount`` (rounded down to the nearest integer). This parameter enables you to define the deployment batch size. For example, if your service is using the ``REPLICA`` service scheduler and has a ``desiredCount`` of four tasks and a ``maximumPercent`` value of 200%, the scheduler may start four new tasks before stopping the four older tasks (provided that the cluster resources required to do this are available). The default ``maximumPercent`` value for a service using the ``REPLICA`` service scheduler is 200%.
@@ -68402,15 +68520,26 @@ export type ECSServiceForceNewDeployment = {
68402
68520
  };
68403
68521
  /**
68404
68522
  * Type definition for `AWS::ECS::Service.LinearConfiguration`.
68523
+ * Configuration for a linear deployment strategy that shifts production traffic in equal percentage increments with configurable wait times between each step until 100 percent of traffic is shifted to the new service revision.
68524
+ The following validation applies only to Linear deployments created through CFN. CFN operations time out after 36 hours. Linear deployments can approach this limit because of their extended duration. This can cause CFN to roll back the deployment. To prevent timeout-related rollbacks, CFN rejects deployments when the calculated deployment time exceeds 33 hours based on your template configuration:
68525
+ ``BakeTimeInMinutes + (StepBakeTimeInMinutes × Number of deployment steps)``
68526
+ Where the number of deployment steps is calculated as follows:
68527
+ + *If StepPercent evenly divides by 100*: The number of deployment steps equals ``(100 ÷ StepPercent) - 1``
68528
+ + *Otherwise*: The number of deployment steps equals the floor of ``100 ÷ StepPercent``. For example, if ``StepPercent`` is 11, the number of deployment steps is 9 (not 9.1).
68529
+
68530
+ This calculation reflects that CFN doesn't apply the step bake time after the final traffic shift reaches 100%. For example, with a ``StepPercent`` of 50%, there are actually two traffic shifts, but only one deployment step is counted for validation purposes because the bake time is applied only after the first 50% shift, not after reaching 100%.
68531
+ Additional backend processes (such as task scaling and running lifecycle hooks) can extend deployment time beyond these calculations. Even deployments under the 33-hour threshold might still time out if these processes cause the total duration to exceed 36 hours.
68405
68532
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-linearconfiguration.html}
68406
68533
  */
68407
68534
  export type ECSServiceLinearConfiguration = {
68408
68535
  /**
68536
+ * The amount of time in minutes to wait between each traffic shifting step during a linear deployment. Valid values are 0 to 1440 minutes (24 hours). The default value is 6. This bake time is not applied after reaching 100 percent traffic.
68409
68537
  * @min `0`
68410
68538
  * @max `1440`
68411
68539
  */
68412
68540
  StepBakeTimeInMinutes?: number;
68413
68541
  /**
68542
+ * The percentage of production traffic to shift in each step during a linear deployment. Valid values are multiples of 0.1 from 3.0 to 100.0. The default value is 10.0.
68414
68543
  * @min `3`
68415
68544
  * @max `100`
68416
68545
  */
@@ -68560,10 +68689,19 @@ export type ECSServiceSecret = {
68560
68689
  };
68561
68690
  /**
68562
68691
  * Type definition for `AWS::ECS::Service.ServiceConnectAccessLogConfiguration`.
68692
+ * Configuration for Service Connect access logging. Access logs provide detailed information about requests made to your service, including request patterns, response codes, and timing data for debugging and monitoring purposes.
68693
+ To enable access logs, you must also specify a ``logConfiguration`` in the ``serviceConnectConfiguration``.
68563
68694
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-serviceconnectaccesslogconfiguration.html}
68564
68695
  */
68565
68696
  export type ECSServiceServiceConnectAccessLogConfiguration = {
68697
+ /**
68698
+ * The format for Service Connect access log output. Choose TEXT for human-readable logs or JSON for structured data that integrates well with log analysis tools.
68699
+ */
68566
68700
  Format: "TEXT" | "JSON";
68701
+ /**
68702
+ * Specifies whether to include query parameters in Service Connect access logs.
68703
+ When enabled, query parameters from HTTP requests are included in the access logs. Consider security and privacy implications when enabling this feature, as query parameters may contain sensitive information such as request IDs and tokens. By default, this parameter is ``DISABLED``.
68704
+ */
68567
68705
  IncludeQueryParameters?: "DISABLED" | "ENABLED";
68568
68706
  };
68569
68707
  /**
@@ -68597,6 +68735,10 @@ export type ECSServiceServiceConnectClientAlias = {
68597
68735
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-serviceconnectconfiguration.html}
68598
68736
  */
68599
68737
  export type ECSServiceServiceConnectConfiguration = {
68738
+ /**
68739
+ * The configuration for Service Connect access logging. Access logs capture detailed information about requests made to your service, including request patterns, response codes, and timing data. They can be useful for debugging connectivity issues, monitoring service performance, and auditing service-to-service communication for security and compliance purposes.
68740
+ To enable access logs, you must also specify a ``logConfiguration`` in the ``serviceConnectConfiguration``.
68741
+ */
68600
68742
  AccessLogConfiguration?: ECSServiceServiceConnectAccessLogConfiguration;
68601
68743
  /**
68602
68744
  * Specifies whether to use Service Connect with this service.
@@ -73974,6 +74116,10 @@ export type ElasticLoadBalancingV2TargetGroupProps = {
73974
74116
  * The tags.
73975
74117
  */
73976
74118
  Tags?: ElasticLoadBalancingV2TargetGroupTag[];
74119
+ /**
74120
+ * The port that the target control agent uses to communicate the available capacity of targets to the load balancer.
74121
+ */
74122
+ TargetControlPort?: number;
73977
74123
  /**
73978
74124
  * The attributes.
73979
74125
  */
@@ -83757,6 +83903,125 @@ export type GlueDevEndpointProps = {
83757
83903
  export type GlueDevEndpointAttributes = {
83758
83904
  Id: string;
83759
83905
  };
83906
+ /**
83907
+ * Resource Type definition for AWS::Glue::Integration
83908
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-integration.html}
83909
+ */
83910
+ export type GlueIntegrationProps = {
83911
+ /**
83912
+ * An optional set of non-secret key value pairs that contains additional contextual information about the data.
83913
+ */
83914
+ AdditionalEncryptionContext?: GlueIntegrationIntegrationAdditionalEncryptionContextMap;
83915
+ /**
83916
+ * @maxLength `2048`
83917
+ */
83918
+ DataFilter?: string;
83919
+ /**
83920
+ * @maxLength `1000`
83921
+ */
83922
+ Description?: string;
83923
+ /**
83924
+ * The configuration settings for the integration.
83925
+ */
83926
+ IntegrationConfig?: GlueIntegrationIntegrationConfig;
83927
+ /**
83928
+ * The name of the integration.
83929
+ * @minLength `1`
83930
+ * @maxLength `128`
83931
+ */
83932
+ IntegrationName: string;
83933
+ /**
83934
+ * An KMS key identifier for the key to use to encrypt the integration. If you don't specify an encryption key, the default AWS owned KMS key is used.
83935
+ */
83936
+ KmsKeyId?: string;
83937
+ /**
83938
+ * The Amazon Resource Name (ARN) of the database to use as the source for replication
83939
+ * @maxLength `512`
83940
+ * @pattern `arn:aws:.*:.*:[0-9]+:.*`
83941
+ */
83942
+ SourceArn: string;
83943
+ /**
83944
+ * An array of key-value pairs to apply to this resource.
83945
+ * @maxLength `50`
83946
+ */
83947
+ Tags?: GlueIntegrationTag[];
83948
+ /**
83949
+ * The Amazon Resource Name (ARN) of the Glue data warehouse to use as the target for replication
83950
+ * @maxLength `512`
83951
+ * @pattern `arn:aws:.*:.*:[0-9]+:.*`
83952
+ */
83953
+ TargetArn: string;
83954
+ };
83955
+ /**
83956
+ * Attribute type definition for `AWS::Glue::Integration`.
83957
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-integration.html#aws-resource-glue-integration-return-values}
83958
+ */
83959
+ export type GlueIntegrationAttributes = {
83960
+ /**
83961
+ * The time (UTC) when the integration was created.
83962
+ */
83963
+ CreateTime: string;
83964
+ /**
83965
+ * The Amazon Resource Name (ARN) of the integration.
83966
+ * @pattern `arn:aws:.*:.*:[0-9]+:.*`
83967
+ */
83968
+ IntegrationArn: string;
83969
+ /**
83970
+ * The status of the integration.
83971
+ */
83972
+ Status: string;
83973
+ };
83974
+ /**
83975
+ * Type definition for `AWS::Glue::Integration.IntegrationAdditionalEncryptionContextMap`.
83976
+ * An optional set of non-secret key value pairs that contains additional contextual information about the data.
83977
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-integration-integrationadditionalencryptioncontextmap.html}
83978
+ */
83979
+ export type GlueIntegrationIntegrationAdditionalEncryptionContextMap = Record<string, string>;
83980
+ /**
83981
+ * Type definition for `AWS::Glue::Integration.IntegrationConfig`.
83982
+ * The configuration settings for the integration.
83983
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-integration-integrationconfig.html}
83984
+ */
83985
+ export type GlueIntegrationIntegrationConfig = {
83986
+ /**
83987
+ * Enables continuous synchronization for on-demand data extractions.
83988
+ */
83989
+ ContinuousSync?: boolean;
83990
+ /**
83991
+ * Specifies the frequency at which CDC (Change Data Capture) pulls or incremental loads should occur.
83992
+ * @maxLength `128`
83993
+ */
83994
+ RefreshInterval?: string;
83995
+ /**
83996
+ * A collection of key-value pairs that specify additional properties for the integration source.
83997
+ */
83998
+ SourceProperties?: GlueIntegrationSourceProperties;
83999
+ };
84000
+ /**
84001
+ * Type definition for `AWS::Glue::Integration.SourceProperties`.
84002
+ * A collection of key-value pairs that specify additional properties for the integration source.
84003
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-integration-sourceproperties.html}
84004
+ */
84005
+ export type GlueIntegrationSourceProperties = Record<string, string>;
84006
+ /**
84007
+ * Type definition for `AWS::Glue::Integration.Tag`.
84008
+ * A key-value pair to associate with a resource.
84009
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-integration-tag.html}
84010
+ */
84011
+ export type GlueIntegrationTag = {
84012
+ /**
84013
+ * 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 -.
84014
+ * @minLength `1`
84015
+ * @maxLength `128`
84016
+ */
84017
+ Key: string;
84018
+ /**
84019
+ * 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 -.
84020
+ * @minLength `0`
84021
+ * @maxLength `256`
84022
+ */
84023
+ Value?: string;
84024
+ };
83760
84025
  /**
83761
84026
  * Resource Type definition for AWS::Glue::IntegrationResourceProperty
83762
84027
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-integrationresourceproperty.html}
@@ -107052,6 +107317,7 @@ export type LakeFormationDataLakeSettingsProps = {
107052
107317
  ExternalDataFilteringAllowList?: LakeFormationDataLakeSettingsExternalDataFilteringAllowList;
107053
107318
  MutationType?: string;
107054
107319
  Parameters?: Record<string, any>;
107320
+ ReadOnlyAdmins?: LakeFormationDataLakeSettingsReadOnlyAdmins;
107055
107321
  TrustedResourceOwners?: string[];
107056
107322
  };
107057
107323
  /**
@@ -107081,6 +107347,11 @@ export type LakeFormationDataLakeSettingsCreateTableDefaultPermissions = Record<
107081
107347
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lakeformation-datalakesettings-externaldatafilteringallowlist.html}
107082
107348
  */
107083
107349
  export type LakeFormationDataLakeSettingsExternalDataFilteringAllowList = Record<string, any>;
107350
+ /**
107351
+ * Type definition for `AWS::LakeFormation::DataLakeSettings.ReadOnlyAdmins`.
107352
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lakeformation-datalakesettings-readonlyadmins.html}
107353
+ */
107354
+ export type LakeFormationDataLakeSettingsReadOnlyAdmins = Record<string, any>;
107084
107355
  /**
107085
107356
  * Resource Type definition for AWS::LakeFormation::Permissions
107086
107357
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lakeformation-permissions.html}
@@ -108530,6 +108801,7 @@ export type LambdaFunctionProps = {
108530
108801
  You must have the ``lambda:TagResource``, ``lambda:UntagResource``, and ``lambda:ListTags`` permissions for your [principal](https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_terms-and-concepts.html) to manage the CFN stack. If you don't have these permissions, there might be unexpected behavior with stack-level tags propagating to the resource during resource creation and update.
108531
108802
  */
108532
108803
  Tags?: LambdaFunctionTag[];
108804
+ TenancyConfig?: LambdaFunctionTenancyConfig;
108533
108805
  /**
108534
108806
  * The amount of time (in seconds) that Lambda allows a function to run before stopping it. The default is 3 seconds. The maximum allowed value is 900 seconds. For more information, see [Lambda execution environment](https://docs.aws.amazon.com/lambda/latest/dg/runtimes-context.html).
108535
108807
  * @min `1`
@@ -108768,6 +109040,16 @@ export type LambdaFunctionTag = {
108768
109040
  */
108769
109041
  Value?: string;
108770
109042
  };
109043
+ /**
109044
+ * Type definition for `AWS::Lambda::Function.TenancyConfig`.
109045
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-function-tenancyconfig.html}
109046
+ */
109047
+ export type LambdaFunctionTenancyConfig = {
109048
+ /**
109049
+ * Determines how your Lambda function isolates execution environments between tenants.
109050
+ */
109051
+ TenantIsolationMode: "PER_TENANT";
109052
+ };
108771
109053
  /**
108772
109054
  * Type definition for `AWS::Lambda::Function.TracingConfig`.
108773
109055
  * The function's [](https://docs.aws.amazon.com/lambda/latest/dg/services-xray.html) tracing configuration. To sample and record incoming requests, set ``Mode`` to ``Active``.
@@ -132696,11 +132978,26 @@ export type OpenSearchServerlessAccessPolicyAccessPolicyType = "data";
132696
132978
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opensearchserverless-collection.html}
132697
132979
  */
132698
132980
  export type OpenSearchServerlessCollectionProps = {
132981
+ /**
132982
+ * The name of the collection group.
132983
+
132984
+ The name must meet the following criteria:
132985
+ Unique to your account and AWS Region
132986
+ Starts with a lowercase letter
132987
+ Contains only lowercase letters a-z, the numbers 0-9 and the hyphen (-)
132988
+ Contains between 3 and 32 characters
132989
+
132990
+ */
132991
+ CollectionGroupName?: string;
132699
132992
  /**
132700
132993
  * The description of the collection
132701
132994
  * @maxLength `1000`
132702
132995
  */
132703
132996
  Description?: string;
132997
+ /**
132998
+ * The configuration to encrypt the collection
132999
+ */
133000
+ EncryptionConfig?: OpenSearchServerlessCollectionEncryptionConfig;
132704
133001
  /**
132705
133002
  * The name of the collection.
132706
133003
 
@@ -132764,6 +133061,21 @@ export type OpenSearchServerlessCollectionAttributes = {
132764
133061
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchserverless-collection-collectiontype.html}
132765
133062
  */
132766
133063
  export type OpenSearchServerlessCollectionCollectionType = "SEARCH" | "TIMESERIES" | "VECTORSEARCH";
133064
+ /**
133065
+ * Type definition for `AWS::OpenSearchServerless::Collection.EncryptionConfig`.
133066
+ * The configuration to encrypt the collection
133067
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchserverless-collection-encryptionconfig.html}
133068
+ */
133069
+ export type OpenSearchServerlessCollectionEncryptionConfig = {
133070
+ /**
133071
+ * The configuration to encrypt the collection with AWS owned key
133072
+ */
133073
+ AWSOwnedKey?: boolean;
133074
+ /**
133075
+ * The ARN of the KMS key to encrypt the collection with
133076
+ */
133077
+ KmsKeyArn?: string;
133078
+ };
132767
133079
  /**
132768
133080
  * Type definition for `AWS::OpenSearchServerless::Collection.StandbyReplicas`.
132769
133081
  * The possible standby replicas for the collection
@@ -133297,6 +133609,7 @@ export type OpenSearchServiceApplicationTag = {
133297
133609
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opensearchservice-domain.html}
133298
133610
  */
133299
133611
  export type OpenSearchServiceDomainProps = {
133612
+ AIMLOptions?: OpenSearchServiceDomainAIMLOptions;
133300
133613
  AccessPolicies?: Record<string, any>;
133301
133614
  AdvancedOptions?: Record<string, string>;
133302
133615
  AdvancedSecurityOptions?: OpenSearchServiceDomainAdvancedSecurityOptionsInput;
@@ -133375,6 +133688,13 @@ export type OpenSearchServiceDomainAdvancedSecurityOptionsInput = {
133375
133688
  MasterUserOptions?: OpenSearchServiceDomainMasterUserOptions;
133376
133689
  SAMLOptions?: OpenSearchServiceDomainSAMLOptions;
133377
133690
  };
133691
+ /**
133692
+ * Type definition for `AWS::OpenSearchService::Domain.AIMLOptions`.
133693
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchservice-domain-aimloptions.html}
133694
+ */
133695
+ export type OpenSearchServiceDomainAIMLOptions = {
133696
+ S3VectorsEngine?: OpenSearchServiceDomainS3VectorsEngine;
133697
+ };
133378
133698
  /**
133379
133699
  * Type definition for `AWS::OpenSearchService::Domain.ClusterConfig`.
133380
133700
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchservice-domain-clusterconfig.html}
@@ -133557,6 +133877,16 @@ export type OpenSearchServiceDomainOffPeakWindowOptions = {
133557
133877
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchservice-domain-roleskeyidctype.html}
133558
133878
  */
133559
133879
  export type OpenSearchServiceDomainRolesKeyIdcType = "GroupName" | "GroupId";
133880
+ /**
133881
+ * Type definition for `AWS::OpenSearchService::Domain.S3VectorsEngine`.
133882
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchservice-domain-s3vectorsengine.html}
133883
+ */
133884
+ export type OpenSearchServiceDomainS3VectorsEngine = {
133885
+ /**
133886
+ * Whether to enable S3 vectors engine.
133887
+ */
133888
+ Enabled: boolean;
133889
+ };
133560
133890
  /**
133561
133891
  * Type definition for `AWS::OpenSearchService::Domain.SAMLOptions`.
133562
133892
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchservice-domain-samloptions.html}
@@ -196173,14 +196503,6 @@ export type ServiceCatalogCloudFormationProductCodeStarParameters = {
196173
196503
  export type ServiceCatalogCloudFormationProductConnectionParameters = {
196174
196504
  CodeStar?: ServiceCatalogCloudFormationProductCodeStarParameters;
196175
196505
  };
196176
- /**
196177
- * Type definition for `AWS::ServiceCatalog::CloudFormationProduct.Info`.
196178
- * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationproduct-info.html}
196179
- */
196180
- export type ServiceCatalogCloudFormationProductInfo = {
196181
- ImportFromPhysicalId?: string;
196182
- LoadTemplateFromURL?: string;
196183
- };
196184
196506
  /**
196185
196507
  * Type definition for `AWS::ServiceCatalog::CloudFormationProduct.ProvisioningArtifactProperties`.
196186
196508
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationproduct-provisioningartifactproperties.html}
@@ -196188,7 +196510,7 @@ export type ServiceCatalogCloudFormationProductInfo = {
196188
196510
  export type ServiceCatalogCloudFormationProductProvisioningArtifactProperties = {
196189
196511
  Description?: string;
196190
196512
  DisableTemplateValidation?: boolean;
196191
- Info: ServiceCatalogCloudFormationProductInfo;
196513
+ Info: Record<string, any>;
196192
196514
  Name?: string;
196193
196515
  Type?: string;
196194
196516
  };
@@ -206077,6 +206399,62 @@ export type VpcLatticeAuthPolicyProps = {
206077
206399
  export type VpcLatticeAuthPolicyAttributes = {
206078
206400
  State: "ACTIVE" | "INACTIVE";
206079
206401
  };
206402
+ /**
206403
+ * Resource type definition for `AWS::VpcLattice::DomainVerification`.
206404
+ * Creates a Lattice Domain Verification
206405
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-domainverification.html}
206406
+ */
206407
+ export type VpcLatticeDomainVerificationProps = {
206408
+ /**
206409
+ * @minLength `3`
206410
+ * @maxLength `255`
206411
+ */
206412
+ DomainName: string;
206413
+ /**
206414
+ * @minLength `0`
206415
+ * @maxLength `50`
206416
+ */
206417
+ Tags?: VpcLatticeDomainVerificationTag[];
206418
+ };
206419
+ /**
206420
+ * Attribute type definition for `AWS::VpcLattice::DomainVerification`.
206421
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-domainverification.html#aws-resource-vpclattice-domainverification-return-values}
206422
+ */
206423
+ export type VpcLatticeDomainVerificationAttributes = {
206424
+ /**
206425
+ * @minLength `20`
206426
+ * @maxLength `2048`
206427
+ * @pattern `^arn:[a-z0-9\-]+:vpc-lattice:[a-zA-Z0-9\-]+:\d{12}:domainverification/dv-[0-9a-z]{17}$`
206428
+ */
206429
+ Arn: string;
206430
+ /**
206431
+ * @minLength `20`
206432
+ * @maxLength `2048`
206433
+ * @pattern `^((dv-[0-9a-z]{17})|(arn:[a-z0-9\-]+:vpc-lattice:[a-zA-Z0-9\-]+:\d{12}:domainverification/dv-[0-9a-z]{17}))$`
206434
+ */
206435
+ Id: string;
206436
+ Status: "VERIFIED" | "PENDING" | "VERIFICATION_TIMED_OUT";
206437
+ TxtMethodConfig: {
206438
+ name: string;
206439
+ value: string;
206440
+ };
206441
+ };
206442
+ /**
206443
+ * Type definition for `AWS::VpcLattice::DomainVerification.Tag`.
206444
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-vpclattice-domainverification-tag.html}
206445
+ */
206446
+ export type VpcLatticeDomainVerificationTag = {
206447
+ /**
206448
+ * @minLength `1`
206449
+ * @maxLength `128`
206450
+ */
206451
+ Key: string;
206452
+ /**
206453
+ * @minLength `1`
206454
+ * @maxLength `256`
206455
+ */
206456
+ Value?: string;
206457
+ };
206080
206458
  /**
206081
206459
  * Resource type definition for `AWS::VpcLattice::Listener`.
206082
206460
  * Creates a listener for a service. Before you start using your Amazon VPC Lattice service, you must add one or more listeners. A listener is a process that checks for connection requests to your services.
@@ -206208,6 +206586,22 @@ export type VpcLatticeListenerWeightedTargetGroup = {
206208
206586
  */
206209
206587
  export type VpcLatticeResourceConfigurationProps = {
206210
206588
  AllowAssociationToSharableServiceNetwork?: boolean;
206589
+ /**
206590
+ * @minLength `3`
206591
+ * @maxLength `255`
206592
+ */
206593
+ CustomDomainName?: string;
206594
+ /**
206595
+ * @minLength `20`
206596
+ * @maxLength `20`
206597
+ * @pattern `^dv-[a-fA-F0-9]{17}$`
206598
+ */
206599
+ DomainVerificationId?: string;
206600
+ /**
206601
+ * @minLength `3`
206602
+ * @maxLength `255`
206603
+ */
206604
+ GroupDomain?: string;
206211
206605
  /**
206212
206606
  * @minLength `3`
206213
206607
  * @maxLength `40`
@@ -206712,6 +207106,7 @@ export type VpcLatticeServiceNetworkTag = {
206712
207106
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-servicenetworkresourceassociation.html}
206713
207107
  */
206714
207108
  export type VpcLatticeServiceNetworkResourceAssociationProps = {
207109
+ PrivateDnsEnabled?: boolean;
206715
207110
  /**
206716
207111
  * @minLength `17`
206717
207112
  * @maxLength `2048`
@@ -206871,6 +207266,8 @@ export type VpcLatticeServiceNetworkServiceAssociationTag = {
206871
207266
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-vpclattice-servicenetworkvpcassociation.html}
206872
207267
  */
206873
207268
  export type VpcLatticeServiceNetworkVpcAssociationProps = {
207269
+ DnsOptions?: VpcLatticeServiceNetworkVpcAssociationDnsOptions;
207270
+ PrivateDnsEnabled?: boolean;
206874
207271
  SecurityGroupIds?: string[];
206875
207272
  /**
206876
207273
  * @minLength `20`
@@ -206934,6 +207331,18 @@ export type VpcLatticeServiceNetworkVpcAssociationAttributes = {
206934
207331
  */
206935
207332
  VpcId: string;
206936
207333
  };
207334
+ /**
207335
+ * Type definition for `AWS::VpcLattice::ServiceNetworkVpcAssociation.DnsOptions`.
207336
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-vpclattice-servicenetworkvpcassociation-dnsoptions.html}
207337
+ */
207338
+ export type VpcLatticeServiceNetworkVpcAssociationDnsOptions = {
207339
+ PrivateDnsPreference?: "VERIFIED_DOMAINS_ONLY" | "ALL_DOMAINS" | "VERIFIED_DOMAINS_AND_SPECIFIED_DOMAINS" | "SPECIFIED_DOMAINS_ONLY";
207340
+ /**
207341
+ * @minLength `1`
207342
+ * @maxLength `10`
207343
+ */
207344
+ PrivateDnsSpecifiedDomains?: string[];
207345
+ };
206937
207346
  /**
206938
207347
  * Type definition for `AWS::VpcLattice::ServiceNetworkVpcAssociation.Tag`.
206939
207348
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-vpclattice-servicenetworkvpcassociation-tag.html}
@@ -214627,51 +215036,6 @@ export type XRayTransactionSearchConfigAttributes = {
214627
215036
  */
214628
215037
  AccountId: string;
214629
215038
  };
214630
- /**
214631
- * Resource Type definition for Dev::FSx::StorageVirtualMachine
214632
- */
214633
- export type DevFSxStorageVirtualMachineProps = {
214634
- ActiveDirectoryConfiguration?: DevFSxStorageVirtualMachineActiveDirectoryConfiguration;
214635
- FileSystemId: string;
214636
- Name: string;
214637
- RootVolumeSecurityStyle?: string;
214638
- SvmAdminPassword?: string;
214639
- Tags?: DevFSxStorageVirtualMachineTag[];
214640
- };
214641
- /**
214642
- * Attribute type definition for `Dev::FSx::StorageVirtualMachine`.
214643
- */
214644
- export type DevFSxStorageVirtualMachineAttributes = {
214645
- ResourceARN: string;
214646
- StorageVirtualMachineId: string;
214647
- UUID: string;
214648
- };
214649
- /**
214650
- * Type definition for `Dev::FSx::StorageVirtualMachine.ActiveDirectoryConfiguration`.
214651
- */
214652
- export type DevFSxStorageVirtualMachineActiveDirectoryConfiguration = {
214653
- NetBiosName?: string;
214654
- SelfManagedActiveDirectoryConfiguration?: DevFSxStorageVirtualMachineSelfManagedActiveDirectoryConfiguration;
214655
- };
214656
- /**
214657
- * Type definition for `Dev::FSx::StorageVirtualMachine.SelfManagedActiveDirectoryConfiguration`.
214658
- */
214659
- export type DevFSxStorageVirtualMachineSelfManagedActiveDirectoryConfiguration = {
214660
- DnsIps?: string[];
214661
- DomainJoinServiceAccountSecret?: string;
214662
- DomainName?: string;
214663
- FileSystemAdministratorsGroup?: string;
214664
- OrganizationalUnitDistinguishedName?: string;
214665
- Password?: string;
214666
- UserName?: string;
214667
- };
214668
- /**
214669
- * Type definition for `Dev::FSx::StorageVirtualMachine.Tag`.
214670
- */
214671
- export type DevFSxStorageVirtualMachineTag = {
214672
- Key: string;
214673
- Value: string;
214674
- };
214675
215039
  export interface ResourceTypes {
214676
215040
  "Alexa::ASK::Skill": AlexaASKSkillProps;
214677
215041
  "AWS::AccessAnalyzer::Analyzer": AccessAnalyzerAnalyzerProps;
@@ -215195,6 +215559,7 @@ export interface ResourceTypes {
215195
215559
  "AWS::EC2::VPCEndpointServicePermissions": EC2VPCEndpointServicePermissionsProps;
215196
215560
  "AWS::EC2::VPCGatewayAttachment": EC2VPCGatewayAttachmentProps;
215197
215561
  "AWS::EC2::VPCPeeringConnection": EC2VPCPeeringConnectionProps;
215562
+ "AWS::EC2::VPNConcentrator": EC2VPNConcentratorProps;
215198
215563
  "AWS::EC2::VPNConnection": EC2VPNConnectionProps;
215199
215564
  "AWS::EC2::VPNConnectionRoute": EC2VPNConnectionRouteProps;
215200
215565
  "AWS::EC2::VPNGateway": EC2VPNGatewayProps;
@@ -215322,6 +215687,7 @@ export interface ResourceTypes {
215322
215687
  "AWS::Glue::DataCatalogEncryptionSettings": GlueDataCatalogEncryptionSettingsProps;
215323
215688
  "AWS::Glue::DataQualityRuleset": GlueDataQualityRulesetProps;
215324
215689
  "AWS::Glue::DevEndpoint": GlueDevEndpointProps;
215690
+ "AWS::Glue::Integration": GlueIntegrationProps;
215325
215691
  "AWS::Glue::IntegrationResourceProperty": GlueIntegrationResourcePropertyProps;
215326
215692
  "AWS::Glue::Job": GlueJobProps;
215327
215693
  "AWS::Glue::MLTransform": GlueMLTransformProps;
@@ -216084,6 +216450,7 @@ export interface ResourceTypes {
216084
216450
  "AWS::VoiceID::Domain": VoiceIDDomainProps;
216085
216451
  "AWS::VpcLattice::AccessLogSubscription": VpcLatticeAccessLogSubscriptionProps;
216086
216452
  "AWS::VpcLattice::AuthPolicy": VpcLatticeAuthPolicyProps;
216453
+ "AWS::VpcLattice::DomainVerification": VpcLatticeDomainVerificationProps;
216087
216454
  "AWS::VpcLattice::Listener": VpcLatticeListenerProps;
216088
216455
  "AWS::VpcLattice::ResourceConfiguration": VpcLatticeResourceConfigurationProps;
216089
216456
  "AWS::VpcLattice::ResourceGateway": VpcLatticeResourceGatewayProps;
@@ -216152,7 +216519,6 @@ export interface ResourceTypes {
216152
216519
  "AWS::XRay::ResourcePolicy": XRayResourcePolicyProps;
216153
216520
  "AWS::XRay::SamplingRule": XRaySamplingRuleProps;
216154
216521
  "AWS::XRay::TransactionSearchConfig": XRayTransactionSearchConfigProps;
216155
- "Dev::FSx::StorageVirtualMachine": DevFSxStorageVirtualMachineProps;
216156
216522
  }
216157
216523
  export interface AttributeTypes {
216158
216524
  "Alexa::ASK::Skill": AlexaASKSkillAttributes;
@@ -216621,6 +216987,7 @@ export interface AttributeTypes {
216621
216987
  "AWS::EC2::VPCEndpointService": EC2VPCEndpointServiceAttributes;
216622
216988
  "AWS::EC2::VPCGatewayAttachment": EC2VPCGatewayAttachmentAttributes;
216623
216989
  "AWS::EC2::VPCPeeringConnection": EC2VPCPeeringConnectionAttributes;
216990
+ "AWS::EC2::VPNConcentrator": EC2VPNConcentratorAttributes;
216624
216991
  "AWS::EC2::VPNConnection": EC2VPNConnectionAttributes;
216625
216992
  "AWS::EC2::VPNGateway": EC2VPNGatewayAttributes;
216626
216993
  "AWS::EC2::VPNGatewayRoutePropagation": EC2VPNGatewayRoutePropagationAttributes;
@@ -216731,6 +217098,7 @@ export interface AttributeTypes {
216731
217098
  "AWS::Glue::DataCatalogEncryptionSettings": GlueDataCatalogEncryptionSettingsAttributes;
216732
217099
  "AWS::Glue::DataQualityRuleset": GlueDataQualityRulesetAttributes;
216733
217100
  "AWS::Glue::DevEndpoint": GlueDevEndpointAttributes;
217101
+ "AWS::Glue::Integration": GlueIntegrationAttributes;
216734
217102
  "AWS::Glue::IntegrationResourceProperty": GlueIntegrationResourcePropertyAttributes;
216735
217103
  "AWS::Glue::MLTransform": GlueMLTransformAttributes;
216736
217104
  "AWS::Glue::Partition": GluePartitionAttributes;
@@ -217400,6 +217768,7 @@ export interface AttributeTypes {
217400
217768
  "AWS::VoiceID::Domain": VoiceIDDomainAttributes;
217401
217769
  "AWS::VpcLattice::AccessLogSubscription": VpcLatticeAccessLogSubscriptionAttributes;
217402
217770
  "AWS::VpcLattice::AuthPolicy": VpcLatticeAuthPolicyAttributes;
217771
+ "AWS::VpcLattice::DomainVerification": VpcLatticeDomainVerificationAttributes;
217403
217772
  "AWS::VpcLattice::Listener": VpcLatticeListenerAttributes;
217404
217773
  "AWS::VpcLattice::ResourceConfiguration": VpcLatticeResourceConfigurationAttributes;
217405
217774
  "AWS::VpcLattice::ResourceGateway": VpcLatticeResourceGatewayAttributes;
@@ -217464,7 +217833,6 @@ export interface AttributeTypes {
217464
217833
  "AWS::XRay::Group": XRayGroupAttributes;
217465
217834
  "AWS::XRay::SamplingRule": XRaySamplingRuleAttributes;
217466
217835
  "AWS::XRay::TransactionSearchConfig": XRayTransactionSearchConfigAttributes;
217467
- "Dev::FSx::StorageVirtualMachine": DevFSxStorageVirtualMachineAttributes;
217468
217836
  }
217469
217837
  export declare const ResourceType: {
217470
217838
  readonly AlexaASKSkill: "Alexa::ASK::Skill";
@@ -217989,6 +218357,7 @@ export declare const ResourceType: {
217989
218357
  readonly EC2VPCEndpointServicePermissions: "AWS::EC2::VPCEndpointServicePermissions";
217990
218358
  readonly EC2VPCGatewayAttachment: "AWS::EC2::VPCGatewayAttachment";
217991
218359
  readonly EC2VPCPeeringConnection: "AWS::EC2::VPCPeeringConnection";
218360
+ readonly EC2VPNConcentrator: "AWS::EC2::VPNConcentrator";
217992
218361
  readonly EC2VPNConnection: "AWS::EC2::VPNConnection";
217993
218362
  readonly EC2VPNConnectionRoute: "AWS::EC2::VPNConnectionRoute";
217994
218363
  readonly EC2VPNGateway: "AWS::EC2::VPNGateway";
@@ -218116,6 +218485,7 @@ export declare const ResourceType: {
218116
218485
  readonly GlueDataCatalogEncryptionSettings: "AWS::Glue::DataCatalogEncryptionSettings";
218117
218486
  readonly GlueDataQualityRuleset: "AWS::Glue::DataQualityRuleset";
218118
218487
  readonly GlueDevEndpoint: "AWS::Glue::DevEndpoint";
218488
+ readonly GlueIntegration: "AWS::Glue::Integration";
218119
218489
  readonly GlueIntegrationResourceProperty: "AWS::Glue::IntegrationResourceProperty";
218120
218490
  readonly GlueJob: "AWS::Glue::Job";
218121
218491
  readonly GlueMLTransform: "AWS::Glue::MLTransform";
@@ -218878,6 +219248,7 @@ export declare const ResourceType: {
218878
219248
  readonly VoiceIDDomain: "AWS::VoiceID::Domain";
218879
219249
  readonly VpcLatticeAccessLogSubscription: "AWS::VpcLattice::AccessLogSubscription";
218880
219250
  readonly VpcLatticeAuthPolicy: "AWS::VpcLattice::AuthPolicy";
219251
+ readonly VpcLatticeDomainVerification: "AWS::VpcLattice::DomainVerification";
218881
219252
  readonly VpcLatticeListener: "AWS::VpcLattice::Listener";
218882
219253
  readonly VpcLatticeResourceConfiguration: "AWS::VpcLattice::ResourceConfiguration";
218883
219254
  readonly VpcLatticeResourceGateway: "AWS::VpcLattice::ResourceGateway";
@@ -218946,7 +219317,6 @@ export declare const ResourceType: {
218946
219317
  readonly XRayResourcePolicy: "AWS::XRay::ResourcePolicy";
218947
219318
  readonly XRaySamplingRule: "AWS::XRay::SamplingRule";
218948
219319
  readonly XRayTransactionSearchConfig: "AWS::XRay::TransactionSearchConfig";
218949
- readonly DevFSxStorageVirtualMachine: "Dev::FSx::StorageVirtualMachine";
218950
219320
  };
218951
219321
  export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
218952
219322
  export type AttributeTypeFor<T extends ResourceType> = T extends keyof AttributeTypes ? AttributeTypes[T] : never;