Skip to content

Commit dfbe568

Browse files
committed
.
1 parent 521d0e1 commit dfbe568

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

lambda-events/src/event/cloudformation/provider.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
//!
33
//! Note that they are similar (but not the same) as the events in the `super` module.
44
//!
5-
//! See https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.custom_resources-readme.html for details.
5+
//! See <https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.custom_resources-readme.html> for details.
66
77
use serde::{de::DeserializeOwned, Deserialize, Serialize};
88
use serde_json::Value;

lambda-events/src/event/dynamodb/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ impl fmt::Display for KeyType {
110110
}
111111

112112
/// The `Event` stream event handled to Lambda
113-
/// http://docs.aws.amazon.com/lambda/latest/dg/eventsources.html#eventsources-ddb-update
113+
/// <http://docs.aws.amazon.com/lambda/latest/dg/eventsources.html#eventsources-ddb-update>
114114
#[derive(Clone, Debug, Deserialize, PartialEq, Serialize)]
115115
pub struct Event {
116116
#[serde(rename = "Records")]
@@ -215,7 +215,7 @@ pub struct UserIdentity {
215215
#[serde(rename_all = "camelCase")]
216216
pub struct StreamRecord {
217217
/// The approximate date and time when the stream record was created, in UNIX
218-
/// epoch time (http://www.epochconverter.com/) format. Might not be present in
218+
/// epoch time (<http://www.epochconverter.com/>) format. Might not be present in
219219
/// the record: <https://github.com/awslabs/aws-lambda-rust-runtime/issues/889>
220220
#[serde(rename = "ApproximateCreationDateTime")]
221221
#[serde(with = "float_unix_epoch")]

lambda-events/src/event/sqs/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ pub struct SqsApiEvent {
126126
pub messages: Vec<SqsApiMessage>,
127127
}
128128

129-
/// Alternative to SqsApiEvent to be used alongside SqsApiMessageObj<T> when you need to
129+
/// Alternative to SqsApiEvent to be used alongside `SqsApiMessageObj<T>` when you need to
130130
/// deserialize a nested object into a struct of type T within the SQS Message rather
131131
/// than just using the raw SQS Message string
132132
#[serde_with::serde_as]

0 commit comments

Comments
 (0)