Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

feat: update L1 CloudFormation resource definitions #33676

Merged
merged 1 commit into from
Mar 3, 2025

Conversation

aws-cdk-automation
Copy link
Collaborator

Updates the L1 CloudFormation resource definitions with the latest changes from @aws-cdk/aws-service-spec

L1 CloudFormation resource definition changes:

├[~] service aws-apigateway
│ └ resources
│    └[~]  resource AWS::ApiGateway::RestApi
│       └ properties
│          └ Parameters: - Map<string, string> | string ⇐ Map<string, string>
│                        + Map<string, string>
├[~] service aws-batch
│ └ resources
│    ├[+]  resource AWS::Batch::ConsumableResource
│    │  ├      name: ConsumableResource
│    │  │      cloudFormationType: AWS::Batch::ConsumableResource
│    │  │      documentation: Creates an AWS Batch consumable resource.
│    │  │      tagInformation: {"tagPropertyName":"Tags","variant":"map"}
│    │  ├ properties
│    │  │  ├ ConsumableResourceName: string (immutable)
│    │  │  ├ TotalQuantity: integer (required)
│    │  │  ├ ResourceType: string (required, immutable)
│    │  │  └ Tags: Map<string, string> (immutable)
│    │  └ attributes
│    │     ├ ConsumableResourceArn: string
│    │     ├ CreatedAt: integer
│    │     ├ InUseQuantity: integer
│    │     └ AvailableQuantity: integer
│    └[~]  resource AWS::Batch::JobDefinition
│       ├ properties
│       │  └[+] ConsumableResourceProperties: ConsumableResourceProperties
│       └ types
│          ├[+]  type ConsumableResourceProperties
│          │  ├      documentation: Contains a list of consumable resources required by a job.
│          │  │      name: ConsumableResourceProperties
│          │  └ properties
│          │     └ ConsumableResourceList: Array<ConsumableResourceRequirement> (required)
│          ├[+]  type ConsumableResourceRequirement
│          │  ├      documentation: Information about a consumable resource required to run a job.
│          │  │      name: ConsumableResourceRequirement
│          │  └ properties
│          │     ├ ConsumableResource: string (required)
│          │     └ Quantity: integer (required)
│          └[~] type NodeRangeProperty
│            └ properties
│               └[+] ConsumableResourceProperties: ConsumableResourceProperties
├[~] service aws-bedrock
│ └ resources
│    ├[~]  resource AWS::Bedrock::Prompt
│    │  └ types
│    │     ├[+]  type PromptMetadataEntry
│    │     │  ├      documentation: Contains a key-value pair that defines a metadata tag and value to attach to a prompt variant. For more information, see [Create a prompt using Prompt management](https://docs.aws.amazon.com/bedrock/latest/userguide/prompt-management-create.html) .
│    │     │  │      name: PromptMetadataEntry
│    │     │  └ properties
│    │     │     ├ Key: string (required)
│    │     │     └ Value: string (required)
│    │     └[~] type PromptVariant
│    │       └ properties
│    │          └[+] Metadata: Array<PromptMetadataEntry>
│    └[~]  resource AWS::Bedrock::PromptVersion
│       └ types
│          ├[+]  type PromptMetadataEntry
│          │  ├      documentation: Contains a key-value pair that defines a metadata tag and value to attach to a prompt variant. For more information, see [Create a prompt using Prompt management](https://docs.aws.amazon.com/bedrock/latest/userguide/prompt-management-create.html) .
│          │  │      name: PromptMetadataEntry
│          │  └ properties
│          │     ├ Key: string (required)
│          │     └ Value: string (required)
│          └[~] type PromptVariant
│            └ properties
│               └[+] Metadata: Array<PromptMetadataEntry>
├[~] service aws-cloudformation
│ └ resources
│    ├[~]  resource AWS::CloudFormation::GuardHook
│    │  └ types
│    │     ├[+]  type HookTarget
│    │     │  ├      documentation: Hook targets are the destination where hooks will be invoked against.
│    │     │  │      name: HookTarget
│    │     │  └ properties
│    │     │     ├ TargetName: string (required)
│    │     │     ├ Action: string (required)
│    │     │     └ InvocationPoint: string (required)
│    │     └[~] type TargetFilters
│    │       └ properties
│    │          └[+] Targets: Array<HookTarget> (required)
│    └[~]  resource AWS::CloudFormation::LambdaHook
│       └ types
│          ├[+]  type HookTarget
│          │  ├      documentation: Hook targets are the destination where hooks will be invoked against.
│          │  │      name: HookTarget
│          │  └ properties
│          │     ├ TargetName: string (required)
│          │     ├ Action: string (required)
│          │     └ InvocationPoint: string (required)
│          └[~] type TargetFilters
│            └ properties
│               └[+] Targets: Array<HookTarget> (required)
├[~] service aws-cloudfront
│ └ resources
│    └[~]  resource AWS::CloudFront::Distribution
│       └ types
│          └[~] type Origin
│            └      - documentation: An origin.
│                   An origin is the location where content is stored, and from which CloudFront gets content to serve to viewers. To specify an origin:
│                   - Use `S3OriginConfig` to specify an Amazon S3 bucket that is not configured with static website hosting.
│                   - Use `CustomOriginConfig` to specify all other kinds of origins, including:
│                   - An Amazon S3 bucket that is configured with static website hosting
│                   - An Elastic Load Balancing load balancer
│                   - An AWS Elemental MediaPackage endpoint
│                   - An AWS Elemental MediaStore container
│                   - Any other HTTP server, running on an Amazon EC2 instance or any other kind of host
│                   For the current maximum number of origins that you can specify per distribution, see [General Quotas on Web Distributions](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/cloudfront-limits.html#limits-web-distributions) in the *Amazon CloudFront Developer Guide* (quotas were formerly referred to as limits).
│                   + documentation: An origin.
│                   An origin is the location where content is stored, and from which CloudFront gets content to serve to viewers. To specify an origin:
│                   - Use `S3OriginConfig` to specify an Amazon S3 bucket that is not configured with static website hosting.
│                   - Use `VpcOriginConfig` to specify a VPC origin.
│                   - Use `CustomOriginConfig` to specify all other kinds of origins, including:
│                   - An Amazon S3 bucket that is configured with static website hosting
│                   - An Elastic Load Balancing load balancer
│                   - An AWS Elemental MediaPackage endpoint
│                   - An AWS Elemental MediaStore container
│                   - Any other HTTP server, running on an Amazon EC2 instance or any other kind of host
│                   For the current maximum number of origins that you can specify per distribution, see [General Quotas on Web Distributions](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/cloudfront-limits.html#limits-web-distributions) in the *Amazon CloudFront Developer Guide* (quotas were formerly referred to as limits).
├[~] service aws-cloudtrail
│ └ resources
│    └[~]  resource AWS::CloudTrail::Trail
│       └ properties
│          └ SnsTopicName: (documentation changed)
├[~] service aws-databrew
│ └ resources
│    └[~]  resource AWS::DataBrew::Recipe
│       └ types
│          └[~] type Action
│            └ properties
│               └ Parameters: - RecipeParameters | Map<string, string> ⇐ Map<string, string>
│                             + Map<string, string>
├[~] service aws-datazone
│ └ resources
│    └[~]  resource AWS::DataZone::Domain
│       └ properties
│          ├[+] DomainVersion: string (immutable)
│          └[+] ServiceRole: string
├[~] service aws-ec2
│ └ resources
│    ├[~]  resource AWS::EC2::IPAM
│    │  ├ properties
│    │  │  └ DefaultResourceDiscoveryOrganizationalUnitExclusions: (documentation changed)
│    │  └ types
│    │     └[~] type IpamOrganizationalUnitExclusion
│    │       └      - documentation: If your IPAM is integrated with AWS Organizations and you add an organizational unit (OU) exclusion, IPAM will not manage the IP addresses in accounts in that OU exclusion.
│    │              + documentation: If your IPAM is integrated with AWS Organizations, you can exclude an [organizational unit (OU)](https://docs.aws.amazon.com/organizations/latest/userguide/orgs_getting-started_concepts.html#organizationalunit) from being managed by IPAM. When you exclude an OU, IPAM will not manage the IP addresses in accounts in that OU. For more information, see [Exclude organizational units from IPAM](https://docs.aws.amazon.com/vpc/latest/ipam/exclude-ous.html) in the *Amazon Virtual Private Cloud IP Address Manager User Guide* .
│    └[~]  resource AWS::EC2::IPAMResourceDiscovery
│       ├ properties
│       │  └ OrganizationalUnitExclusions: (documentation changed)
│       └ types
│          └[~] type IpamResourceDiscoveryOrganizationalUnitExclusion
│            ├      - documentation: If your IPAM is integrated with AWS Organizations and you add an organizational unit (OU) exclusion, IPAM will not manage the IP addresses in accounts in that OU exclusion.
│            │      + documentation: If your IPAM is integrated with AWS Organizations, you can exclude an [organizational unit (OU)](https://docs.aws.amazon.com/organizations/latest/userguide/orgs_getting-started_concepts.html#organizationalunit) from being managed by IPAM. When you exclude an OU, IPAM will not manage the IP addresses in accounts in that OU. For more information, see [Exclude organizational units from IPAM](https://docs.aws.amazon.com/vpc/latest/ipam/exclude-ous.html) in the *Amazon Virtual Private Cloud IP Address Manager User Guide* .
│            └ properties
│               └ OrganizationsEntityPath: (documentation changed)
├[~] service aws-ecr
│ └ resources
│    └[~]  resource AWS::ECR::RepositoryCreationTemplate
│       └ properties
│          └ RepositoryPolicy: (documentation changed)
├[~] service aws-guardduty
│ └ resources
│    ├[~]  resource AWS::GuardDuty::MalwareProtectionPlan
│    │  └ types
│    │     └[~] type CFNStatusReasons
│    │       └ properties
│    │          └ Message: (documentation changed)
│    └[~]  resource AWS::GuardDuty::PublishingDestination
│       ├      - documentation: Resource Type definition for AWS::GuardDuty::PublishingDestination
│       │      + documentation: Creates a publishing destination where you can export your GuardDuty findings. Before you start exporting the findings, the destination resource must exist.
│       │      For more information about considerations and permissions, see [Exporting GuardDuty findings to Amazon S3 buckets](https://docs.aws.amazon.com/guardduty/latest/ug/guardduty_exportfindings.html) in the *Amazon GuardDuty User Guide* .
│       ├ properties
│       │  ├ DestinationProperties: (documentation changed)
│       │  ├ DestinationType: (documentation changed)
│       │  ├ DetectorId: (documentation changed)
│       │  └ Tags: (documentation changed)
│       └ types
│          ├[~] type CFNDestinationProperties
│          │ ├      - documentation: undefined
│          │ │      + documentation: Contains the Amazon Resource Name (ARN) of the resource that receives the published findings, such as an S3 bucket, and the ARN of the KMS key that is used to encrypt these published findings.
│          │ └ properties
│          │    └ DestinationArn: (documentation changed)
│          └[~] type TagItem
│            ├      - documentation: undefined
│            │      + documentation: Describes a tag.
│            └ properties
│               ├ Key: (documentation changed)
│               └ Value: (documentation changed)
├[~] service aws-iotsitewise
│ └ resources
│    └[~]  resource AWS::IoTSiteWise::Gateway
│       └ types
│          └[~] type GatewayPlatform
│            └ properties
│               └ Greengrass: (documentation changed)
├[~] service aws-lambda
│ └ resources
│    └[~]  resource AWS::Lambda::Function
│       └ properties
│          └ PackageType: - string
│                         + string (immutable)
├[~] service aws-mediapackagev2
│ └ resources
│    └[~]  resource AWS::MediaPackageV2::Channel
│       ├ properties
│       │  ├ InputSwitchConfiguration: (documentation changed)
│       │  └ OutputHeaderConfiguration: (documentation changed)
│       └ types
│          ├[~] type InputSwitchConfiguration
│          │ ├      - documentation: <p>The configuration for input switching based on the media quality confidence score (MQCS) as provided from AWS Elemental MediaLive.</p>
│          │ │      + documentation: The configuration for input switching based on the media quality confidence score (MQCS) as provided from AWS Elemental MediaLive.
│          │ └ properties
│          │    └ MQCSInputSwitching: (documentation changed)
│          └[~] type OutputHeaderConfiguration
│            ├      - documentation: <p>The settings for what common media server data (CMSD) headers AWS Elemental MediaPackage includes in responses to the CDN.</p>
│            │      + documentation: The settings for what common media server data (CMSD) headers AWS Elemental MediaPackage includes in responses to the CDN.
│            └ properties
│               └ PublishMQCS: (documentation changed)
├[~] service aws-nimblestudio
│ └ resources
│    ├[~]  resource AWS::NimbleStudio::LaunchProfile
│    │  └      - tagInformation: {"tagPropertyName":"Tags","variant":"map"}
│    │         + tagInformation: undefined
│    ├[~]  resource AWS::NimbleStudio::StreamingImage
│    │  └      - tagInformation: {"tagPropertyName":"Tags","variant":"map"}
│    │         + tagInformation: undefined
│    └[~]  resource AWS::NimbleStudio::StudioComponent
│       └      - tagInformation: {"tagPropertyName":"Tags","variant":"map"}
│              + tagInformation: undefined
├[~] service aws-pcaconnectorad
│ └ resources
│    └[~]  resource AWS::PCAConnectorAD::Connector
│       └ types
│          └[~] type VpcInformation
│            └ properties
│               └[+] IpAddressType: string
├[~] service aws-pipes
│ └ resources
│    └[~]  resource AWS::Pipes::Pipe
│       └ types
│          └[~] type PipeTargetCloudWatchLogsParameters
│            └ properties
│               └ Timestamp: (documentation changed)
├[~] service aws-quicksight
│ └ resources
│    ├[~]  resource AWS::QuickSight::Analysis
│    │  └ types
│    │     ├[~] type GeospatialLayerMapConfiguration
│    │     │ └ properties
│    │     │    └ Interactions: - json
│    │     │                    + VisualInteractionOptions
│    │     ├[~] type GeospatialMapConfiguration
│    │     │ └ properties
│    │     │    └ Interactions: - json
│    │     │                    + VisualInteractionOptions
│    │     ├[~] type ImageMenuOption
│    │     │ └ properties
│    │     │    └ AvailabilityStatus: - json
│    │     │                          + string
│    │     ├[~] type Sheet
│    │     │ └ properties
│    │     │    └[-] Images: Array<SheetImage>
│    │     └[+]  type VisualInteractionOptions
│    │        ├      documentation: The general visual interactions setup for visual publish options
│    │        │      name: VisualInteractionOptions
│    │        └ properties
│    │           ├ ContextMenuOption: json
│    │           └ VisualMenuOption: json
│    ├[~]  resource AWS::QuickSight::Dashboard
│    │  └ types
│    │     ├[~] type DashboardPublishOptions
│    │     │ └ properties
│    │     │    └ VisualMenuOption: - json ⇐ VisualMenuOption
│    │     │                        + VisualMenuOption
│    │     ├[~] type GeospatialLayerMapConfiguration
│    │     │ └ properties
│    │     │    └ Interactions: - json
│    │     │                    + VisualInteractionOptions
│    │     ├[~] type GeospatialMapConfiguration
│    │     │ └ properties
│    │     │    └ Interactions: - json
│    │     │                    + VisualInteractionOptions
│    │     ├[~] type Sheet
│    │     │ └ properties
│    │     │    └[-] Images: Array<SheetImage>
│    │     ├[+]  type VisualInteractionOptions
│    │     │  ├      documentation: The general visual interactions setup for visual publish options
│    │     │  │      name: VisualInteractionOptions
│    │     │  └ properties
│    │     │     ├ ContextMenuOption: json
│    │     │     └ VisualMenuOption: VisualMenuOption
│    │     └[~] type VisualMenuOption
│    │       ├      - documentation: undefined
│    │       │      + documentation: The menu options for a visual.
│    │       └ properties
│    │          └ AvailabilityStatus: (documentation changed)
│    └[~]  resource AWS::QuickSight::Template
│       └ types
│          ├[~] type ImageMenuOption
│          │ └ properties
│          │    └ AvailabilityStatus: - json
│          │                          + string
│          └[~] type Sheet
│            └ properties
│               └[-] Images: Array<SheetImage>
├[~] service aws-rds
│ └ resources
│    └[~]  resource AWS::RDS::DBCluster
│       └ properties
│          └ DatabaseInsightsMode: (documentation changed)
├[~] service aws-sagemaker
│ └ resources
│    ├[~]  resource AWS::SageMaker::Cluster
│    │  ├ properties
│    │  │  └ InstanceGroups: (documentation changed)
│    │  └ types
│    │     └[~] type ClusterInstanceGroup
│    │       └ properties
│    │          └ OverrideVpcConfig: (documentation changed)
│    ├[~]  resource AWS::SageMaker::Domain
│    │  └ types
│    │     └[~] type KernelGatewayAppSettings
│    │       └ properties
│    │          └ CustomImages: (documentation changed)
│    ├[~]  resource AWS::SageMaker::EndpointConfig
│    │  └ types
│    │     └[~] type ProductionVariant
│    │       └ properties
│    │          └[+] InferenceAmiVersion: string
│    ├[~]  resource AWS::SageMaker::ModelPackage
│    │  ├      - documentation: A versioned model that can be deployed for SageMaker inference.
│    │  │      + documentation: A container for your trained model that can be deployed for SageMaker inference. This can include inference code, artifacts, and metadata. The model package type can be one of the following.
│    │  │      - Versioned model: A part of a model package group in Model Registry.
│    │  │      - Unversioned model: Not part of a model package group and used in AWS Marketplace.
│    │  │      For more information, see [`CreateModelPackage`](https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateModelPackage.html) .
│    │  └ properties
│    │     └ ModelPackageName: (documentation changed)
│    ├[~]  resource AWS::SageMaker::ModelPackageGroup
│    │  └      - documentation: A group of versioned models in the model registry.
│    │         + documentation: A group of versioned models in the Model Registry.
│    ├[~]  resource AWS::SageMaker::Space
│    │  └ types
│    │     └[~] type KernelGatewayAppSettings
│    │       └ properties
│    │          └ CustomImages: (documentation changed)
│    └[~]  resource AWS::SageMaker::UserProfile
│       └ types
│          └[~] type KernelGatewayAppSettings
│            └ properties
│               └ CustomImages: (documentation changed)
├[~] service aws-sam
│ └ resources
│    └[~]  resource AWS::Serverless::Function
│       └ types
│          └[~] type ApiEvent
│            └ properties
│               └ RequestParameters: - Array<string | Map<string, RequestParameter>> ⇐ Array<string | RequestParameter> (immutable)
│                                    + Array<string | RequestParameter> (immutable)
├[~] service aws-vpclattice
│ └ resources
│    └[~]  resource AWS::VpcLattice::ResourceConfiguration
│       └ types
│          ├[+]  type DnsResource
│          │  ├      documentation: The domain name of the resource configuration.
│          │  │      name: DnsResource
│          │  └ properties
│          │     ├ IpAddressType: string (required)
│          │     └ DomainName: string (required)
│          └[~] type ResourceConfigurationDefinition
│            └ properties
│               ├[+] ArnResource: string
│               ├[+] DnsResource: DnsResource
│               └ IpResource: - string (required)
│                             + string
├[~] service aws-wafv2
│ └ resources
│    ├[~]  resource AWS::WAFv2::RuleGroup
│    │  └ types
│    │     ├[~] type FieldToMatch
│    │     │ └ properties
│    │     │    └[+] JA4Fingerprint: JA4Fingerprint
│    │     ├[+]  type JA4Fingerprint
│    │     │  ├      documentation: Includes the JA4 fingerprint of a web request.
│    │     │  │      name: JA4Fingerprint
│    │     │  └ properties
│    │     │     └ FallbackBehavior: string (required)
│    │     ├[~] type RateBasedStatementCustomKey
│    │     │ └ properties
│    │     │    ├[+] JA3Fingerprint: RateLimitJA3Fingerprint
│    │     │    └[+] JA4Fingerprint: RateLimitJA4Fingerprint
│    │     ├[+]  type RateLimitJA3Fingerprint
│    │     │  ├      documentation: Specifies the request's JA3 fingerprint as an aggregate key for a rate-based rule.
│    │     │  │      name: RateLimitJA3Fingerprint
│    │     │  └ properties
│    │     │     └ FallbackBehavior: string (required)
│    │     └[+]  type RateLimitJA4Fingerprint
│    │        ├      documentation: Specifies the request's JA4 fingerprint as an aggregate key for a rate-based rule.
│    │        │      name: RateLimitJA4Fingerprint
│    │        └ properties
│    │           └ FallbackBehavior: string (required)
│    └[~]  resource AWS::WAFv2::WebACL
│       └ types
│          ├[~] type FieldToMatch
│          │ └ properties
│          │    └[+] JA4Fingerprint: JA4Fingerprint
│          ├[+]  type JA4Fingerprint
│          │  ├      documentation: Includes the JA4 fingerprint of a web request.
│          │  │      name: JA4Fingerprint
│          │  └ properties
│          │     └ FallbackBehavior: string (required)
│          ├[~] type RateBasedStatementCustomKey
│          │ └ properties
│          │    ├[+] JA3Fingerprint: RateLimitJA3Fingerprint
│          │    └[+] JA4Fingerprint: RateLimitJA4Fingerprint
│          ├[+]  type RateLimitJA3Fingerprint
│          │  ├      documentation: Specifies the request's JA3 fingerprint as an aggregate key for a rate-based rule.
│          │  │      name: RateLimitJA3Fingerprint
│          │  └ properties
│          │     └ FallbackBehavior: string (required)
│          └[+]  type RateLimitJA4Fingerprint
│             ├      documentation: Specifies the request's JA4 fingerprint as an aggregate key for a rate-based rule.
│             │      name: RateLimitJA4Fingerprint
│             └ properties
│                └ FallbackBehavior: string (required)
├[~] service aws-wisdom
│ └ resources
│    ├[~]  resource AWS::Wisdom::AIAgent
│    │  └ types
│    │     ├[~] type AIAgentConfiguration
│    │     │ └ properties
│    │     │    └[-] SessionSummarizationAIAgentConfiguration: SessionSummarizationAIAgentConfiguration
│    │     └[-]  type SessionSummarizationAIAgentConfiguration
│    │        ├      name: SessionSummarizationAIAgentConfiguration
│    │        └ properties
│    │           ├ SessionSummarizationAIPromptId: string
│    │           └ Locale: string
│    └[~]  resource AWS::Wisdom::AIPrompt
│       └ properties
│          └ ModelId: (documentation changed)
├[~] service aws-workspacesthinclient
│ └ resources
│    └[~]  resource AWS::WorkSpacesThinClient::Environment
│       └ properties
│          └ DesktopArn: (documentation changed)
└[~] service aws-workspacesweb
  └ resources
     └[~]  resource AWS::WorkSpacesWeb::UserSettings
        ├ properties
        │  └[+] ToolbarConfiguration: ToolbarConfiguration
        └ types
           └[+]  type ToolbarConfiguration
              ├      documentation: The configuration of the toolbar. This allows administrators to select the toolbar type and visual mode, set maximum display resolution for sessions, and choose which items are visible to end users during their sessions. If administrators do not modify these settings, end users retain control over their toolbar preferences.
              │      name: ToolbarConfiguration
              └ properties
                 ├ ToolbarType: string
                 ├ VisualMode: string
                 ├ HiddenToolbarItems: Array<string>
                 └ MaxDisplayResolution: string

Updates the L1 CloudFormation resource definitions with the latest changes from `@aws-cdk/aws-service-spec`
@aws-cdk-automation aws-cdk-automation added auto-approve contribution/core This is a PR that came from AWS. dependencies This issue is a problem in a dependency or a pull request that updates a dependency file. pr-linter/exempt-readme The PR linter will not require README changes pr-linter/exempt-test The PR linter will not require test changes pr-linter/exempt-integ-test The PR linter will not require integ test changes labels Mar 3, 2025
@aws-cdk-automation aws-cdk-automation requested a review from a team March 3, 2025 13:45
@github-actions github-actions bot added the p2 label Mar 3, 2025
@aws-cdk-automation aws-cdk-automation requested a review from a team March 3, 2025 13:46
Copy link

codecov bot commented Mar 3, 2025

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 82.21%. Comparing base (b532c1b) to head (098b096).

Additional details and impacted files
@@           Coverage Diff           @@
##             main   #33676   +/-   ##
=======================================
  Coverage   82.21%   82.21%           
=======================================
  Files         119      119           
  Lines        6876     6876           
  Branches     1162     1162           
=======================================
  Hits         5653     5653           
  Misses       1120     1120           
  Partials      103      103           
Flag Coverage Δ
suite.unit 82.21% <ø> (ø)

Flags with carried forward coverage won't be shown. Click here to find out more.

Components Coverage Δ
packages/aws-cdk ∅ <ø> (∅)
packages/aws-cdk-lib/core 82.21% <ø> (ø)

@aws-cdk-automation
Copy link
Collaborator Author

AWS CodeBuild CI Report

  • CodeBuild project: AutoBuildv2Project1C6BFA3F-wQm2hXv2jqQv
  • Commit ID: 098b096
  • Result: SUCCEEDED
  • Build Logs (available for 30 days)

Powered by github-codebuild-logs, available on the AWS Serverless Application Repository

Copy link
Contributor

mergify bot commented Mar 3, 2025

Thank you for contributing! Your pull request will be updated from main and then merged automatically (do not update manually, and be sure to allow changes to be pushed to your fork).

@mergify mergify bot merged commit 92dba49 into main Mar 3, 2025
52 checks passed
@mergify mergify bot deleted the automation/spec-update branch March 3, 2025 14:15
Copy link

github-actions bot commented Mar 3, 2025

Comments on closed issues and PRs are hard for our team to see.
If you need help, please open a new issue that references this one.

@github-actions github-actions bot locked as resolved and limited conversation to collaborators Mar 3, 2025
# for free to subscribe to this conversation on GitHub. Already have an account? #.
Labels
auto-approve contribution/core This is a PR that came from AWS. dependencies This issue is a problem in a dependency or a pull request that updates a dependency file. p2 pr-linter/exempt-integ-test The PR linter will not require integ test changes pr-linter/exempt-readme The PR linter will not require README changes pr-linter/exempt-test The PR linter will not require test changes
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant