Created
January 15, 2020 11:42
-
-
Save billydh/a62a03b89baab90d0d08f471d42972ee to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package io.codebrews.dynamodemo | |
| import org.springframework.boot.context.properties.ConfigurationProperties | |
| import org.springframework.stereotype.Component | |
| @Component | |
| @ConfigurationProperties(prefix = "application.dynamo") | |
| data class DynamoConfigProperties( | |
| var customerTableName: String = "", | |
| var region: String = "", | |
| var endpoint: String = "" | |
| ) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment