Skip to content

Commit 92dba49

Browse files
feat: update L1 CloudFormation resource definitions (#33676)
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 ```
1 parent b532c1b commit 92dba49

File tree

4 files changed

+19
-19
lines changed

4 files changed

+19
-19
lines changed

packages/@aws-cdk/integ-runner/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@
7676
"@aws-sdk/client-cloudformation": "^3",
7777
"@aws-cdk/cloudformation-diff": "^2",
7878
"@aws-cdk/cx-api": "0.0.0",
79-
"@aws-cdk/aws-service-spec": "^0.1.59",
79+
"@aws-cdk/aws-service-spec": "^0.1.60",
8080
"cdk-assets": "3.0.0-rc.145",
8181
"@aws-cdk/cdk-cli-wrapper": "0.0.0",
8282
"aws-cdk": "^2",

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.0",
139-
"@aws-cdk/aws-service-spec": "^0.1.59",
139+
"@aws-cdk/aws-service-spec": "^0.1.60",
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.59",
36-
"@aws-cdk/service-spec-importers": "^0.0.69",
37-
"@aws-cdk/service-spec-types": "^0.0.125",
35+
"@aws-cdk/aws-service-spec": "^0.1.60",
36+
"@aws-cdk/service-spec-importers": "^0.0.70",
37+
"@aws-cdk/service-spec-types": "^0.0.126",
3838
"@cdklabs/tskb": "^0.0.3",
3939
"@cdklabs/typewriter": "^0.0.3",
4040
"camelcase": "^6",

yarn.lock

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

69-
"@aws-cdk/aws-service-spec@^0.1.59":
70-
version "0.1.59"
71-
resolved "https://registry.npmjs.org/@aws-cdk/aws-service-spec/-/aws-service-spec-0.1.59.tgz#60b4cb6e82cca0a572793cdc297ea95f9aeec7bc"
72-
integrity sha512-OzCUYS6d5N+mFQRHH2QXtJp1+Ff08a1Z2UDW4wyPzIf1pi8sEltUzhvAqZUbZFA1Uq5210vTjmr/4WX2aoxqiw==
69+
"@aws-cdk/aws-service-spec@^0.1.60":
70+
version "0.1.60"
71+
resolved "https://registry.npmjs.org/@aws-cdk/aws-service-spec/-/aws-service-spec-0.1.60.tgz#06038eea8c7f7304b2838abf519c78106a0f6877"
72+
integrity sha512-jowfQo8F5i3ln1r0vB+bV3EeD35+dOIXmmvJ1FZ7qhcPiY4ftJ6zgrk94izKmu4hnza9edjxfXRiVej8rdhTkQ==
7373
dependencies:
74-
"@aws-cdk/service-spec-types" "^0.0.125"
74+
"@aws-cdk/service-spec-types" "^0.0.126"
7575
"@cdklabs/tskb" "^0.0.3"
7676

7777
"@aws-cdk/cloud-assembly-schema@^40.4.0", "@aws-cdk/cloud-assembly-schema@^40.6.0":
@@ -132,12 +132,12 @@
132132
resolved "https://registry.npmjs.org/@aws-cdk/lambda-layer-kubectl-v32/-/lambda-layer-kubectl-v32-2.0.1.tgz#8f77f30f16161fc07f1e82688ae7fa618c9a6d4e"
133133
integrity sha512-kysjeU/A5axsSLYhOzrIZgzZoCY4z9R2cYo/l6s7QA8mKbes3plmOGBQCRSCVQN2MhnXNk/a0kZOEfDUpLQung==
134134

135-
"@aws-cdk/service-spec-importers@^0.0.69":
136-
version "0.0.69"
137-
resolved "https://registry.npmjs.org/@aws-cdk/service-spec-importers/-/service-spec-importers-0.0.69.tgz#1ac77a650c84c8df364778aebbbd9b6564322b3f"
138-
integrity sha512-wZYCCgWcLqTXmtD6JD2hxkIsRhFWKuoR0RBkLBxklpqpSFfn4Q8BDDO75mv5hJctm6/2aD5dyVfUXVn/EJyA5g==
135+
"@aws-cdk/service-spec-importers@^0.0.70":
136+
version "0.0.70"
137+
resolved "https://registry.npmjs.org/@aws-cdk/service-spec-importers/-/service-spec-importers-0.0.70.tgz#46cc1b0777cd2ac65086e968d7fe336aff014bbd"
138+
integrity sha512-5CWQQG+tqjnB2a3Cf9mIs6Hp2sqwCLVN5ex83JVK79J053F4X0N+CHvMM03Q31f+I/hj6TmohO194TUQJEwNWA==
139139
dependencies:
140-
"@aws-cdk/service-spec-types" "^0.0.125"
140+
"@aws-cdk/service-spec-types" "^0.0.126"
141141
"@cdklabs/tskb" "^0.0.3"
142142
ajv "^6"
143143
canonicalize "^2.0.0"
@@ -155,10 +155,10 @@
155155
dependencies:
156156
"@cdklabs/tskb" "^0.0.3"
157157

158-
"@aws-cdk/service-spec-types@^0.0.125":
159-
version "0.0.125"
160-
resolved "https://registry.npmjs.org/@aws-cdk/service-spec-types/-/service-spec-types-0.0.125.tgz#1b173fee47e85db202f6ad76bf4df4cf5db9efd6"
161-
integrity sha512-WUJMKzL4v9alzJtfdBXMH2hxtwrfk6H5RXjiYaF8SS5L2Aq/zk7TywkYaPf9OjI+39k9oIrrm/8cGv1XvAa0SQ==
158+
"@aws-cdk/service-spec-types@^0.0.126":
159+
version "0.0.126"
160+
resolved "https://registry.npmjs.org/@aws-cdk/service-spec-types/-/service-spec-types-0.0.126.tgz#f6f1365db643a7ff2b0c0474514f38f59d4aa953"
161+
integrity sha512-+QflFRUtSj6dE0g6YlTSV1UFVQM3TGOsgCVsaCuBWixcU4XKG+e4E0V0WgKh6PeUkhY3zqUuclPkaclB0wYKcg==
162162
dependencies:
163163
"@cdklabs/tskb" "^0.0.3"
164164

0 commit comments

Comments
 (0)