Skip to content

Commit

Permalink
fix(schema): CloudFormation Updates (awslabs#568)
Browse files Browse the repository at this point in the history
Co-authored-by: Rúben Fonseca <fonseka@gmail.com>
  • Loading branch information
github-actions[bot] and rubenfonseca committed Mar 9, 2023
1 parent 91b2bf2 commit 2db6261
Show file tree
Hide file tree
Showing 14 changed files with 531 additions and 336 deletions.

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

5 changes: 5 additions & 0 deletions cloudformation/appflow/aws-appflow-flow_triggerconfig.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.

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.

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

117 changes: 63 additions & 54 deletions schema/cdk.go
Original file line number Diff line number Diff line change
Expand Up @@ -8114,6 +8114,9 @@ var CdkSchema = `{
},
"isSandboxEnvironment": {
"type": "boolean"
},
"usePrivateLinkForMetadataAndAuthorization": {
"type": "boolean"
}
},
"type": "object"
Expand Down Expand Up @@ -9214,6 +9217,9 @@ var CdkSchema = `{
"AWS::AppFlow::Flow.TriggerConfig": {
"additionalProperties": false,
"properties": {
"ActivateFlowOnCreate": {
"type": "boolean"
},
"TriggerProperties": {
"$ref": "#/definitions/AWS::AppFlow::Flow.ScheduledTriggerProperties"
},
Expand Down Expand Up @@ -9523,46 +9529,6 @@ var CdkSchema = `{
],
"type": "object"
},
"AWS::AppIntegrations::EventIntegration.EventIntegrationAssociation": {
"additionalProperties": false,
"properties": {
"ClientAssociationMetadata": {
"items": {
"$ref": "#/definitions/AWS::AppIntegrations::EventIntegration.Metadata"
},
"type": "array"
},
"ClientId": {
"type": "string"
},
"EventBridgeRuleName": {
"type": "string"
},
"EventIntegrationAssociationArn": {
"type": "string"
},
"EventIntegrationAssociationId": {
"type": "string"
}
},
"type": "object"
},
"AWS::AppIntegrations::EventIntegration.Metadata": {
"additionalProperties": false,
"properties": {
"Key": {
"type": "string"
},
"Value": {
"type": "string"
}
},
"required": [
"Key",
"Value"
],
"type": "object"
},
"AWS::AppMesh::GatewayRoute": {
"additionalProperties": false,
"properties": {
Expand Down Expand Up @@ -42565,6 +42531,9 @@ var CdkSchema = `{
"ContributorInsightsSpecification": {
"$ref": "#/definitions/AWS::DynamoDB::GlobalTable.ContributorInsightsSpecification"
},
"DeletionProtectionEnabled": {
"type": "boolean"
},
"GlobalSecondaryIndexes": {
"items": {
"$ref": "#/definitions/AWS::DynamoDB::GlobalTable.ReplicaGlobalSecondaryIndexSpecification"
Expand Down Expand Up @@ -109635,18 +109604,7 @@ var CdkSchema = `{
},
"AWS::MediaPackage::OriginEndpoint.EncryptionContractConfiguration": {
"additionalProperties": false,
"properties": {
"PresetSpeke20Audio": {
"type": "string"
},
"PresetSpeke20Video": {
"type": "string"
}
},
"required": [
"PresetSpeke20Audio",
"PresetSpeke20Video"
],
"properties": {},
"type": "object"
},
"AWS::MediaPackage::OriginEndpoint.HlsEncryption": {
Expand Down Expand Up @@ -147312,6 +147270,9 @@ var CdkSchema = `{
"ReplaceProvisioningArtifacts": {
"type": "boolean"
},
"SourceConnection": {
"$ref": "#/definitions/AWS::ServiceCatalog::CloudFormationProduct.SourceConnection"
},
"SupportDescription": {
"type": "string"
},
Expand All @@ -147330,8 +147291,7 @@ var CdkSchema = `{
},
"required": [
"Name",
"Owner",
"ProvisioningArtifactParameters"
"Owner"
],
"type": "object"
},
Expand All @@ -147356,6 +147316,39 @@ var CdkSchema = `{
],
"type": "object"
},
"AWS::ServiceCatalog::CloudFormationProduct.CodeStarParameters": {
"additionalProperties": false,
"properties": {
"ArtifactPath": {
"type": "string"
},
"Branch": {
"type": "string"
},
"ConnectionArn": {
"type": "string"
},
"Repository": {
"type": "string"
}
},
"required": [
"ArtifactPath",
"Branch",
"ConnectionArn",
"Repository"
],
"type": "object"
},
"AWS::ServiceCatalog::CloudFormationProduct.ConnectionParameters": {
"additionalProperties": false,
"properties": {
"CodeStar": {
"$ref": "#/definitions/AWS::ServiceCatalog::CloudFormationProduct.CodeStarParameters"
}
},
"type": "object"
},
"AWS::ServiceCatalog::CloudFormationProduct.ProvisioningArtifactProperties": {
"additionalProperties": false,
"properties": {
Expand All @@ -147377,6 +147370,22 @@ var CdkSchema = `{
],
"type": "object"
},
"AWS::ServiceCatalog::CloudFormationProduct.SourceConnection": {
"additionalProperties": false,
"properties": {
"ConnectionParameters": {
"$ref": "#/definitions/AWS::ServiceCatalog::CloudFormationProduct.ConnectionParameters"
},
"Type": {
"type": "string"
}
},
"required": [
"ConnectionParameters",
"Type"
],
"type": "object"
},
"AWS::ServiceCatalog::CloudFormationProvisionedProduct": {
"additionalProperties": false,
"properties": {
Expand Down
Loading

0 comments on commit 2db6261

Please sign in to comment.