public static ActionThreshold convertActionThresholdFromCfn()

in aws-budgets-budgetsaction/src/main/java/software/amazon/budgets/budgetsaction/Utils.java [55:61]


    public static ActionThreshold convertActionThresholdFromCfn(software.amazon.budgets.budgetsaction.ActionThreshold
                                                                        cfnActionThreshold) {
        return ActionThreshold.builder()
                .actionThresholdType(cfnActionThreshold.getType())
                .actionThresholdValue(cfnActionThreshold.getValue())
                .build();
    }