We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f62aefc commit 05119e0Copy full SHA for 05119e0
cfn/event.go
@@ -13,7 +13,7 @@ import (
13
14
// Event base structure, it will be internal to the RPDK.
15
type event struct {
16
- AWSAccountID string `json:"awsAccountId" validate:"min=12"`
+ AWSAccountID string `json:"awsAccountId"`
17
BearerToken string `json:"bearerToken" validate:"nonzero"`
18
Region string `json:"region" validate:"nonzero"`
19
Action string `json:"action"`
@@ -22,7 +22,7 @@ type event struct {
22
ResourceTypeVersion encoding.Float `json:"resourceTypeVersion"`
23
RequestContext requestContext `json:"requestContext"`
24
RequestData requestData `json:"requestData"`
25
- StackID string `json:"stackId" validate:"nonzero"`
+ StackID string `json:"stackId"`
26
27
NextToken string
28
}
0 commit comments