Rust cfn-custom-resource
A Rust create to facilate the creation of Rust Lambda Powered Custom Resources
for AWS Cloudformation. It does not cast an opinion on which aws lambda custom
runtime that the function is executing in.
```rust
use cfncustomresource::CustomResourceEvent;
use serde::Deserialize;
[derive(Debug, Deserialize)]
[serde(rename_all = "PascalCase")]
struct MyParameters {
valueone: i64,
valuetwo: i64,
}
async fn myhandlerfunc(event: CustomResourceEvent) {
match event {
CustomResourceEvent::Create(data) => {
println!(
"{}",
data.resourceproperties.valueone + data.resourceproperties.valuetwo
);
data.respondwithsuccess("all done")
.finish()
.await
.unwrap();
}
CustomResourceEvent::Update(data) => {
println!("got an update");
data.respondwithsuccess("all done")
.finish()
.await
.unwrap();
}
CustomResourceEvent::Delete(data) => {
println!("got a delete");
data.respondwithsuccess("all done")
.finish()
.await
.unwrap();
}
}
}
```