(Customization { arn, name, description }: Customization)
| 17 | |
| 18 | impl From<Customization> for CodewhispererCustomization { |
| 19 | fn from(Customization { arn, name, description }: Customization) -> Self { |
| 20 | CodewhispererCustomization::builder() |
| 21 | .arn(arn) |
| 22 | .set_name(name) |
| 23 | .set_description(description) |
| 24 | .build() |
| 25 | .expect("Failed to build CW Customization") |
| 26 | } |
| 27 | } |
| 28 | |
| 29 | impl From<CodewhispererCustomization> for Customization { |
nothing calls this directly
no test coverage detected