Dan
Dan
@Shahab96 I did it in this way ``` let result = self .dynamo_db_client .put_item() .table_name(&self.table_name) .item("prop1", AttributeValue::S(request.prop1.to_string())) .condition_expression("attribute_not_exists(prop1)") .send() .await; if result.is_err() { let sdk_error = &result.as_ref().unwrap_err(); if let SdkError::ServiceError...
global::set_text_map_propagator(XrayPropagator::default()); **Cannot compile with opentelemetry = "0.18.0"** It is fine with opentelemetry = "0.17.0"
What really strange is: - I can see the SpanData in CloudWatch but not in X-RAY - Maybe it is stdout::new_pipeline(), but this is what I see from the few...
Do we have an ETA, more or less? Today I stumble upon this problem, and would be great to know a date more or less ``` Signature Version 4 is...
Also, remember to add an example without ``` let identity = Credentials::new( "AKIDEXAMPLE", "wJalrXUtnFEMI/K7MDENG+bPxRfiCYEXAMPLEKEY", None, None, "hardcoded-credentials" ``` maybe we link to https://github.com/awslabs/aws-sdk-rust/discussions/1037
> Hi @ymwjbxxq. Thanks for reporting! TLS is on the roadmap. It's an often a critical component for communicating with third party services from the server side. Is there a...