Skip to content

Conversation

aws-cdk-automation
Copy link
Collaborator

@aws-cdk-automation aws-cdk-automation commented May 26, 2025

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

L1 CloudFormation resource definition changes:

├[~] service aws-aps
│ └ resources
│    └[~]  resource AWS::APS::Workspace
│       ├ properties
│       │  └[+] QueryLoggingConfiguration: QueryLoggingConfiguration
│       └ types
│          ├[+]  type CloudWatchLogDestination
│          │  ├      documentation: Represents a cloudwatch logs destination for query logging
│          │  │      name: CloudWatchLogDestination
│          │  └ properties
│          │     └ LogGroupArn: string (required)
│          ├[+]  type LoggingDestination
│          │  ├      documentation: Destinations for query logging
│          │  │      name: LoggingDestination
│          │  └ properties
│          │     ├ CloudWatchLogs: CloudWatchLogDestination (required)
│          │     └ Filters: LoggingFilter (required)
│          ├[+]  type LoggingFilter
│          │  ├      documentation: Filters for logging
│          │  │      name: LoggingFilter
│          │  └ properties
│          │     └ QspThreshold: integer (required)
│          └[+]  type QueryLoggingConfiguration
│             ├      documentation: Query logging configuration
│             │      name: QueryLoggingConfiguration
│             └ properties
│                └ Destinations: Array<LoggingDestination> (required)
├[~] service aws-bedrock
│ └ resources
│    ├[~]  resource AWS::Bedrock::Flow
│    │  └ types
│    │     ├[~] type FlowNodeConfiguration
│    │     │ └ properties
│    │     │    └[+] InlineCode: InlineCodeFlowNodeConfiguration
│    │     └[+]  type InlineCodeFlowNodeConfiguration
│    │        ├      documentation: Inline code config strucuture, contains code configs
│    │        │      name: InlineCodeFlowNodeConfiguration
│    │        └ properties
│    │           ├ Code: string (required)
│    │           └ Language: string (required)
│    ├[~]  resource AWS::Bedrock::FlowAlias
│    │  ├ properties
│    │  │  └[+] ConcurrencyConfiguration: FlowAliasConcurrencyConfiguration
│    │  └ types
│    │     └[+]  type FlowAliasConcurrencyConfiguration
│    │        ├      name: FlowAliasConcurrencyConfiguration
│    │        └ properties
│    │           ├ Type: string (required)
│    │           └ MaxConcurrency: number
│    └[~]  resource AWS::Bedrock::FlowVersion
│       └ types
│          ├[~] type FlowNodeConfiguration
│          │ └ properties
│          │    └[+] InlineCode: InlineCodeFlowNodeConfiguration
│          └[+]  type InlineCodeFlowNodeConfiguration
│             ├      documentation: Inline code config strucuture, contains code configs
│             │      name: InlineCodeFlowNodeConfiguration
│             └ properties
│                ├ Code: string (required)
│                └ Language: string (required)
├[~] service aws-ses
│ └ resources
│    └[+]  resource AWS::SES::MailManagerAddressList
│       ├      name: MailManagerAddressList
│       │      cloudFormationType: AWS::SES::MailManagerAddressList
│       │      documentation: Definition of AWS::SES::MailManagerAddressList Resource Type
│       │      tagInformation: {"tagPropertyName":"Tags","variant":"standard"}
│       ├ properties
│       │  ├ AddressListName: string (immutable)
│       │  └ Tags: Array<tag>
│       └ attributes
│          ├ AddressListId: string
│          └ AddressListArn: string
└[~] service aws-vpclattice
  └ resources
     ├[~]  resource AWS::VpcLattice::ResourceConfiguration
     │  └ properties
     │     ├ Name: - string
     │     │       + string (required)
     │     └ ResourceConfigurationType: - string (immutable)
     │                                  + string (required, immutable)
     └[~]  resource AWS::VpcLattice::ResourceGateway
        └ properties
           ├ Name: - string (immutable)
           │       + string (required, immutable)
           ├ SubnetIds: - Array<string> (immutable)
           │            + Array<string> (required, immutable)
           └ VpcIdentifier: - string (immutable)
                            + string (required, immutable)

BREAKING CHANGE: Some L1 resources experienced breaking changes due to updated CloudFormation resources. Please check the notes for each specific module for more information.

  • aws-cdl-lib.vpc_lattice: the name and resourceConfigurationType property in CfnResourceConfigurationProps has changed from optional to required. Also, the name, subnetIds and vpcIdentifier properties in CfnResourceGatewayProps have changed form optional to mandatory.

Updates the L1 CloudFormation resource definitions with the latest changes from `@aws-cdk/aws-service-spec`
@aws-cdk-automation aws-cdk-automation added 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 May 26, 2025
@aws-cdk-automation aws-cdk-automation requested review from a team May 26, 2025 13:47
@github-actions github-actions bot added the p2 label May 26, 2025
@aws-cdk-automation aws-cdk-automation added the pr/needs-maintainer-review This PR needs a review from a Core Team Member label May 26, 2025
@aemada-aws
Copy link
Contributor

aemada-aws commented May 27, 2025

service aws-vpclattice
  └ resources
     ├[~]  resource AWS::VpcLattice::ResourceConfiguration
     │  └ properties
     │     ├ Name: - string
     │     │       + string (required)
     │     └ ResourceConfigurationType: - string (immutable)
     │                                  + string (required, immutable)
     └[~]  resource AWS::VpcLattice::ResourceGateway
        └ properties
           ├ Name: - string (immutable)
           │       + string (required, immutable)
           ├ SubnetIds: - Array<string> (immutable)
           │            + Array<string> (required, immutable)
           └ VpcIdentifier: - string (immutable)
                            + string (required, immutable)

the added required attributes here are a breaking change

@alvazjor alvazjor changed the title feat: update L1 CloudFormation resource definitions feat(cloudformation): update L1 CloudFormation resource definitions May 27, 2025
@alvazjor alvazjor added the pr-linter/exempt-breaking-change The PR linter will not require stability in stable modules label May 27, 2025
Copy link
Contributor

@alvazjor alvazjor left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

approved

@aws-cdk-automation aws-cdk-automation removed the pr/needs-maintainer-review This PR needs a review from a Core Team Member label May 27, 2025
Copy link
Contributor

mergify bot commented May 27, 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).

@aws-cdk-automation
Copy link
Collaborator Author

AWS CodeBuild CI Report

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

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

@mergify mergify bot merged commit 64662b2 into main May 27, 2025
16 checks passed
Copy link
Contributor

mergify bot commented May 27, 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 deleted the automation/spec-update branch May 27, 2025 12:23
Copy link
Contributor

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 May 27, 2025
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
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-breaking-change The PR linter will not require stability in stable modules 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.

3 participants