Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -709,6 +709,7 @@
{"shape":"RequestTooLargeException"},
{"shape":"KMSDisabledException"},
{"shape":"UnsupportedMediaTypeException"},
{"shape":"SerializedRequestEntityTooLargeException"},
{"shape":"InvalidRuntimeException"},
{"shape":"EC2UnexpectedException"},
{"shape":"InvalidSubnetIDException"},
Expand Down Expand Up @@ -772,6 +773,7 @@
{"shape":"RequestTooLargeException"},
{"shape":"KMSDisabledException"},
{"shape":"UnsupportedMediaTypeException"},
{"shape":"SerializedRequestEntityTooLargeException"},
{"shape":"InvalidRuntimeException"},
{"shape":"EC2UnexpectedException"},
{"shape":"InvalidSubnetIDException"},
Expand Down Expand Up @@ -840,7 +842,8 @@
"errors":[
{"shape":"InvalidParameterValueException"},
{"shape":"TooManyRequestsException"},
{"shape":"ServiceException"}
{"shape":"ServiceException"},
{"shape":"ResourceNotFoundException"}
],
"readonly":true
},
Expand Down Expand Up @@ -1597,7 +1600,8 @@
"FunctionUrlAuthType":{
"shape":"FunctionUrlAuthType",
"documentation":"<p>The type of authentication that your function URL uses. Set to <code>AWS_IAM</code> if you want to restrict access to authenticated users only. Set to <code>NONE</code> if you want to bypass IAM authentication to create a public endpoint. For more information, see <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/urls-auth.html\">Security and auth model for Lambda function URLs</a>.</p>"
}
},
"InvokedViaFunctionUrl":{"shape":"InvokedViaFunctionUrl"}
}
},
"AddPermissionResponse":{
Expand Down Expand Up @@ -1831,33 +1835,36 @@
},
"exception":true
},
"ChainedInvokeFailedDetails":{
"ChainedInvokeDetails":{
"type":"structure",
"required":["Error"],
"members":{
"Error":{"shape":"EventError"}
"Result":{"shape":"OperationPayload"},
"Error":{"shape":"ErrorObject"}
}
},
"ChainedInvokeOptions":{
"ChainedInvokeFailedDetails":{
"type":"structure",
"required":["Error"],
"members":{
"FunctionName":{"shape":"FunctionName"}
"Error":{"shape":"EventError"}
}
},
"ChainedInvokePendingDetails":{
"ChainedInvokeOptions":{
"type":"structure",
"required":[
"Input",
"FunctionName"
],
"required":["FunctionName"],
"members":{
"Input":{"shape":"EventInput"},
"FunctionName":{"shape":"FunctionName"}
"FunctionName":{"shape":"FunctionName"},
"TenantId":{"shape":"TenantId"}
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

}
},
"ChainedInvokeStartedDetails":{
"type":"structure",
"required":["FunctionName"],
"members":{
"FunctionName":{"shape":"FunctionName"},
"TenantId":{"shape":"TenantId"},
"Input":{"shape":"EventInput"},
"ExecutedVersion":{"shape":"Version"},
"DurableExecutionArn":{"shape":"DurableExecutionArn"}
}
},
Expand Down Expand Up @@ -1896,7 +1903,10 @@
},
"CheckpointToken":{"shape":"CheckpointToken"},
"Updates":{"shape":"OperationUpdates"},
"ClientToken":{"shape":"ClientToken"}
"ClientToken":{
"shape":"ClientToken",
"idempotencyToken":true
}
}
},
"CheckpointDurableExecutionResponse":{
Expand Down Expand Up @@ -2986,7 +2996,6 @@
"StepStartedDetails":{"shape":"StepStartedDetails"},
"StepSucceededDetails":{"shape":"StepSucceededDetails"},
"StepFailedDetails":{"shape":"StepFailedDetails"},
"ChainedInvokePendingDetails":{"shape":"ChainedInvokePendingDetails"},
"ChainedInvokeStartedDetails":{"shape":"ChainedInvokeStartedDetails"},
"ChainedInvokeSucceededDetails":{"shape":"ChainedInvokeSucceededDetails"},
"ChainedInvokeFailedDetails":{"shape":"ChainedInvokeFailedDetails"},
Expand Down Expand Up @@ -3220,12 +3229,11 @@
"StepStarted",
"StepSucceeded",
"StepFailed",
"ChainedInvokePending",
"ChainedInvokeStarted",
"ChainedInvokeSucceeded",
"ChainedInvokeFailed",
"ChainedInvokeTimedOut",
"ChainedInvokeCancelled",
"ChainedInvokeStopped",
"CallbackStarted",
"CallbackSucceeded",
"CallbackFailed",
Expand Down Expand Up @@ -4660,29 +4668,8 @@
"location":"statusCode"
}
},
"deprecated":true,
"payload":"Body",
"documentation":"<p>A success response (<code>202 Accepted</code>) indicates that the request is queued for invocation.</p>"
},
"InvokeCancelledDetails":{
"type":"structure",
"members":{
"Error":{"shape":"EventError"}
}
},
"ChainedInvokeDetails":{
"type":"structure",
"members":{
"Result":{"shape":"OperationPayload"},
"Error":{"shape":"ErrorObject"}
}
},
"InvokeFailedDetails":{
"type":"structure",
"members":{
"Error":{"shape":"EventError"},
"RetryDetails":{"shape":"RetryDetails"}
}
"documentation":"<p>A success response (<code>202 Accepted</code>) indicates that the request is queued for invocation.</p>",
"deprecated":true
},
"InvokeMode":{
"type":"string",
Expand Down Expand Up @@ -4805,6 +4792,10 @@
"documentation":"<p>An object that includes a chunk of the response payload. When the stream has ended, Lambda includes a <code>InvokeComplete</code> object.</p>",
"eventstream":true
},
"InvokedViaFunctionUrl":{
"type":"boolean",
"box":true
},
"ItemCount":{
"type":"integer",
"max":1000,
Expand Down Expand Up @@ -5887,7 +5878,7 @@
"type":"string",
"max":256,
"min":1,
"pattern":"[a-zA-Z0-9-_]+"
"pattern":"[\\x20-\\x7E]+"
},
"OperationPayload":{
"type":"string",
Expand All @@ -5912,7 +5903,7 @@
"type":"string",
"max":32,
"min":1,
"pattern":"[a-zA-Z-_]+"
"pattern":"[a-zA-Z0-9-_]+"
},
"OperationType":{
"type":"string",
Expand Down Expand Up @@ -6861,6 +6852,18 @@
"type":"string",
"sensitive":true
},
"SerializedRequestEntityTooLargeException":{
"type":"structure",
"members":{
"Type":{"shape":"String"},
"message":{"shape":"String"}
},
"error":{
"httpStatusCode":413,
"senderFault":true
},
"exception":true
},
"ServiceException":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -7214,6 +7217,12 @@
"min":84,
"pattern":".*"
},
"TenantId":{
"type":"string",
"max":256,
"min":1,
"pattern":"[a-zA-Z0-9\\._:\\/=+\\-@ ]+"
},
"ThrottleReason":{
"type":"string",
"enum":[
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -708,6 +708,7 @@
{"shape":"RequestTooLargeException"},
{"shape":"KMSDisabledException"},
{"shape":"UnsupportedMediaTypeException"},
{"shape":"SerializedRequestEntityTooLargeException"},
{"shape":"InvalidRuntimeException"},
{"shape":"EC2UnexpectedException"},
{"shape":"InvalidSubnetIDException"},
Expand Down Expand Up @@ -771,6 +772,7 @@
{"shape":"RequestTooLargeException"},
{"shape":"KMSDisabledException"},
{"shape":"UnsupportedMediaTypeException"},
{"shape":"SerializedRequestEntityTooLargeException"},
{"shape":"InvalidRuntimeException"},
{"shape":"EC2UnexpectedException"},
{"shape":"InvalidSubnetIDException"},
Expand Down Expand Up @@ -839,7 +841,8 @@
"errors":[
{"shape":"InvalidParameterValueException"},
{"shape":"TooManyRequestsException"},
{"shape":"ServiceException"}
{"shape":"ServiceException"},
{"shape":"ResourceNotFoundException"}
],
"readonly":true
},
Expand Down Expand Up @@ -1596,7 +1599,8 @@
"FunctionUrlAuthType":{
"shape":"FunctionUrlAuthType",
"documentation":"<p>The type of authentication that your function URL uses. Set to <code>AWS_IAM</code> if you want to restrict access to authenticated users only. Set to <code>NONE</code> if you want to bypass IAM authentication to create a public endpoint. For more information, see <a href=\"https://docs.aws.amazon.com/lambda/latest/dg/urls-auth.html\">Security and auth model for Lambda function URLs</a>.</p>"
}
},
"InvokedViaFunctionUrl":{"shape":"InvokedViaFunctionUrl"}
}
},
"AddPermissionResponse":{
Expand Down Expand Up @@ -1846,24 +1850,20 @@
},
"ChainedInvokeOptions":{
"type":"structure",
"required":["FunctionName"],
"members":{
"FunctionName":{"shape":"FunctionName"}
}
},
"ChainedInvokePendingDetails":{
"type":"structure",
"required":[
"Input",
"FunctionName"
],
"members":{
"Input":{"shape":"EventInput"},
"FunctionName":{"shape":"FunctionName"}
"FunctionName":{"shape":"FunctionName"},
"TenantId":{"shape":"TenantId"}
}
},
"ChainedInvokeStartedDetails":{
"type":"structure",
"required":["FunctionName"],
"members":{
"FunctionName":{"shape":"FunctionName"},
"TenantId":{"shape":"TenantId"},
"Input":{"shape":"EventInput"},
"ExecutedVersion":{"shape":"Version"},
"DurableExecutionArn":{"shape":"DurableExecutionArn"}
}
},
Expand Down Expand Up @@ -1902,7 +1902,10 @@
},
"CheckpointToken":{"shape":"CheckpointToken"},
"Updates":{"shape":"OperationUpdates"},
"ClientToken":{"shape":"ClientToken"}
"ClientToken":{
"shape":"ClientToken",
"idempotencyToken":true
}
}
},
"CheckpointDurableExecutionResponse":{
Expand Down Expand Up @@ -2992,7 +2995,6 @@
"StepStartedDetails":{"shape":"StepStartedDetails"},
"StepSucceededDetails":{"shape":"StepSucceededDetails"},
"StepFailedDetails":{"shape":"StepFailedDetails"},
"ChainedInvokePendingDetails":{"shape":"ChainedInvokePendingDetails"},
"ChainedInvokeStartedDetails":{"shape":"ChainedInvokeStartedDetails"},
"ChainedInvokeSucceededDetails":{"shape":"ChainedInvokeSucceededDetails"},
"ChainedInvokeFailedDetails":{"shape":"ChainedInvokeFailedDetails"},
Expand Down Expand Up @@ -3226,12 +3228,11 @@
"StepStarted",
"StepSucceeded",
"StepFailed",
"ChainedInvokePending",
"ChainedInvokeStarted",
"ChainedInvokeSucceeded",
"ChainedInvokeFailed",
"ChainedInvokeTimedOut",
"ChainedInvokeCancelled",
"ChainedInvokeStopped",
"CallbackStarted",
"CallbackSucceeded",
"CallbackFailed",
Expand Down Expand Up @@ -4667,21 +4668,7 @@
}
},
"documentation":"<p>A success response (<code>202 Accepted</code>) indicates that the request is queued for invocation.</p>",
"deprecated":true,
"payload":"Body"
},
"InvokeCancelledDetails":{
"type":"structure",
"members":{
"Error":{"shape":"EventError"}
}
},
"InvokeFailedDetails":{
"type":"structure",
"members":{
"Error":{"shape":"EventError"},
"RetryDetails":{"shape":"RetryDetails"}
}
"deprecated":true
},
"InvokeMode":{
"type":"string",
Expand Down Expand Up @@ -4804,6 +4791,10 @@
"documentation":"<p>An object that includes a chunk of the response payload. When the stream has ended, Lambda includes a <code>InvokeComplete</code> object.</p>",
"eventstream":true
},
"InvokedViaFunctionUrl":{
"type":"boolean",
"box":true
},
"ItemCount":{
"type":"integer",
"max":1000,
Expand Down Expand Up @@ -5886,7 +5877,7 @@
"type":"string",
"max":256,
"min":1,
"pattern":"[a-zA-Z0-9-_]+"
"pattern":"[\\x20-\\x7E]+"
},
"OperationPayload":{
"type":"string",
Expand All @@ -5911,7 +5902,7 @@
"type":"string",
"max":32,
"min":1,
"pattern":"[a-zA-Z-_]+"
"pattern":"[a-zA-Z0-9-_]+"
},
"OperationType":{
"type":"string",
Expand Down Expand Up @@ -6860,6 +6851,18 @@
"type":"string",
"sensitive":true
},
"SerializedRequestEntityTooLargeException":{
"type":"structure",
"members":{
"Type":{"shape":"String"},
"message":{"shape":"String"}
},
"error":{
"httpStatusCode":413,
"senderFault":true
},
"exception":true
},
"ServiceException":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -7213,6 +7216,12 @@
"min":84,
"pattern":".*"
},
"TenantId":{
"type":"string",
"max":256,
"min":1,
"pattern":"[a-zA-Z0-9\\._:\\/=+\\-@ ]+"
},
"ThrottleReason":{
"type":"string",
"enum":[
Expand Down
Loading