Skip to content

Commit

Permalink
fix(schema): CloudFormation Updates (awslabs#510)
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Oct 15, 2022
1 parent d52317a commit 25e2ea4
Show file tree
Hide file tree
Showing 14 changed files with 429 additions and 99 deletions.
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

0 comments on commit 25e2ea4

Please sign in to comment.