Add javadoc comment to new member variable

This commit is contained in:
Ryan French 2023-03-22 16:15:37 +00:00
parent 8ee80f9ea4
commit cca20eb2a2

View file

@ -194,6 +194,11 @@ public class LeaseManagementConfig {
private BillingMode billingMode = BillingMode.PAY_PER_REQUEST;
/**
* The list of tags to be applied to the DynamoDB table created for lease management.
*
* <p>Default value: {@link DefaultSdkAutoConstructList}
*/
private Collection<Tag> tags = DefaultSdkAutoConstructList.getInstance();
/**