How to concatenate constant string with jsonpath
I have AWS step machine and one of the step is used to notify failure using SNS service. I want to select some metadata from input
json into outgoing message. So i am trying to concatenate constant string with jsonpath like below
"Notify Failure": {
"Type": "Task",
"Resource": "arn:aws:states:::sns:publish",
"Parameters": {
"Message.$": "A job submitted through Step Functions failed for document id $.document_id",
"Subject":"Job failed",
"TopicArn": "arn:aws:sns:us-west-2:xxxxxxx:xxxxxxxx"
},
"End": true
}
where document_id
is one of the property in input json
However when i try save state machine defination i get error
There is a problem with your ASL definition, please review it and try
again The value for the field 'Message.$' must be a valid JSONPath
jsonpath aws-step-functions
add a comment |
I have AWS step machine and one of the step is used to notify failure using SNS service. I want to select some metadata from input
json into outgoing message. So i am trying to concatenate constant string with jsonpath like below
"Notify Failure": {
"Type": "Task",
"Resource": "arn:aws:states:::sns:publish",
"Parameters": {
"Message.$": "A job submitted through Step Functions failed for document id $.document_id",
"Subject":"Job failed",
"TopicArn": "arn:aws:sns:us-west-2:xxxxxxx:xxxxxxxx"
},
"End": true
}
where document_id
is one of the property in input json
However when i try save state machine defination i get error
There is a problem with your ASL definition, please review it and try
again The value for the field 'Message.$' must be a valid JSONPath
jsonpath aws-step-functions
add a comment |
I have AWS step machine and one of the step is used to notify failure using SNS service. I want to select some metadata from input
json into outgoing message. So i am trying to concatenate constant string with jsonpath like below
"Notify Failure": {
"Type": "Task",
"Resource": "arn:aws:states:::sns:publish",
"Parameters": {
"Message.$": "A job submitted through Step Functions failed for document id $.document_id",
"Subject":"Job failed",
"TopicArn": "arn:aws:sns:us-west-2:xxxxxxx:xxxxxxxx"
},
"End": true
}
where document_id
is one of the property in input json
However when i try save state machine defination i get error
There is a problem with your ASL definition, please review it and try
again The value for the field 'Message.$' must be a valid JSONPath
jsonpath aws-step-functions
I have AWS step machine and one of the step is used to notify failure using SNS service. I want to select some metadata from input
json into outgoing message. So i am trying to concatenate constant string with jsonpath like below
"Notify Failure": {
"Type": "Task",
"Resource": "arn:aws:states:::sns:publish",
"Parameters": {
"Message.$": "A job submitted through Step Functions failed for document id $.document_id",
"Subject":"Job failed",
"TopicArn": "arn:aws:sns:us-west-2:xxxxxxx:xxxxxxxx"
},
"End": true
}
where document_id
is one of the property in input json
However when i try save state machine defination i get error
There is a problem with your ASL definition, please review it and try
again The value for the field 'Message.$' must be a valid JSONPath
jsonpath aws-step-functions
jsonpath aws-step-functions
asked Jan 18 at 23:31
LP13LP13
4,7571061135
4,7571061135
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
As the message suggest you need to provide a valid JSONPath.
"Message.$": "$.document_id"
You cannot use any string interpolation as it invalidates the JSONPath format. You will need to construct the message in the preceding state.
Even in the preceding state how would you do that if I cannot cancatinate. And creating lambda just for concatenation is too much
– LP13
Jan 19 at 1:40
the state that set $.document_id needs to set full string.
– Athar Khan
Jan 19 at 7:17
also when there is an exception in preceding state, it passes the error toNotify Failure
state, The error would not have$document_id
– LP13
Jan 25 at 22:52
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54262719%2fhow-to-concatenate-constant-string-with-jsonpath%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
As the message suggest you need to provide a valid JSONPath.
"Message.$": "$.document_id"
You cannot use any string interpolation as it invalidates the JSONPath format. You will need to construct the message in the preceding state.
Even in the preceding state how would you do that if I cannot cancatinate. And creating lambda just for concatenation is too much
– LP13
Jan 19 at 1:40
the state that set $.document_id needs to set full string.
– Athar Khan
Jan 19 at 7:17
also when there is an exception in preceding state, it passes the error toNotify Failure
state, The error would not have$document_id
– LP13
Jan 25 at 22:52
add a comment |
As the message suggest you need to provide a valid JSONPath.
"Message.$": "$.document_id"
You cannot use any string interpolation as it invalidates the JSONPath format. You will need to construct the message in the preceding state.
Even in the preceding state how would you do that if I cannot cancatinate. And creating lambda just for concatenation is too much
– LP13
Jan 19 at 1:40
the state that set $.document_id needs to set full string.
– Athar Khan
Jan 19 at 7:17
also when there is an exception in preceding state, it passes the error toNotify Failure
state, The error would not have$document_id
– LP13
Jan 25 at 22:52
add a comment |
As the message suggest you need to provide a valid JSONPath.
"Message.$": "$.document_id"
You cannot use any string interpolation as it invalidates the JSONPath format. You will need to construct the message in the preceding state.
As the message suggest you need to provide a valid JSONPath.
"Message.$": "$.document_id"
You cannot use any string interpolation as it invalidates the JSONPath format. You will need to construct the message in the preceding state.
answered Jan 19 at 0:25
Athar KhanAthar Khan
985411
985411
Even in the preceding state how would you do that if I cannot cancatinate. And creating lambda just for concatenation is too much
– LP13
Jan 19 at 1:40
the state that set $.document_id needs to set full string.
– Athar Khan
Jan 19 at 7:17
also when there is an exception in preceding state, it passes the error toNotify Failure
state, The error would not have$document_id
– LP13
Jan 25 at 22:52
add a comment |
Even in the preceding state how would you do that if I cannot cancatinate. And creating lambda just for concatenation is too much
– LP13
Jan 19 at 1:40
the state that set $.document_id needs to set full string.
– Athar Khan
Jan 19 at 7:17
also when there is an exception in preceding state, it passes the error toNotify Failure
state, The error would not have$document_id
– LP13
Jan 25 at 22:52
Even in the preceding state how would you do that if I cannot cancatinate. And creating lambda just for concatenation is too much
– LP13
Jan 19 at 1:40
Even in the preceding state how would you do that if I cannot cancatinate. And creating lambda just for concatenation is too much
– LP13
Jan 19 at 1:40
the state that set $.document_id needs to set full string.
– Athar Khan
Jan 19 at 7:17
the state that set $.document_id needs to set full string.
– Athar Khan
Jan 19 at 7:17
also when there is an exception in preceding state, it passes the error to
Notify Failure
state, The error would not have $document_id
– LP13
Jan 25 at 22:52
also when there is an exception in preceding state, it passes the error to
Notify Failure
state, The error would not have $document_id
– LP13
Jan 25 at 22:52
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54262719%2fhow-to-concatenate-constant-string-with-jsonpath%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown