Skip to content
This repository has been archived by the owner on Oct 17, 2024. It is now read-only.

Commit

Permalink
fix(schema): CloudFormation Updates (#531)
Browse files Browse the repository at this point in the history
Co-authored-by: Rúben Fonseca <[email protected]>
  • Loading branch information
github-actions[bot] and rubenfonseca authored Dec 31, 2022
1 parent 1e9181a commit d72e4af
Show file tree
Hide file tree
Showing 13 changed files with 488 additions and 77 deletions.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 0 additions & 5 deletions cloudformation/lambda/aws-lambda-eventsourcemapping.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions cloudformation/sns/aws-sns-subscription.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

69 changes: 57 additions & 12 deletions schema/cdk.go
Original file line number Diff line number Diff line change
Expand Up @@ -25774,6 +25774,33 @@ var CdkSchema = `{
],
"type": "object"
},
"AWS::CloudFront::ResponseHeadersPolicy.RemoveHeader": {
"additionalProperties": false,
"properties": {
"Header": {
"type": "string"
}
},
"required": [
"Header"
],
"type": "object"
},
"AWS::CloudFront::ResponseHeadersPolicy.RemoveHeadersConfig": {
"additionalProperties": false,
"properties": {
"Items": {
"items": {
"$ref": "#/definitions/AWS::CloudFront::ResponseHeadersPolicy.RemoveHeader"
},
"type": "array"
}
},
"required": [
"Items"
],
"type": "object"
},
"AWS::CloudFront::ResponseHeadersPolicy.ResponseHeadersPolicyConfig": {
"additionalProperties": false,
"properties": {
Expand All @@ -25789,6 +25816,9 @@ var CdkSchema = `{
"Name": {
"type": "string"
},
"RemoveHeadersConfig": {
"$ref": "#/definitions/AWS::CloudFront::ResponseHeadersPolicy.RemoveHeadersConfig"
},
"SecurityHeadersConfig": {
"$ref": "#/definitions/AWS::CloudFront::ResponseHeadersPolicy.SecurityHeadersConfig"
},
Expand Down Expand Up @@ -94676,9 +94706,6 @@ var CdkSchema = `{
},
"type": "array"
},
"ScalingConfig": {
"$ref": "#/definitions/AWS::Lambda::EventSourceMapping.ScalingConfig"
},
"SelfManagedEventSource": {
"$ref": "#/definitions/AWS::Lambda::EventSourceMapping.SelfManagedEventSource"
},
Expand Down Expand Up @@ -94793,15 +94820,6 @@ var CdkSchema = `{
},
"type": "object"
},
"AWS::Lambda::EventSourceMapping.ScalingConfig": {
"additionalProperties": false,
"properties": {
"MaximumConcurrency": {
"type": "number"
}
},
"type": "object"
},
"AWS::Lambda::EventSourceMapping.SelfManagedEventSource": {
"additionalProperties": false,
"properties": {
Expand Down Expand Up @@ -111777,6 +111795,9 @@ var CdkSchema = `{
"AWS::NimbleStudio::LaunchProfile.StreamConfiguration": {
"additionalProperties": false,
"properties": {
"AutomaticTerminationMode": {
"type": "string"
},
"ClipboardMode": {
"type": "string"
},
Expand All @@ -111792,6 +111813,9 @@ var CdkSchema = `{
"MaxStoppedSessionLengthInMinutes": {
"type": "number"
},
"SessionPersistenceMode": {
"type": "string"
},
"SessionStorage": {
"$ref": "#/definitions/AWS::NimbleStudio::LaunchProfile.StreamConfigurationSessionStorage"
},
Expand All @@ -111800,6 +111824,9 @@ var CdkSchema = `{
"type": "string"
},
"type": "array"
},
"VolumeConfiguration": {
"$ref": "#/definitions/AWS::NimbleStudio::LaunchProfile.VolumeConfiguration"
}
},
"required": [
Expand Down Expand Up @@ -111839,6 +111866,21 @@ var CdkSchema = `{
},
"type": "object"
},
"AWS::NimbleStudio::LaunchProfile.VolumeConfiguration": {
"additionalProperties": false,
"properties": {
"Iops": {
"type": "number"
},
"Size": {
"type": "number"
},
"Throughput": {
"type": "number"
}
},
"type": "object"
},
"AWS::NimbleStudio::StreamingImage": {
"additionalProperties": false,
"properties": {
Expand Down Expand Up @@ -134139,6 +134181,9 @@ var CdkSchema = `{
"FilterPolicy": {
"type": "object"
},
"FilterPolicyScope": {
"type": "string"
},
"Protocol": {
"type": "string"
},
Expand Down
Loading

0 comments on commit d72e4af

Please sign in to comment.