Skip to content

Commit be6210f

Browse files
feat: update L1 CloudFormation resource definitions (#34029)
Updates the L1 CloudFormation resource definitions with the latest changes from `@aws-cdk/aws-service-spec` **L1 CloudFormation resource definition changes:** ``` ├[~] service aws-amplify │ └ resources │ ├[~] resource AWS::Amplify::App │ │ └ properties │ │ └ ComputeRoleArn: (documentation changed) │ └[~] resource AWS::Amplify::Branch │ └ properties │ ├ ComputeRoleArn: (documentation changed) │ └ EnableSkewProtection: (documentation changed) ├[~] service aws-apigateway │ └ resources │ ├[~] resource AWS::ApiGateway::DomainName │ │ ├ properties │ │ │ └ EndpointConfiguration: (documentation changed) │ │ └ types │ │ └[~] type EndpointConfiguration │ │ ├ - documentation: The `EndpointConfiguration` property type specifies the endpoint types of an Amazon API Gateway domain name. │ │ │ `EndpointConfiguration` is a property of the [AWS::ApiGateway::DomainName](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html) resource. │ │ │ + documentation: The `EndpointConfiguration` property type specifies the endpoint types and IP address types of an Amazon API Gateway domain name. │ │ │ `EndpointConfiguration` is a property of the [AWS::ApiGateway::DomainName](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html) resource. │ │ └ properties │ │ └ IpAddressType: (documentation changed) │ ├[~] resource AWS::ApiGateway::DomainNameV2 │ │ ├ properties │ │ │ └ EndpointConfiguration: (documentation changed) │ │ └ types │ │ └[~] type EndpointConfiguration │ │ └ - documentation: The endpoint configuration to indicate the types of endpoints an API (RestApi) or its custom domain name (DomainName) has. │ │ + documentation: The endpoint configuration to indicate the types of endpoints an API (RestApi) or its custom domain name (DomainName) has and the IP address types that can invoke it. │ └[~] resource AWS::ApiGateway::RestApi │ ├ properties │ │ └ EndpointConfiguration: (documentation changed) │ └ types │ └[~] type EndpointConfiguration │ ├ - documentation: The `EndpointConfiguration` property type specifies the endpoint types of a REST API. │ │ `EndpointConfiguration` is a property of the [AWS::ApiGateway::RestApi](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html) resource. │ │ + documentation: The `EndpointConfiguration` property type specifies the endpoint types and IP address types of a REST API. │ │ `EndpointConfiguration` is a property of the [AWS::ApiGateway::RestApi](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-restapi.html) resource. │ └ properties │ └ IpAddressType: (documentation changed) ├[~] service aws-apigatewayv2 │ └ resources │ ├[~] resource AWS::ApiGatewayV2::Api │ │ └ properties │ │ └[+] IpAddressType: string │ └[~] resource AWS::ApiGatewayV2::DomainName │ └ types │ └[~] type DomainNameConfiguration │ └ properties │ └[+] IpAddressType: string ├[~] service aws-appconfig │ └ resources │ ├[~] resource AWS::AppConfig::ConfigurationProfile │ │ └ properties │ │ └ DeletionProtectionCheck: (documentation changed) │ ├[~] resource AWS::AppConfig::Environment │ │ └ properties │ │ └ DeletionProtectionCheck: (documentation changed) │ ├[~] resource AWS::AppConfig::Extension │ │ └ types │ │ └[~] type Action │ │ └ properties │ │ └ Name: (documentation changed) │ └[~] resource AWS::AppConfig::HostedConfigurationVersion │ └ properties │ └ Description: (documentation changed) ├[~] service aws-bedrock │ └ resources │ ├[~] resource AWS::Bedrock::Guardrail │ │ └ types │ │ └[~] type ContentFilterConfig │ │ └ properties │ │ ├[+] InputModalities: Array<string> │ │ └[+] OutputModalities: Array<string> │ ├[~] resource AWS::Bedrock::KnowledgeBase │ │ └ types │ │ ├[+] type MongoDbAtlasConfiguration │ │ │ ├ documentation: Contains details about the storage configuration of the knowledge base in MongoDB Atlas. │ │ │ │ name: MongoDbAtlasConfiguration │ │ │ └ properties │ │ │ ├ Endpoint: string (required) │ │ │ ├ CredentialsSecretArn: string (required) │ │ │ ├ DatabaseName: string (required) │ │ │ ├ CollectionName: string (required) │ │ │ ├ VectorIndexName: string (required) │ │ │ ├ EndpointServiceName: string │ │ │ └ FieldMapping: MongoDbAtlasFieldMapping (required) │ │ ├[+] type MongoDbAtlasFieldMapping │ │ │ ├ documentation: Contains the names of the fields to which to map information about the vector store. │ │ │ │ name: MongoDbAtlasFieldMapping │ │ │ └ properties │ │ │ ├ VectorField: string (required) │ │ │ ├ TextField: string (required) │ │ │ └ MetadataField: string (required) │ │ ├[+] type NeptuneAnalyticsConfiguration │ │ │ ├ documentation: Contains details about the storage configuration of the knowledge base in Amazon Neptune Analytics. For more information, see [Create a vector index in Amazon Neptune Analytics](https://docs.aws.amazon.com/bedrock/latest/userguide/knowledge-base-setup-neptune.html) . │ │ │ │ name: NeptuneAnalyticsConfiguration │ │ │ └ properties │ │ │ ├ GraphArn: string (required) │ │ │ └ FieldMapping: NeptuneAnalyticsFieldMapping (required) │ │ ├[+] type NeptuneAnalyticsFieldMapping │ │ │ ├ documentation: Contains the names of the fields to which to map information about the vector store. │ │ │ │ name: NeptuneAnalyticsFieldMapping │ │ │ └ properties │ │ │ ├ TextField: string (required) │ │ │ └ MetadataField: string (required) │ │ └[~] type StorageConfiguration │ │ └ properties │ │ ├[+] MongoDbAtlasConfiguration: MongoDbAtlasConfiguration │ │ └[+] NeptuneAnalyticsConfiguration: NeptuneAnalyticsConfiguration │ ├[~] resource AWS::Bedrock::Prompt │ │ └ types │ │ ├[~] type SpecificToolChoice │ │ │ └ - documentation: The model must request a specific tool. For example, `{"tool" : {"name" : "Your tool name"}}` . For more information, see [Call a tool with the Converse API](https://docs.aws.amazon.com/bedrock/latest/userguide/tool-use.html) in the Amazon Bedrock User Guide │ │ │ > This field is only supported by Amazon Nova models and Anthropic Claude 3 models. │ │ │ + documentation: The model must request a specific tool. For example, `{"tool" : {"name" : "Your tool name"}}` . For more information, see [Call a tool with the Converse API](https://docs.aws.amazon.com/bedrock/latest/userguide/tool-use.html) in the Amazon Bedrock User Guide │ │ │ > This field is only supported by Anthropic Claude 3 models. │ │ └[~] type ToolChoice │ │ └ properties │ │ └ Tool: (documentation changed) │ └[~] resource AWS::Bedrock::PromptVersion │ └ types │ ├[~] type SpecificToolChoice │ │ └ - documentation: The model must request a specific tool. For example, `{"tool" : {"name" : "Your tool name"}}` . For more information, see [Call a tool with the Converse API](https://docs.aws.amazon.com/bedrock/latest/userguide/tool-use.html) in the Amazon Bedrock User Guide │ │ > This field is only supported by Amazon Nova models and Anthropic Claude 3 models. │ │ + documentation: The model must request a specific tool. For example, `{"tool" : {"name" : "Your tool name"}}` . For more information, see [Call a tool with the Converse API](https://docs.aws.amazon.com/bedrock/latest/userguide/tool-use.html) in the Amazon Bedrock User Guide │ │ > This field is only supported by Anthropic Claude 3 models. │ └[~] type ToolChoice │ └ properties │ └ Tool: (documentation changed) ├[~] service aws-budgets │ └ resources │ ├[~] resource AWS::Budgets::Budget │ │ ├ - documentation: The `AWS::Budgets::Budget` resource allows customers to take pre-defined actions that will trigger once a budget threshold has been exceeded. creates, replaces, or deletes budgets for Billing and Cost Management. For more information, see [Managing Your Costs with Budgets](https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/budgets-managing-costs.html) in the *AWS Billing and Cost Management User Guide* . │ │ │ + documentation: The `AWS::Budgets::Budget` resource allows customers to take pre-defined actions that will trigger once a budget threshold has been exceeded. creates, replaces, or deletes budgets for Billing and Cost Management. For more information, see [Managing Your Costs with Budgets](https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/budgets-managing-costs.html) in the *Billing and Cost Management User Guide* . │ │ └ types │ │ ├[~] type BudgetData │ │ │ └ properties │ │ │ └ TimePeriod: (documentation changed) │ │ └[~] type TimePeriod │ │ └ properties │ │ ├ End: (documentation changed) │ │ └ Start: (documentation changed) │ └[~] resource AWS::Budgets::BudgetsAction │ └ - documentation: The `AWS::Budgets::BudgetsAction` resource enables you to take predefined actions that are initiated when a budget threshold has been exceeded. For more information, see [Managing Your Costs with Budgets](https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/budgets-managing-costs.html) in the *AWS Billing and Cost Management User Guide* . │ + documentation: The `AWS::Budgets::BudgetsAction` resource enables you to take predefined actions that are initiated when a budget threshold has been exceeded. For more information, see [Managing Your Costs with Budgets](https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/budgets-managing-costs.html) in the *Billing and Cost Management User Guide* . ├[~] service aws-cassandra │ └ resources │ └[~] resource AWS::Cassandra::Keyspace │ └ types │ └[~] type ReplicationSpecification │ └ properties │ └ RegionList: (documentation changed) ├[~] service aws-ce │ └ resources │ └[~] resource AWS::CE::CostCategory │ └ - documentation: The `AWS::CE::CostCategory` resource creates groupings of cost that you can use across products in the AWS Billing and Cost Management console, such as Cost Explorer and AWS Budgets. For more information, see [Managing Your Costs with Cost Categories](https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/manage-cost-categories.html) in the *AWS Billing and Cost Management User Guide* . │ + documentation: The `AWS::CE::CostCategory` resource creates groupings of cost that you can use across products in the Billing and Cost Management console, such as Cost Explorer and AWS Budgets. For more information, see [Managing Your Costs with Cost Categories](https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/manage-cost-categories.html) in the *Billing and Cost Management User Guide* . ├[~] service aws-codebuild │ └ resources │ └[~] resource AWS::CodeBuild::Project │ └ types │ └[~] type ProjectCache │ └ properties │ └[+] CacheNamespace: string ├[~] service aws-ec2 │ └ resources │ ├[~] resource AWS::EC2::Instance │ │ └ types │ │ ├[~] type EnaSrdSpecification │ │ │ ├ - documentation: Specifies the ENA Express settings for the network interface that's attached to the instance. │ │ │ │ + documentation: ENA Express uses AWS Scalable Reliable Datagram (SRD) technology to increase the maximum bandwidth used per stream and minimize tail latency of network traffic between EC2 instances. With ENA Express, you can communicate between two EC2 instances in the same subnet within the same account, or in different accounts. Both sending and receiving instances must have ENA Express enabled. │ │ │ │ To improve the reliability of network packet delivery, ENA Express reorders network packets on the receiving end by default. However, some UDP-based applications are designed to handle network packets that are out of order to reduce the overhead for packet delivery at the network layer. When ENA Express is enabled, you can specify whether UDP network traffic uses it. │ │ │ └ properties │ │ │ ├ EnaSrdEnabled: (documentation changed) │ │ │ └ EnaSrdUdpSpecification: (documentation changed) │ │ └[~] type EnaSrdUdpSpecification │ │ ├ - documentation: Contains ENA Express settings for UDP network traffic for the network interface that's attached to the instance. │ │ │ + documentation: ENA Express is compatible with both TCP and UDP transport protocols. When it's enabled, TCP traffic automatically uses it. However, some UDP-based applications are designed to handle network packets that are out of order, without a need for retransmission, such as live video broadcasting or other near-real-time applications. For UDP traffic, you can specify whether to use ENA Express, based on your application environment needs. │ │ └ properties │ │ └ EnaSrdUdpEnabled: (documentation changed) │ ├[+] resource AWS::EC2::RouteServer │ │ ├ name: RouteServer │ │ │ cloudFormationType: AWS::EC2::RouteServer │ │ │ documentation: VPC Route Server │ │ │ tagInformation: {"tagPropertyName":"Tags","variant":"standard"} │ │ ├ properties │ │ │ ├ AmazonSideAsn: integer (required, immutable) │ │ │ ├ PersistRoutes: string │ │ │ ├ PersistRoutesDuration: integer │ │ │ ├ SnsNotificationsEnabled: boolean │ │ │ └ Tags: Array<tag> │ │ └ attributes │ │ ├ Arn: string │ │ └ Id: string │ ├[+] resource AWS::EC2::RouteServerAssociation │ │ ├ name: RouteServerAssociation │ │ │ cloudFormationType: AWS::EC2::RouteServerAssociation │ │ │ documentation: VPC Route Server Association │ │ └ properties │ │ ├ RouteServerId: string (required, immutable) │ │ └ VpcId: string (required, immutable) │ ├[+] resource AWS::EC2::RouteServerEndpoint │ │ ├ name: RouteServerEndpoint │ │ │ cloudFormationType: AWS::EC2::RouteServerEndpoint │ │ │ documentation: VPC Route Server Endpoint │ │ │ tagInformation: {"tagPropertyName":"Tags","variant":"standard"} │ │ ├ properties │ │ │ ├ RouteServerId: string (required, immutable) │ │ │ ├ SubnetId: string (required, immutable) │ │ │ └ Tags: Array<tag> │ │ └ attributes │ │ ├ Arn: string │ │ ├ Id: string │ │ ├ EniId: string │ │ ├ EniAddress: string │ │ └ VpcId: string │ ├[+] resource AWS::EC2::RouteServerPeer │ │ ├ name: RouteServerPeer │ │ │ cloudFormationType: AWS::EC2::RouteServerPeer │ │ │ documentation: VPC Route Server Peer │ │ │ tagInformation: {"tagPropertyName":"Tags","variant":"standard"} │ │ ├ properties │ │ │ ├ RouteServerEndpointId: string (required, immutable) │ │ │ ├ PeerAddress: string (required, immutable) │ │ │ ├ BgpOptions: BgpOptions (required, immutable) │ │ │ └ Tags: Array<tag> │ │ ├ attributes │ │ │ ├ Arn: string │ │ │ ├ Id: string │ │ │ ├ RouteServerId: string │ │ │ ├ EndpointEniId: string │ │ │ ├ EndpointEniAddress: string │ │ │ ├ SubnetId: string │ │ │ └ VpcId: string │ │ └ types │ │ └ type BgpOptions │ │ ├ documentation: BGP Options │ │ │ name: BgpOptions │ │ └ properties │ │ ├ PeerAsn: integer │ │ └ PeerLivenessDetection: string │ └[+] resource AWS::EC2::RouteServerPropagation │ ├ name: RouteServerPropagation │ │ cloudFormationType: AWS::EC2::RouteServerPropagation │ │ documentation: VPC Route Server Propagation │ └ properties │ ├ RouteServerId: string (required, immutable) │ └ RouteTableId: string (required, immutable) ├[~] service aws-eks │ └ resources │ └[~] resource AWS::EKS::Cluster │ ├ properties │ │ └ RemoteNetworkConfig: - RemoteNetworkConfig (immutable) │ │ + RemoteNetworkConfig │ │ (documentation changed) │ └ types │ └[~] type RemoteNetworkConfig │ └ - documentation: The configuration in the cluster for EKS Hybrid Nodes. You can't change or update this configuration after the cluster is created. │ + documentation: The configuration in the cluster for EKS Hybrid Nodes. You can add, change, or remove this configuration after the cluster is created. ├[~] service aws-identitystore │ └ resources │ ├[~] resource AWS::IdentityStore::Group │ │ ├ - documentation: A group object that contains the metadata and attributes for a specified group. │ │ │ + documentation: A group object, which contains a specified group’s metadata and attributes. │ │ ├ properties │ │ │ └ Description: (documentation changed) │ │ └ attributes │ │ └ GroupId: (documentation changed) │ └[~] resource AWS::IdentityStore::GroupMembership │ ├ properties │ │ └ MemberId: (documentation changed) │ ├ attributes │ │ └ MembershipId: (documentation changed) │ └ types │ └[~] type MemberId │ └ - documentation: An object containing the identifier of a group member. │ + documentation: An object that contains the identifier of a group member. Setting the `UserID` field to the specific identifier for a user indicates that the user is a member of the group. ├[~] service aws-omics │ └ resources │ └[~] resource AWS::Omics::Workflow │ └ - documentation: Creates a workflow. │ + documentation: Creates a private workflow.Private workflows depend on a variety of resources that you create and configure before creating the workflow: │ - *Input data* : Input data for the workflow, stored in an S3 bucket or a AWS HealthOmics sequence store. │ - *Workflow definition files* : Define your workflow in one or more workflow definition files, written in WDL, Nextflow, or CWL. The workflow definition specifies the inputs and outputs for runs that use the workflow. It also includes specifications for the runs and run tasks for your workflow, including compute and memory requirements. │ - *Parameter template files* : Define run parameters using a parameter template file (written in JSON). │ - *ECR container images* : Create one or more container images for the workflow. Store the images in a private ECR repository. │ - (Optional) *Sentieon licenses* : Request a Sentieon license if you plan to use Sentieon software in a private workflow. │ For more information, see [Creating private workflows in AWS HealthOmics](https://docs.aws.amazon.com/omics/latest/dev/workflows-setup.html) in the AWS HealthOmics User Guide. ├[~] service aws-pcaconnectorad │ └ resources │ └[~] resource AWS::PCAConnectorAD::Connector │ └ types │ └[~] type VpcInformation │ └ properties │ └ IpAddressType: (documentation changed) ├[~] service aws-quicksight │ └ resources │ └[~] resource AWS::QuickSight::DataSet │ ├ properties │ │ └ UseAs: (documentation changed) │ └ types │ ├[~] type DataSetRefreshProperties │ │ └ properties │ │ └ FailureConfiguration: (documentation changed) │ ├[~] type RefreshFailureConfiguration │ │ ├ - documentation: undefined │ │ │ + documentation: The failure configuration of a dataset. │ │ └ properties │ │ └ EmailAlert: (documentation changed) │ └[~] type RefreshFailureEmailAlert │ ├ - documentation: undefined │ │ + documentation: The configuration settings for the email alerts that are sent when a dataset refresh fails. │ └ properties │ └ AlertStatus: (documentation changed) ├[~] service aws-route53 │ └ resources │ └[~] resource AWS::Route53::HostedZone │ └ properties │ └ HostedZoneTags: (documentation changed) ├[~] service aws-rum │ └ resources │ └[~] resource AWS::RUM::AppMonitor │ ├ properties │ │ └ DomainList: (documentation changed) │ └ types │ └[~] type JavaScriptSourceMaps │ └ properties │ └ Status: (documentation changed) ├[~] service aws-sagemaker │ └ resources │ └[~] resource AWS::SageMaker::PartnerApp │ └ properties │ └[+] KmsKeyId: string (immutable) ├[~] service aws-systemsmanagersap │ └ resources │ └[~] resource AWS::SystemsManagerSAP::Application │ └ types │ └[~] type ComponentInfo │ ├ - documentation: undefined │ │ + documentation: This is information about the component of your SAP application, such as Web Dispatcher. │ └ properties │ ├ ComponentType: (documentation changed) │ ├ Ec2InstanceId: (documentation changed) │ └ Sid: (documentation changed) ├[~] service aws-transfer │ └ resources │ ├[~] resource AWS::Transfer::Certificate │ │ ├ - documentation: Imports the signing and encryption certificates that you need to create local (AS2) profiles and partner profiles. │ │ │ + documentation: Imports the signing and encryption certificates that you need to create local (AS2) profiles and partner profiles. │ │ │ You can import both the certificate and its chain in the `Certificate` parameter. │ │ │ > If you use the `Certificate` parameter to upload both the certificate and its chain, don't use the `CertificateChain` parameter. │ │ └ properties │ │ ├ ActiveDate: (documentation changed) │ │ └ InactiveDate: (documentation changed) │ ├[~] resource AWS::Transfer::Connector │ │ └ types │ │ └[~] type As2Config │ │ └ properties │ │ └ MdnResponse: (documentation changed) │ └[~] resource AWS::Transfer::Server │ └ properties │ └ LoggingRole: (documentation changed) └[~] service aws-wafv2 └ resources ├[~] resource AWS::WAFv2::RuleGroup │ └ types │ ├[~] type FieldToMatch │ │ └ properties │ │ └ UriFragment: (documentation changed) │ └[~] type UriFragment │ ├ - documentation: The path component of the URI Fragment. This is the part of a web request that identifies a fragment uri, for example, /abcd#introduction │ │ + documentation: Inspect fragments of the request URI. You can specify the parts of the URI fragment to inspect and you can narrow the set of URI fragments to inspect by including or excluding specific keys. │ │ This is used to indicate the web request component to inspect, in the `FieldToMatch` specification. │ │ Example JSON: `"UriFragment": { "MatchPattern": { "All": {} }, "MatchScope": "KEY", "OversizeHandling": "MATCH" }` │ └ properties │ └ FallbackBehavior: (documentation changed) └[~] resource AWS::WAFv2::WebACL └ types ├[~] type FieldToMatch │ └ properties │ └ UriFragment: (documentation changed) └[~] type UriFragment ├ - documentation: The path component of the URI Fragment. This is the part of a web request that identifies a fragment uri, for example, /abcd#introduction │ + documentation: Inspect fragments of the request URI. You can specify the parts of the URI fragment to inspect and you can narrow the set of URI fragments to inspect by including or excluding specific keys. │ This is used to indicate the web request component to inspect, in the `FieldToMatch` specification. │ Example JSON: `"UriFragment": { "MatchPattern": { "All": {} }, "MatchScope": "KEY", "OversizeHandling": "MATCH" }` └ properties └ FallbackBehavior: (documentation changed) ```
1 parent e839d45 commit be6210f

File tree

3 files changed

+18
-25
lines changed

3 files changed

+18
-25
lines changed

packages/aws-cdk-lib/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@
136136
},
137137
"devDependencies": {
138138
"@aws-cdk/lambda-layer-kubectl-v31": "^2.0.3",
139-
"@aws-cdk/aws-service-spec": "^0.1.65",
139+
"@aws-cdk/aws-service-spec": "^0.1.66",
140140
"@aws-cdk/cdk-build-tools": "0.0.0",
141141
"@aws-cdk/custom-resource-handlers": "0.0.0",
142142
"@aws-cdk/pkglint": "0.0.0",

tools/@aws-cdk/spec2cdk/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@
3232
},
3333
"license": "Apache-2.0",
3434
"dependencies": {
35-
"@aws-cdk/aws-service-spec": "^0.1.65",
36-
"@aws-cdk/service-spec-importers": "^0.0.74",
37-
"@aws-cdk/service-spec-types": "^0.0.131",
35+
"@aws-cdk/aws-service-spec": "^0.1.66",
36+
"@aws-cdk/service-spec-importers": "^0.0.75",
37+
"@aws-cdk/service-spec-types": "^0.0.132",
3838
"@cdklabs/tskb": "^0.0.3",
3939
"@cdklabs/typewriter": "^0.0.5",
4040
"camelcase": "^6",

yarn.lock

+14-21
Original file line numberDiff line numberDiff line change
@@ -66,12 +66,12 @@
6666
"@aws-cdk/service-spec-types" "^0.0.128"
6767
"@cdklabs/tskb" "^0.0.3"
6868

69-
"@aws-cdk/aws-service-spec@^0.1.65":
70-
version "0.1.65"
71-
resolved "https://registry.npmjs.org/@aws-cdk/aws-service-spec/-/aws-service-spec-0.1.65.tgz#2290890cd9cbfe9550a18f732f6a870706cb92b6"
72-
integrity sha512-jCIm5qrlQMYnawc1jS2F9GKDGZ36nnIG+uA4dtbt0TIHV+Lk6eaY7fqSxxjf9OMGYuYOpn01gWJUWUQ0uTPKGA==
69+
"@aws-cdk/aws-service-spec@^0.1.66":
70+
version "0.1.66"
71+
resolved "https://registry.npmjs.org/@aws-cdk/aws-service-spec/-/aws-service-spec-0.1.66.tgz#db2f3c3dd3305c1a6d894b41bbc7bfaf9c000224"
72+
integrity sha512-ghBGil4pYn9zdQ5SJ0dJnl+v1q4MS7pdUf7D2AphIfWTeSuw/2QscBS9hMbBBHCI6d0THS1jaBiKnRv3+uJECw==
7373
dependencies:
74-
"@aws-cdk/service-spec-types" "^0.0.131"
74+
"@aws-cdk/service-spec-types" "^0.0.132"
7575
"@cdklabs/tskb" "^0.0.3"
7676

7777
"@aws-cdk/cloud-assembly-schema@^41.0.0":
@@ -117,12 +117,12 @@
117117
resolved "https://registry.npmjs.org/@aws-cdk/lambda-layer-kubectl-v32/-/lambda-layer-kubectl-v32-2.1.0.tgz#6b9beb4b6b09af74ec48f0c778e50732d7bbb54b"
118118
integrity sha512-a+zvCLapTg8R0P/Nrecc8mKV+ZgAwvkndn4/zlb43e14zRlc4/ozvmeghUT2eoyyaWJv+PwqgWohEXXec3kpSw==
119119

120-
"@aws-cdk/service-spec-importers@^0.0.74":
121-
version "0.0.74"
122-
resolved "https://registry.npmjs.org/@aws-cdk/service-spec-importers/-/service-spec-importers-0.0.74.tgz#3d05d800b22f82d36d8aa2e9270e91a74f41d344"
123-
integrity sha512-tDE1SIBbDdR8XgpR6BT69vM4cfoAf7MWU9FbiYhQ5ItMv19x2kKMr4873d7Pi80+2HMr3mCS7+a6a1wMY/daFg==
120+
"@aws-cdk/service-spec-importers@^0.0.75":
121+
version "0.0.75"
122+
resolved "https://registry.npmjs.org/@aws-cdk/service-spec-importers/-/service-spec-importers-0.0.75.tgz#4c5ec4f3cefe34ff37df661b753a38098da7aa11"
123+
integrity sha512-3B7RPlDxEzs2limUOUZCL+UJNe7djIjhbHDr6xFiKqz2WGtqrpvlBSCCUSLjk8Y1TT4FmWIWiNpk2pqIm/D/ww==
124124
dependencies:
125-
"@aws-cdk/service-spec-types" "^0.0.130"
125+
"@aws-cdk/service-spec-types" "^0.0.132"
126126
"@cdklabs/tskb" "^0.0.3"
127127
ajv "^6"
128128
canonicalize "^2.1.0"
@@ -140,17 +140,10 @@
140140
dependencies:
141141
"@cdklabs/tskb" "^0.0.3"
142142

143-
"@aws-cdk/service-spec-types@^0.0.130":
144-
version "0.0.130"
145-
resolved "https://registry.npmjs.org/@aws-cdk/service-spec-types/-/service-spec-types-0.0.130.tgz#631ea0a2a1701807e8e9bdf9ed3cc5892b92312a"
146-
integrity sha512-W+QtjyP+QYE+FLLLMtYNat8sWr9Gv8JYQT5/Po+RhdrbxJYq78glJDm97WdlWnbR64PFS/3prAuL+PZ9ZIWRRQ==
147-
dependencies:
148-
"@cdklabs/tskb" "^0.0.3"
149-
150-
"@aws-cdk/service-spec-types@^0.0.131":
151-
version "0.0.131"
152-
resolved "https://registry.npmjs.org/@aws-cdk/service-spec-types/-/service-spec-types-0.0.131.tgz#7cd3df0681d4fb32c6f5b3988d2dbeb31849b6fc"
153-
integrity sha512-m0Kewp3I6xSP60IAOWI+KVC96CPDNtDxfeRV+yj6nBwsI8PCMmy8W6+EOMAgGTmYa/frKCJ9PDrXepGzVpTEQQ==
143+
"@aws-cdk/service-spec-types@^0.0.132":
144+
version "0.0.132"
145+
resolved "https://registry.npmjs.org/@aws-cdk/service-spec-types/-/service-spec-types-0.0.132.tgz#de30ad27c951f182299365fb680e9a7ae6d74000"
146+
integrity sha512-DuBsNUgiAlXUpo1MLKvD44iIjKxdfqKd181blPdzvVQ0AYGOoP0OIBxAElLsqyVhUhsRDLli0nA2RoRmAjnaUQ==
154147
dependencies:
155148
"@cdklabs/tskb" "^0.0.3"
156149

0 commit comments

Comments
 (0)