Skip to content

Commit 411e34c

Browse files
committed
.
1 parent e694da8 commit 411e34c

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

.github/workflows/check-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,4 @@ jobs:
3636
env:
3737
RUSTFLAGS: --cfg docsrs
3838
RUSTDOCFLAGS: --cfg docsrs -Dwarnings
39-
run: cargo doc --no-deps --document-private-items --all-features
39+
run: cargo doc --document-private-items --all-features

examples/basic-error-handling/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/// See https://github.com/awslabs/aws-lambda-rust-runtime for more info on Rust runtime for AWS Lambda
1+
/// See <https://github.com/awslabs/aws-lambda-rust-runtime> for more info on Rust runtime for AWS Lambda
22
use lambda_runtime::{service_fn, tracing, Error, LambdaEvent};
33
use serde::{Deserialize, Serialize};
44
use serde_json::json;

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ use serde_json::Value;
1111
/// `CloudWatchAlarm` is the generic outer structure of an event triggered by a CloudWatch Alarm.
1212
/// You probably want to use `CloudWatchMetricAlarm` or `CloudWatchCompositeAlarm` if you know which kind of alarm your function is receiving.
1313
/// For examples of events that come via CloudWatch Alarms,
14-
/// see https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/AlarmThatSendsEmail.html#Lambda-action-payload
14+
/// see <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/AlarmThatSendsEmail.html#Lambda-action-payload>
1515
#[derive(Clone, Debug, Default, Deserialize, Eq, PartialEq, Serialize)]
1616
#[serde(rename_all = "camelCase")]
1717
pub struct CloudWatchAlarm<C = Value, R = CloudWatchAlarmStateReasonData>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use serde_json::Value;
55
/// Parse EventBridge events.
66
/// Deserialize the event detail into a structure that's `DeserializeOwned`.
77
///
8-
/// See https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-events-structure.html for structure details.
8+
/// See <https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-events-structure.html> for structure details.
99
#[derive(Clone, Debug, Default, Deserialize, Eq, PartialEq, Serialize)]
1010
#[serde(bound(deserialize = "T1: DeserializeOwned"))]
1111
#[serde(rename_all = "kebab-case")]

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ use http::HeaderMap;
33
use serde::{Deserialize, Serialize};
44

55
/// `IoTCoreCustomAuthorizerRequest` represents the request to an IoT Core custom authorizer.
6-
/// See https://docs.aws.amazon.com/iot/latest/developerguide/config-custom-auth.html
6+
/// <See https://docs.aws.amazon.com/iot/latest/developerguide/config-custom-auth.html>
77
#[derive(Debug, Clone, Eq, PartialEq, Deserialize, Serialize)]
88
#[serde(rename_all = "camelCase")]
99
pub struct IoTCoreCustomAuthorizerRequest {
@@ -58,7 +58,7 @@ pub struct IoTCoreConnectionMetadata {
5858
}
5959

6060
/// `IoTCoreCustomAuthorizerResponse` represents the response from an IoT Core custom authorizer.
61-
/// See https://docs.aws.amazon.com/iot/latest/developerguide/config-custom-auth.html
61+
/// <See https://docs.aws.amazon.com/iot/latest/developerguide/config-custom-auth.html>
6262
#[derive(Debug, Clone, Eq, PartialEq, Deserialize, Serialize)]
6363
#[serde(rename_all = "camelCase")]
6464
pub struct IoTCoreCustomAuthorizerResponse {

lambda-runtime/src/layers/otel.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ where
131131
}
132132

133133
/// Represent the possible values for the OpenTelemetry `faas.trigger` attribute.
134-
/// See https://opentelemetry.io/docs/specs/semconv/attributes-registry/faas/ for more details.
134+
/// <See https://opentelemetry.io/docs/specs/semconv/attributes-registry/faas/> for more details.
135135
#[derive(Default, Clone, Copy)]
136136
#[non_exhaustive]
137137
pub enum OpenTelemetryFaasTrigger {

0 commit comments

Comments
 (0)