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

fix(schema): CloudFormation Updates #510

Merged
merged 1 commit into from
Oct 15, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 42 additions & 0 deletions cloudformation/budgets/aws-budgets-budget_autoadjustdata.go

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

5 changes: 5 additions & 0 deletions cloudformation/budgets/aws-budgets-budget_budgetdata.go

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

37 changes: 37 additions & 0 deletions cloudformation/budgets/aws-budgets-budget_historicaloptions.go

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

15 changes: 15 additions & 0 deletions cloudformation/rds/aws-rds-dbcluster.go

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

5 changes: 5 additions & 0 deletions cloudformation/rds/aws-rds-dbinstance.go

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

10 changes: 10 additions & 0 deletions cloudformation/redshift/aws-redshift-endpointaccess.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.

68 changes: 52 additions & 16 deletions schema/cdk.go
Original file line number Diff line number Diff line change
Expand Up @@ -19635,9 +19635,27 @@ var CdkSchema = `{
],
"type": "object"
},
"AWS::Budgets::Budget.AutoAdjustData": {
"additionalProperties": false,
"properties": {
"AutoAdjustType": {
"type": "string"
},
"HistoricalOptions": {
"$ref": "#/definitions/AWS::Budgets::Budget.HistoricalOptions"
}
},
"required": [
"AutoAdjustType"
],
"type": "object"
},
"AWS::Budgets::Budget.BudgetData": {
"additionalProperties": false,
"properties": {
"AutoAdjustData": {
"$ref": "#/definitions/AWS::Budgets::Budget.AutoAdjustData"
},
"BudgetLimit": {
"$ref": "#/definitions/AWS::Budgets::Budget.Spend"
},
Expand Down Expand Up @@ -19708,6 +19726,18 @@ var CdkSchema = `{
},
"type": "object"
},
"AWS::Budgets::Budget.HistoricalOptions": {
"additionalProperties": false,
"properties": {
"BudgetAdjustmentPeriod": {
"type": "number"
}
},
"required": [
"BudgetAdjustmentPeriod"
],
"type": "object"
},
"AWS::Budgets::Budget.Notification": {
"additionalProperties": false,
"properties": {
Expand Down Expand Up @@ -116011,6 +116041,12 @@ var CdkSchema = `{
"DeletionProtection": {
"type": "boolean"
},
"Domain": {
"type": "string"
},
"DomainIAMRoleName": {
"type": "string"
},
"EnableCloudwatchLogsExports": {
"items": {
"type": "string"
Expand Down Expand Up @@ -116053,6 +116089,9 @@ var CdkSchema = `{
"MonitoringRoleArn": {
"type": "string"
},
"NetworkType": {
"type": "string"
},
"PerformanceInsightsEnabled": {
"type": "boolean"
},
Expand Down Expand Up @@ -116431,6 +116470,9 @@ var CdkSchema = `{
"NcharCharacterSetName": {
"type": "string"
},
"NetworkType": {
"type": "string"
},
"OptionGroupName": {
"type": "string"
},
Expand Down Expand Up @@ -118284,11 +118326,20 @@ var CdkSchema = `{
"SubnetGroupName": {
"type": "string"
},
"VpcEndpoint": {
"type": "object"
},
"VpcSecurityGroupIds": {
"items": {
"type": "string"
},
"type": "array"
},
"VpcSecurityGroups": {
"items": {
"$ref": "#/definitions/AWS::Redshift::EndpointAccess.VpcSecurityGroup"
},
"type": "array"
}
},
"required": [
Expand Down Expand Up @@ -119482,7 +119533,7 @@ var CdkSchema = `{
},
"PolygonRegionsOfInterest": {
"items": {
"$ref": "#/definitions/AWS::Rekognition::StreamProcessor.Polygon"
"type": "object"
},
"type": "array"
},
Expand Down Expand Up @@ -119647,21 +119698,6 @@ var CdkSchema = `{
],
"type": "object"
},
"AWS::Rekognition::StreamProcessor.Polygon": {
"additionalProperties": false,
"properties": {
"Polygon": {
"items": {
"$ref": "#/definitions/AWS::Rekognition::StreamProcessor.Point"
},
"type": "array"
}
},
"required": [
"Polygon"
],
"type": "object"
},
"AWS::Rekognition::StreamProcessor.S3Destination": {
"additionalProperties": false,
"properties": {
Expand Down
Loading