Skip to content

Commit

Permalink
fix(schema): CloudFormation Updates
Browse files Browse the repository at this point in the history
  • Loading branch information
rubenfonseca committed Jul 16, 2022
1 parent b0ff2dc commit 5d02a2b
Show file tree
Hide file tree
Showing 9 changed files with 272 additions and 0 deletions.
10 changes: 10 additions & 0 deletions cloudformation/evidently/aws-evidently-experiment.go

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

47 changes: 47 additions & 0 deletions cloudformation/evidently/aws-evidently-launch_segmentoverride.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/evidently/aws-evidently-launch_stepconfig.go

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

35 changes: 35 additions & 0 deletions schema/cdk.go
Expand Up @@ -59817,12 +59817,18 @@ var CdkSchema = `{
"RandomizationSalt": {
"type": "string"
},
"RemoveSegment": {
"type": "boolean"
},
"RunningStatus": {
"$ref": "#/definitions/AWS::Evidently::Experiment.RunningStatusObject"
},
"SamplingRate": {
"type": "number"
},
"Segment": {
"type": "string"
},
"Tags": {
"items": {
"$ref": "#/definitions/Tag"
Expand Down Expand Up @@ -60287,6 +60293,29 @@ var CdkSchema = `{
],
"type": "object"
},
"AWS::Evidently::Launch.SegmentOverride": {
"additionalProperties": false,
"properties": {
"EvaluationOrder": {
"type": "number"
},
"Segment": {
"type": "string"
},
"Weights": {
"items": {
"$ref": "#/definitions/AWS::Evidently::Launch.GroupToWeight"
},
"type": "array"
}
},
"required": [
"EvaluationOrder",
"Segment",
"Weights"
],
"type": "object"
},
"AWS::Evidently::Launch.StepConfig": {
"additionalProperties": false,
"properties": {
Expand All @@ -60296,6 +60325,12 @@ var CdkSchema = `{
},
"type": "array"
},
"SegmentOverrides": {
"items": {
"$ref": "#/definitions/AWS::Evidently::Launch.SegmentOverride"
},
"type": "array"
},
"StartTime": {
"type": "string"
}
Expand Down
35 changes: 35 additions & 0 deletions schema/cdk.schema.json
Expand Up @@ -59812,12 +59812,18 @@
"RandomizationSalt": {
"type": "string"
},
"RemoveSegment": {
"type": "boolean"
},
"RunningStatus": {
"$ref": "#/definitions/AWS::Evidently::Experiment.RunningStatusObject"
},
"SamplingRate": {
"type": "number"
},
"Segment": {
"type": "string"
},
"Tags": {
"items": {
"$ref": "#/definitions/Tag"
Expand Down Expand Up @@ -60282,6 +60288,29 @@
],
"type": "object"
},
"AWS::Evidently::Launch.SegmentOverride": {
"additionalProperties": false,
"properties": {
"EvaluationOrder": {
"type": "number"
},
"Segment": {
"type": "string"
},
"Weights": {
"items": {
"$ref": "#/definitions/AWS::Evidently::Launch.GroupToWeight"
},
"type": "array"
}
},
"required": [
"EvaluationOrder",
"Segment",
"Weights"
],
"type": "object"
},
"AWS::Evidently::Launch.StepConfig": {
"additionalProperties": false,
"properties": {
Expand All @@ -60291,6 +60320,12 @@
},
"type": "array"
},
"SegmentOverrides": {
"items": {
"$ref": "#/definitions/AWS::Evidently::Launch.SegmentOverride"
},
"type": "array"
},
"StartTime": {
"type": "string"
}
Expand Down
35 changes: 35 additions & 0 deletions schema/cloudformation.go
Expand Up @@ -59756,12 +59756,18 @@ var CloudformationSchema = `{
"RandomizationSalt": {
"type": "string"
},
"RemoveSegment": {
"type": "boolean"
},
"RunningStatus": {
"$ref": "#/definitions/AWS::Evidently::Experiment.RunningStatusObject"
},
"SamplingRate": {
"type": "number"
},
"Segment": {
"type": "string"
},
"Tags": {
"items": {
"$ref": "#/definitions/Tag"
Expand Down Expand Up @@ -60226,6 +60232,29 @@ var CloudformationSchema = `{
],
"type": "object"
},
"AWS::Evidently::Launch.SegmentOverride": {
"additionalProperties": false,
"properties": {
"EvaluationOrder": {
"type": "number"
},
"Segment": {
"type": "string"
},
"Weights": {
"items": {
"$ref": "#/definitions/AWS::Evidently::Launch.GroupToWeight"
},
"type": "array"
}
},
"required": [
"EvaluationOrder",
"Segment",
"Weights"
],
"type": "object"
},
"AWS::Evidently::Launch.StepConfig": {
"additionalProperties": false,
"properties": {
Expand All @@ -60235,6 +60264,12 @@ var CloudformationSchema = `{
},
"type": "array"
},
"SegmentOverrides": {
"items": {
"$ref": "#/definitions/AWS::Evidently::Launch.SegmentOverride"
},
"type": "array"
},
"StartTime": {
"type": "string"
}
Expand Down
35 changes: 35 additions & 0 deletions schema/cloudformation.schema.json
Expand Up @@ -59751,12 +59751,18 @@
"RandomizationSalt": {
"type": "string"
},
"RemoveSegment": {
"type": "boolean"
},
"RunningStatus": {
"$ref": "#/definitions/AWS::Evidently::Experiment.RunningStatusObject"
},
"SamplingRate": {
"type": "number"
},
"Segment": {
"type": "string"
},
"Tags": {
"items": {
"$ref": "#/definitions/Tag"
Expand Down Expand Up @@ -60221,6 +60227,29 @@
],
"type": "object"
},
"AWS::Evidently::Launch.SegmentOverride": {
"additionalProperties": false,
"properties": {
"EvaluationOrder": {
"type": "number"
},
"Segment": {
"type": "string"
},
"Weights": {
"items": {
"$ref": "#/definitions/AWS::Evidently::Launch.GroupToWeight"
},
"type": "array"
}
},
"required": [
"EvaluationOrder",
"Segment",
"Weights"
],
"type": "object"
},
"AWS::Evidently::Launch.StepConfig": {
"additionalProperties": false,
"properties": {
Expand All @@ -60230,6 +60259,12 @@
},
"type": "array"
},
"SegmentOverrides": {
"items": {
"$ref": "#/definitions/AWS::Evidently::Launch.SegmentOverride"
},
"type": "array"
},
"StartTime": {
"type": "string"
}
Expand Down
35 changes: 35 additions & 0 deletions schema/sam.go
Expand Up @@ -59756,12 +59756,18 @@ var SamSchema = `{
"RandomizationSalt": {
"type": "string"
},
"RemoveSegment": {
"type": "boolean"
},
"RunningStatus": {
"$ref": "#/definitions/AWS::Evidently::Experiment.RunningStatusObject"
},
"SamplingRate": {
"type": "number"
},
"Segment": {
"type": "string"
},
"Tags": {
"items": {
"$ref": "#/definitions/Tag"
Expand Down Expand Up @@ -60226,6 +60232,29 @@ var SamSchema = `{
],
"type": "object"
},
"AWS::Evidently::Launch.SegmentOverride": {
"additionalProperties": false,
"properties": {
"EvaluationOrder": {
"type": "number"
},
"Segment": {
"type": "string"
},
"Weights": {
"items": {
"$ref": "#/definitions/AWS::Evidently::Launch.GroupToWeight"
},
"type": "array"
}
},
"required": [
"EvaluationOrder",
"Segment",
"Weights"
],
"type": "object"
},
"AWS::Evidently::Launch.StepConfig": {
"additionalProperties": false,
"properties": {
Expand All @@ -60235,6 +60264,12 @@ var SamSchema = `{
},
"type": "array"
},
"SegmentOverrides": {
"items": {
"$ref": "#/definitions/AWS::Evidently::Launch.SegmentOverride"
},
"type": "array"
},
"StartTime": {
"type": "string"
}
Expand Down

0 comments on commit 5d02a2b

Please sign in to comment.