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 598b1ac commit 58109fdCopy full SHA for 58109fd
api/function/v1beta1/function_sdk.go
@@ -1040,9 +1040,9 @@ type TriggerSqsClientConfig struct {
1040
}
1041
1042
type UpdateTriggerRequestSqsClientConfig struct {
1043
- AccessKey string `json:"access_key"`
+ AccessKey *string `json:"access_key"`
1044
1045
- SecretKey string `json:"secret_key"`
+ SecretKey *string `json:"secret_key"`
1046
1047
1048
// UploadURL: upload url.
@@ -2452,7 +2452,7 @@ type CreateTriggerRequest struct {
2452
2453
Name string `json:"name"`
2454
2455
- Description string `json:"description"`
+ Description *string `json:"description"`
2456
2457
FunctionID string `json:"function_id"`
2458
0 commit comments